/* London School - Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll suave para toda la página */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 170px; /* Offset para compensar el navbar fijo */
}

body {
    font-family: 'Avenir', sans-serif;
    overflow-x: hidden;
    background-image: url('img/FONDO2.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top left;
}


/* Social Media */
.social-media {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}

.social-icon {
    display: block;
    width: 50px;
    height: 50px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: 15px 0 0 15px;
    margin-bottom: 2px;
}

.social-icon:hover {
    background: #d81b60;
    transform: translateX(-10px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh; /* Era: height */
    background: rgba(38, 56, 96);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 150px; /* Espacio para el navbar */
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: rgba(33, 50, 86);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 100;
    position: fixed; /* Era: relative */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000; /* Era: 100 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}



.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-imagen {
    width: 80px;
    height: 90px;
    object-fit: contain;
}

.logo-text {
    color: white;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

.nav-menu a.active { /* Para resaltar la sección activa */
    color: #e91e63;
    border-bottom-color: #e91e63;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 350px 0 150px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
    padding-bottom: 20px;
}

.hero-text {
    max-width: 800px;
    z-index: 2;
    animation: fadeIn 1s ease-out;
    text-align: left;
    margin-left: 0;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16/9;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    display: block;
    border: none;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-text .red-text {
    color: #e91e63;
}

.hero-text .white-text {
    color: white;
}

.hero-text .checkmarks {
    display: inline-flex;
    gap: 10px;
    margin-left: 20px;
}

.checkmark {
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.hero-subtitle {
    color: #b0c4de;
    font-size: 18px;
    font-weight: 300;
    margin-top: 40px;
    max-width: 600px;
    line-height: 1.6;
    text-align: left;
}

/* Decorative Elements */
.dots-pattern {
    position: absolute;
    right: 80px;
    top: 25%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    opacity: 0.6;
}

.dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.dot:nth-child(even) {
    animation-delay: -1.5s;
}

.dots-pattern-bottom {
    position: absolute;
    bottom: 25px;
    right: 150px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 8px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(45, 55, 72, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .main-content {
        padding: 0 20px;
    }

    .video-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-section{
        padding-top:90px ;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .dots-pattern,
    .dots-pattern-bottom {
        display: none;
    }
    
    .social-media {
        right: 10px; /* Ajuste para móviles */
        gap: 10px; /* Menor espacio */
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    html {
        scroll-padding-top: 90px; /* NUEVO: ajustar offset en móvil */
    }
    
    .logo-imagen {
        width: 60px; /* Aún más pequeño en móvil */
        height: 70px;
    }

}


/* ===== QUIÉNES SOMOS SECTION ===== */
.quienes-somos-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quienes-somos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner superior */
.hero-banner {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Grid de contenido */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Contenido de texto */
.text-content {
    padding-right: 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 40px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
    transition: all 0.3s ease;
}

.description-text:hover {
    color: #333;
    transform: translateX(5px);
}

/* Sección de destaque */
.highlight-section {
    text-align: center;
    position: relative;
}

/* Contenedor de imagen de 49 años */
.years-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.years-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 25px rgba(233, 30, 99, 0.4));
    animation: floatQuienes 6s ease-in-out infinite;
    transition: all 0.4s ease;
    position: relative;
}

/* Efecto de brillo y hover en la imagen */
.years-image:hover {
    filter: drop-shadow(0 6px 35px rgba(233, 30, 99, 0.6)) 
            brightness(1.1);
    transform: scale(1.05) translateY(-5px);
}

/* Efecto de resplandor adicional */
.years-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Imagen de Misión y Visión */
.icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.mission-vision-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Animación de flotación */
@keyframes floatQuienes {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Animación de resplandor pulsante */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-content {
        padding-right: 0;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .description-text {
        font-size: 1rem;
        text-align: left;
    }

    .years-image {
        max-width: 280px;
    }

    .mission-vision-image {
        max-width: 100%;
    }

    .hero-banner {
        margin-bottom: 40px;
    }

    .years-image-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .years-image {
        max-width: 220px;
    }

    .main-title {
        font-size: 2rem;
    }

    .description-text {
        font-size: 0.95rem;
    }
}

/* ===== PERFIL DEL ALUMNO SECTION ===== */
.perfil-alumno-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.perfil-alumno-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid de contenido: 2 columnas */
.perfil-alumno-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Columna izquierda: Imagen + Texto */
.perfil-alumno-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Contenedor de la imagen superior */
.perfil-alumno-top-image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.perfil-alumno-top-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.perfil-alumno-top-image:hover {
    transform: scale(1.05);
}

/* Bloque de texto */
.perfil-alumno-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Títulos en rosa */
.perfil-alumno-title {
    font-size: 2rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

/* Descripción de texto */
.perfil-alumno-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    margin: 0;
    font-weight: 400;
}

/* Contenedor de imagen derecha */
.perfil-alumno-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.perfil-alumno-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perfil-alumno-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .perfil-alumno-section {
        padding: 60px 0;
    }

    .perfil-alumno-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* En móvil: columna izquierda arriba, columna derecha abajo */
    .perfil-alumno-left-column {
        order: 1;
        gap: 30px;
    }

    .perfil-alumno-image-container {
        order: 2;
    }

    .perfil-alumno-title {
        font-size: 1.5rem;
    }

    .perfil-alumno-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .perfil-alumno-image,
    .perfil-alumno-top-image-container {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .perfil-alumno-title {
        font-size: 1.3rem;
        letter-spacing: -0.5px;
    }

    .perfil-alumno-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .perfil-alumno-left-column {
        gap: 25px;
    }
}

/* ===== CERTIFICACIONES SECTION ===== */
.certificaciones-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.certificaciones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid de contenido */
.certificaciones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Columnas */
.certificaciones-left-column,
.certificaciones-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Bloques de contenido */
.certificaciones-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Título principal (CERTIFICACIONES) */
.certificaciones-main-title {
    font-size: 2rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

/* Subtítulos (INGLÉS, FRANCÉS) */
.certificaciones-subtitle {
    font-size: 2rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

/* Texto de descripción */
.certificaciones-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    margin: 0;
    font-weight: 400;
}

.certificaciones-text strong {
    font-weight: 700;
    color: #2d3748;
}

/* Contenedor de imagen */
.certificaciones-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.certificaciones-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificaciones-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .certificaciones-section {
        padding: 60px 0;
    }

    .certificaciones-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* En móvil: orden vertical CERTIFICACIONES → INGLÉS → FRANCÉS → Imagen */
    .certificaciones-left-column {
        order: 1;
        gap: 35px;
    }

    .certificaciones-right-column {
        order: 2;
        gap: 35px;
    }

    .certificaciones-main-title,
    .certificaciones-subtitle {
        font-size: 1.5rem;
    }

    .certificaciones-text {
        font-size: 0.95rem;
        text-align: left;
    }

    .certificaciones-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .certificaciones-main-title,
    .certificaciones-subtitle {
        font-size: 1.3rem;
        letter-spacing: -0.5px;
    }

    .certificaciones-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .certificaciones-left-column,
    .certificaciones-right-column {
        gap: 30px;
    }

    .certificaciones-block {
        gap: 15px;
    }
}

/* Separador visual opcional entre secciones */
.certificaciones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    opacity: 0.3;
}

/* ===== BABY & ME SECTION ===== */
.babyme-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.babyme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.babyme-header {
    margin-bottom: 40px;
}

.babyme-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0 0 15px 0;
}

.babyme-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63;
    line-height: 1.3;
    margin: 0;
}

/* Contenido principal */
.babyme-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.babyme-text {
    display: flex;
    flex-direction: column;
}

.babyme-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    margin: 0;
}

/* Imagen */
.babyme-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.babyme-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.babyme-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Sección de horarios (caja rosa) */
.babyme-schedule-section {
    background: #e91e63;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
}

.babyme-schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Info de horarios */
.babyme-schedule-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.babyme-schedule-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.babyme-schedule-text {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Info de contacto */
.babyme-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.babyme-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.babyme-phone-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    border: 3px solid white;
    border-radius: 10px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.babyme-phone-number:hover {
    background: white;
    color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .babyme-section {
        padding: 60px 0;
    }

    .babyme-title {
        font-size: 2.5rem;
    }

    .babyme-subtitle {
        font-size: 1.2rem;
    }

    /* Contenido en móvil: texto arriba, imagen abajo */
    .babyme-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .babyme-text {
        order: 1;
    }

    .babyme-image-container {
        order: 2;
    }

    .babyme-description {
        text-align: left;
        font-size: 0.95rem;
    }

    /* Caja rosa en móvil */
    .babyme-schedule-section {
        padding: 30px 25px;
        border-radius: 15px;
        order: 3;
    }

    .babyme-schedule-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .babyme-schedule-title {
        font-size: 1.5rem;
    }

    .babyme-schedule-text {
        font-size: 0.95rem;
    }

    .babyme-contact-title {
        font-size: 1.1rem;
    }

    .babyme-phone-number {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .babyme-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .babyme-subtitle {
        font-size: 1rem;
    }

    .babyme-description {
        font-size: 0.9rem;
    }

    .babyme-schedule-section {
        padding: 25px 20px;
    }

    .babyme-schedule-title {
        font-size: 1.3rem;
    }

    .babyme-phone-number {
        font-size: 1rem;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
}

/* ===== BABIES ROOM SECTION ===== */
.babyroom-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.babyroom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contenedor principal */
.babyroom-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Contenido izquierdo */
.babyroom-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.babyroom-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
}

.babyroom-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 0;
}

.babyroom-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    margin: 0;
}

/* Imagen derecha */
.babyroom-image-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.babyroom-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.babyroom-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Sección de horarios (caja azul oscuro) */
.babyroom-schedule-section {
    background: #2c3e50;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
}

.babyroom-schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Info de horarios */
.babyroom-schedule-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.babyroom-schedule-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.babyroom-schedule-text {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.babyroom-schedule-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
    margin: 5px 0 0 0;
    font-style: italic;
}

/* Info de contacto */
.babyroom-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.babyroom-contact-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.babyroom-phone-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    border: 3px solid white;
    border-radius: 10px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.babyroom-phone-number:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .babyroom-section {
        padding: 60px 0;
    }

    .babyroom-title {
        font-size: 2.5rem;
    }

    .babyroom-subtitle {
        font-size: 1.2rem;
    }

    /* En móvil: texto arriba, imagen medio, caja abajo */
    .babyroom-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .babyroom-content-left {
        order: 1;
    }

    .babyroom-image-right {
        order: 2;
    }

    .babyroom-description {
        text-align: left;
        font-size: 0.95rem;
    }

    /* Caja azul en móvil */
    .babyroom-schedule-section {
        padding: 30px 25px;
        border-radius: 15px;
        order: 3;
    }

    .babyroom-schedule-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .babyroom-schedule-title {
        font-size: 1.5rem;
    }

    .babyroom-schedule-text {
        font-size: 0.95rem;
    }

    .babyroom-schedule-note {
        font-size: 0.9rem;
    }

    .babyroom-contact-title {
        font-size: 1.2rem;
    }

    .babyroom-phone-number {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .babyroom-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .babyroom-subtitle {
        font-size: 1rem;
    }

    .babyroom-description {
        font-size: 0.9rem;
    }

    .babyroom-schedule-section {
        padding: 25px 20px;
    }

    .babyroom-schedule-title {
        font-size: 1.3rem;
    }

    .babyroom-phone-number {
        font-size: 1rem;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
}

/* ===== PRESCHOOL SECTION ===== */
.preschool-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.preschool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.preschool-header {
    margin-bottom: 30px;
}

.preschool-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0 0 20px 0;
}

/* Caja rosa del subtítulo */
.preschool-subtitle-box {
    background: #e91e63;
    border-radius: 15px;
    padding: 20px 30px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.preschool-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

/* Imagen hero grande */
.preschool-hero-image-container {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.preschool-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Contenedor de contenido principal */
.preschool-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
}

/* Texto izquierda */
.preschool-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preschool-intro-text,
.preschool-education-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    margin: 0;
}

.preschool-school-name {
    font-weight: 700;
    color: #2d3748;
}

/* Círculo de Programas (superpuesto) */
.preschool-programs-circle {
    position: absolute;
    left: 60%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: #2c3e50;
    opacity: 0.95;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.4);
    z-index: 10;
}

.preschool-programs-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    text-align: center;
}

.preschool-programs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.preschool-programs-list li {
    font-size: 0.95rem;
    padding-left: 15px;
    color: white;
    line-height: 1.8;
    margin-bottom: 5px;
}

/* Imagen derecha */
.preschool-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preschool-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preschool-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Sección de Formación y Actividades (caja azul) */
.preschool-activities-section {
    background: #2c3e50;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
}

.preschool-activities-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preschool-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.preschool-activities-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preschool-activity-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.6;
}

.preschool-activity-item-small {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.6;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .preschool-section {
        padding: 60px 0;
    }

    .preschool-title {
        font-size: 2.5rem;
    }

    .preschool-subtitle-box {
        padding: 15px 20px;
    }

    .preschool-subtitle {
        font-size: 1.1rem;
    }

    .preschool-hero-image-container {
        margin-bottom: 40px;
    }

    /* En móvil: columna única */
    .preschool-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    /* Orden móvil: texto, círculo, imagen */
    .preschool-text-content {
        order: 1;
    }

    .preschool-programs-circle {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        order: 2;
        margin: 0 auto;
        width: 260px;
        height: 260px;
    }

    .preschool-programs-list li {
        font-size: 0.9rem;
    }

    .preschool-image-content {
        order: 3;
    }

    .preschool-intro-text,
    .preschool-education-text {
        text-align: left;
        font-size: 0.95rem;
    }

    /* Caja de actividades en móvil */
    .preschool-activities-section {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .preschool-activities-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .preschool-activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .preschool-activity-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .preschool-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .preschool-subtitle {
        font-size: 1rem;
    }

    .preschool-programs-circle {
        width: 240px;
        height: 240px;
        padding: 25px;
    }

    .preschool-programs-title {
        font-size: 1.3rem;
    }

    .preschool-programs-list li {
        font-size: 0.8rem;
    }

    .preschool-activities-title {
        font-size: 1.3rem;
    }

    .preschool-activity-item {
        font-size: 0.95rem;
    }
}

/* ===== LONDON GYM SECTION ===== */

.london-gym-section {
    width: 100%;
    padding: 60px 0;
}

.container-london-gym {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.gym-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.gym-header-text {
    flex: 1;
    max-width: 600px;
}

.gym-title {
    color: #e91e63;
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.gym-description {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.gym-header-image {
    flex: 0 0 auto;
    max-width: 400px;
}

.gym-child-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Large Facilities Image */
.gym-facilities-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.gym-facilities-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Two Column Section */
.gym-info-columns {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.gym-column {
    flex: 1;
}

.gym-column-title {
    color: #e91e63;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.gym-subtitle {
    color: #e91e63;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.gym-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gym-list li {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
}

.gym-list li::before {
    content: "•";
    color: #e91e63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .gym-header {
        flex-direction: column;
        text-align: center;
    }

    .gym-header-text {
        max-width: 100%;
    }

    .gym-header-image {
        max-width: 350px;
    }

    .gym-info-columns {
        gap: 40px;
    }

    .gym-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .london-gym-section {
        padding: 40px 0;
    }

    .gym-title {
        font-size: 36px;
    }

    .gym-description {
        font-size: 15px;
    }

    .gym-info-columns {
        flex-direction: column;
        gap: 40px;
    }

    .gym-column-title {
        font-size: 22px;
    }

    .gym-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container-london-gym {
        padding: 0 15px;
    }

    .gym-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .gym-description {
        font-size: 14px;
    }

    .gym-column-title {
        font-size: 20px;
    }

    .gym-list li {
        font-size: 14px;
    }
}

/* ===== PRIMARIA SECTION ===== */

.primaria-section {
    width: 100%;
    padding: 60px 0;
}

.container-primaria {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.primaria-header {
    margin-bottom: 30px;
}

.primaria-title {
    color: #2c3e50;
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
}

.primaria-subtitle {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Main Image Section */
.primaria-main-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.primaria-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Three Column Content Section */
.primaria-content-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.primaria-column {
    flex: 1;
}

.primaria-left-column {
    flex: 1;
}

.primaria-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.primaria-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 15px 0;
    text-align: justify;
}

.primaria-section-title {
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px 0;
}

.primaria-program-box {
    margin-bottom: 0;
}

.primaria-program-box .primaria-section-title {
    margin-top: 0;
}

.primaria-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.primaria-list li {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.primaria-list li::before {
    content: "•";
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Activities Banner */
.primaria-activities-banner {
    background-color: #2c3e50;
    border-radius: 20px;
    padding: 40px 50px;
    color: white;
}

.primaria-banner-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.primaria-activities-grid {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.primaria-activity-column {
    flex: 1;
}

.primaria-activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primaria-activities-list li {
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.primaria-activities-list li::before {
    content: "•";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .primaria-content-columns {
        flex-direction: column;
        gap: 30px;
    }

    .primaria-activities-grid {
        gap: 30px;
    }

    .primaria-title {
        font-size: 40px;
    }

    .primaria-subtitle {
        font-size: 18px;
    }

    .primaria-activities-banner {
        padding: 35px 40px;
    }
}

@media (max-width: 768px) {
    .primaria-section {
        padding: 40px 0;
    }

    .primaria-title {
        font-size: 36px;
    }

    .primaria-subtitle {
        font-size: 16px;
    }

    .primaria-activities-grid {
        flex-direction: column;
        gap: 20px;
    }

    .primaria-activities-banner {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .primaria-banner-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .primaria-activities-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container-primaria {
        padding: 0 15px;
    }

    .primaria-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .primaria-subtitle {
        font-size: 15px;
    }

    .primaria-text {
        font-size: 14px;
    }

    .primaria-section-title {
        font-size: 16px;
    }

    .primaria-list li,
    .primaria-activities-list li {
        font-size: 14px;
    }

    .primaria-activities-banner {
        padding: 25px 20px;
    }
}

/* ===== EXTRACURRICULARES SECTION ===== */

.extracurriculares-section {
    width: 100%;
    padding: 60px 0;
}

.container-extracurriculares {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Three Column Content Section */
.extracurriculares-content-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    justify-content: space-between;
}

.extracurriculares-column {
    flex: 1;
}

/* Main Titles (EXTRACURRICULARES and INSTALACIONES) */
.extracurriculares-main-title {
    color: #e91e63;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

/* Subtitles (London Sports and Actividades creativas) */
.extracurriculares-subtitle {
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

/* Lists */
.extracurriculares-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extracurriculares-list li {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.extracurriculares-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Large Image Section */
.extracurriculares-main-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.extracurriculares-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .extracurriculares-content-columns {
        flex-wrap: wrap;
        gap: 40px;
    }

    .extracurriculares-column {
        flex: 1 1 45%;
        min-width: 280px;
    }

    .extracurriculares-main-title {
        font-size: 22px;
    }

    .extracurriculares-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .extracurriculares-section {
        padding: 40px 0;
    }

    .extracurriculares-content-columns {
        flex-direction: column;
        gap: 35px;
    }

    .extracurriculares-column {
        flex: 1 1 100%;
    }

    .extracurriculares-main-title {
        font-size: 20px;
    }

    .extracurriculares-subtitle {
        font-size: 16px;
    }

    .extracurriculares-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container-extracurriculares {
        padding: 0 15px;
    }

    .extracurriculares-main-title {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .extracurriculares-subtitle {
        font-size: 15px;
    }

    .extracurriculares-list li {
        font-size: 13px;
        line-height: 1.8;
    }

    .extracurriculares-content-columns {
        gap: 30px;
    }
}

/* ===== SECUNDARIA SECTION ===== */

.secundaria-section {
    width: 100%;
    padding: 60px 0;
}

.secundaria-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.secundaria-header {
    margin-bottom: 30px;
}

.secundaria-title {
    color: #e91e63;
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
}

.secundaria-subtitle {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Image Section */
.secundaria-image-section {
    width: 100%;
    margin-bottom: 40px;
}

.secundaria-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.secundaria-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Section - Two Columns */
.secundaria-content {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.secundaria-left-column,
.secundaria-right-column {
    flex: 1;
}

.secundaria-intro-text,
.secundaria-program-text,
.secundaria-programs-intro {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    text-align: justify;
}

.secundaria-section-title,
.secundaria-programs-title {
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 15px 0;
}

.secundaria-programs-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.secundaria-programs-list li {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.secundaria-programs-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Formación y Actividades Banner */
.secundaria-formacion-banner {
    background-color: #e91e63;
    border-radius: 20px;
    padding: 40px 50px;
    color: white;
    margin-top: 50px;
}

.secundaria-banner-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.secundaria-materias-grid {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.secundaria-materias-column {
    flex: 1;
}

.secundaria-materias-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secundaria-materias-list li {
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.secundaria-materias-list li::before {
    content: "•";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .secundaria-content {
        flex-direction: column;
        gap: 30px;
    }

    .secundaria-materias-grid {
        gap: 40px;
    }

    .secundaria-title {
        font-size: 40px;
    }

    .secundaria-subtitle {
        font-size: 18px;
    }

    .secundaria-formacion-banner {
        padding: 35px 40px;
    }
}

@media (max-width: 768px) {
    .secundaria-section {
        padding: 40px 0;
    }

    .secundaria-title {
        font-size: 36px;
    }

    .secundaria-subtitle {
        font-size: 16px;
    }

    .secundaria-materias-grid {
        flex-direction: column;
        gap: 20px;
    }

    .secundaria-formacion-banner {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .secundaria-banner-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .secundaria-materias-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .secundaria-container {
        padding: 0 15px;
    }

    .secundaria-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .secundaria-subtitle {
        font-size: 15px;
    }

    .secundaria-intro-text,
    .secundaria-program-text,
    .secundaria-programs-intro {
        font-size: 14px;
    }

    .secundaria-section-title,
    .secundaria-programs-title {
        font-size: 16px;
    }

    .secundaria-programs-list li,
    .secundaria-materias-list li {
        font-size: 14px;
    }

    .secundaria-formacion-banner {
        padding: 25px 20px;
    }
}

/* ===== SECUNDARIA EXTRACURRICULARES SECTION ===== */

.secundaria-extra-section {
    width: 100%;
    padding: 60px 0;
}

.secundaria-extra-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Two Images */
.secundaria-extra-top-images {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.secundaria-extra-image-box {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.secundaria-extra-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Two Column Content Section */
.secundaria-extra-content-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.secundaria-extra-column {
    flex: 1;
}

/* Main Titles (EXTRACURRICULARES and INSTALACIONES) */
.secundaria-extra-main-title {
    color: #e91e63;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
}

/* Subtitles (London Sports, Actividades creativas, Idioma) */
.secundaria-extra-subtitle {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 15px 0;
}

.secundaria-extra-column .secundaria-extra-subtitle:first-of-type {
    margin-top: 0;
}

/* Lists */
.secundaria-extra-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.secundaria-extra-list li {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.secundaria-extra-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Bottom Large Image (inside right column) */
.secundaria-extra-bottom-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.secundaria-extra-img-large {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .secundaria-extra-top-images {
        gap: 15px;
    }

    .secundaria-extra-content-columns {
        gap: 40px;
    }

    .secundaria-extra-main-title {
        font-size: 22px;
    }

    .secundaria-extra-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .secundaria-extra-section {
        padding: 40px 0;
    }

    .secundaria-extra-top-images {
        flex-direction: column;
        gap: 20px;
    }

    .secundaria-extra-content-columns {
        flex-direction: column;
        gap: 35px;
    }

    .secundaria-extra-main-title {
        font-size: 20px;
    }

    .secundaria-extra-subtitle {
        font-size: 16px;
        margin-top: 20px;
    }

    .secundaria-extra-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .secundaria-extra-container {
        padding: 0 15px;
    }

    .secundaria-extra-main-title {
        font-size: 18px;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }

    .secundaria-extra-subtitle {
        font-size: 15px;
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .secundaria-extra-list li {
        font-size: 13px;
        line-height: 1.8;
    }

    .secundaria-extra-list {
        margin-bottom: 15px;
    }
}


/* CSS específico para el footer de contacto */
.footer-contacto {
    background: linear-gradient(135deg, #1e4a5d, #2c5f73);
    color: white;
    padding: 50px 20px 30px;
    font-family: 'Avenir', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 74, 93, 0.9);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.logos-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-london {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-imagen {
    width: 120px !important;
    height: 130px !important;
    max-width: 160px !important;
    max-height: 170px !important;
    margin-bottom: 8px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}

.texto-london {
    color: white;
    font-size: 14px;
    line-height: 1.2;
}

.texto-london .nombre {
    font-weight: bold;
    font-size: 16px;
}

.texto-london .establecido {
    font-size: 12px;
    opacity: 0.9;
}

.logo-green {
    background: #2d5a3d;
    color: #7bc142;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    position: relative;
}

.logo-green::before {
    content: "🌱";
    margin-right: 8px;
}

.contacto-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.contacto-header {
    text-align: center;
}

.contacto-titulo {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacto-subtitulo {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.whatsapp-btn {
    background: white;
    color: #2c5f73;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.campus-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.campus-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.campus-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.campus-titulo {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campus-direccion {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.nivel-info {
    margin-bottom: 15px;
}

.nivel-nombre {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.nivel-telefono {
    font-size: 16px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-contacto {
        padding: 30px 15px 20px;
    }

    .header-footer {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .logos-container {
        justify-content: center;
        margin-bottom: 20px;
    }

    .contacto-titulo {
        font-size: 28px;
    }

    .campus-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .campus-card {
        padding: 25px 20px;
    }

    .campus-titulo {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-contacto {
        padding: 25px 10px 15px;
    }

    .contacto-titulo {
        font-size: 24px;
    }

    .contacto-subtitulo {
        font-size: 14px;
    }

    .whatsapp-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .campus-card {
        padding: 20px 15px;
    }

    .logos-container {
        gap: 15px;
    }

    .logo-green {
        font-size: 16px;
        padding: 10px 16px;
    }
}