#padres {
  text-align: center;
  background-color: #f8f9fa;
}

#padres section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* DECORACIÓN FONDO FLOTANTE */
.decoracion-bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.servicios-bkg {
    position: absolute;
    opacity: 0.4;
    width: 40%;
    filter: blur(2px);
}

#servicios-bkg-01 { top: 10%; left: -10%; }
#servicios-bkg-02 { bottom: 10%; right: -10%; transform: rotate(180deg); }

.animar-flotar { animation: flotar 15s ease-in-out infinite; }
.animar-flotar-lento { animation: flotar 25s ease-in-out infinite reverse; }

@keyframes flotar {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 40px) rotate(5deg); }
}

/* TITULAR PREMIUM */
.titular-premium {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Paytone One', sans-serif;
    color: #2d3436;
    margin-bottom: 30px;
    line-height: 1.1;
    z-index: 2;
    position: relative;
}

.padres-color { color: var(--amarillo) !important; }

.sub-premium {
    display: block;
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ETAPAS VITALES */
#etapas-vitales {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    flex-wrap: wrap;
}

.etapa {
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.etapa .numero {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--amarillo);
    opacity: 0.3;
}

.etapa p {
    font-weight: 700;
    color: #444;
    margin: 0;
}

/* CURSO UNICO DISEÑO */
.padres-main-card {
    background: #fff;
    border-radius: 40px;
    padding: 80px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    z-index: 1;
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.introduccion-texto {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
    max-width: 850px !important;
    width: 100% !important;
    margin: 40px auto !important; /* Centrado físico */
    text-align: center !important;
    display: block !important;
}

.boton-programa-padres {
    background: var(--amarillo) !important;
    border: none !important;
    padding: 20px 50px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 25px rgba(225, 164, 51, 0.3) !important;
}

/* GRILLA MODERNA */
.grilla-moderna {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.item-caracteristica {
    background: #fff;
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    text-align: left;
}

.item-caracteristica span {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
}

.item-caracteristica b { color: var(--amarillo); }

.item-caracteristica.b-hijo {
    background: #fdfbf7;
    border-left: 4px solid var(--amarillo);
}

/* VIDEO PREMIUM */
#video-premium {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contenedor-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contenedor-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVO */
@media screen and (max-width: 850px) {
    .padres-main-card {
        padding: 40px 20px !important;
    }
    #video-premium {
        grid-template-columns: 1fr;
    }
}
