

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    overflow: hidden;
    margin-top: -60px; /* Ajusta según la altura de tu navbar */
    padding-top: 60px; /* Compensa el margen negativo */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/imagenes/0001.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1; /* Para que esté detrás del título */
}

.hero-title {
    position: relative;
    color: white;
    text-align: center;
    padding-top: 20vh;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card.playground {
            --accent-color: #3b82f6;
            --accent-light: #60a5fa;
        }

        .service-card.music {
            --accent-color: #10b981;
            --accent-light: #34d399;
        }

        .service-card.arts {
            --accent-color: #f59e0b;
            --accent-light: #fbbf24;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            letter-spacing: -0.025em;
        }

        .service-description {
            color: #64748b;
            line-height: 1.6;
            font-size: 16px;
            max-width: 280px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }
            
            .service-icon svg {
                width: 35px;
                height: 35px;
            }
            
            .service-title {
                font-size: 22px;
            }
            
            .service-description {
                font-size: 15px;
            }
        }

        /* Animación sutil */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.2s;
        }




        /*seccion abaut*/

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .about-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Lado izquierdo - Imágenes */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 500px;
  margin: 0
}

.main-image {
  grid-column: 1 / -1;
  grid-row: 1 / 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Elimina el fondo gradient (ya no es necesario) */
  position: relative;
}

/* Estilos para la imagen dentro de .main-image */
.main-image .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cubre todo el espacio sin deformar */
  object-position: center; /* Enfoca el centro */
  display: block; /* Elimina espacios no deseados */
}



        /* Lado derecho - Contenido */
        .about-content {
            padding-left: 20px;
        }

        .section-label {
            color: #22d3ee;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            position: relative;
        }

        .section-label::after {
            content: '';
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 3px;
            background: #22d3ee;
            border-radius: 2px;
        }

        .about-title {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            line-height: 1.2;
            letter-spacing: -0.025em;
        }

        .about-description {
            color: #64748b;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #64748b;
            font-size: 16px;
        }

        .features-list li::before {
            content: '✓';
            color: #22d3ee;
            font-weight: bold;
            font-size: 18px;
            margin-right: 15px;
            width: 24px;
            height: 24px;
            background: rgba(34, 211, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .learn-more-btn {
            background: linear-gradient(135deg, #22d3ee, #0891b2);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .learn-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(34, 211, 238, 0.4);
        }

        .learn-more-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-images {
                order: 2;
                height: 400px;
                margin: 0 auto;
                max-width: 500px;
            }
            
            .about-content {
                order: 1;
                padding-left: 0;
                text-align: center;
            }
            
            .about-title {
                font-size: 36px;
            }
            
            .section-label::after {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .about-section {
                padding: 60px 15px;
            }
            
            .about-images {
                height: 300px;
            }
            
            .small-image {
                width: 140px;
                height: 100px;
                bottom: -20px;
                right: -20px;
            }
            
            .about-title {
                font-size: 28px;
            }
            
            .about-description,
            .features-list li {
                font-size: 15px;
            }
            
            .learn-more-btn {
                padding: 12px 30px;
                font-size: 15px;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-content > * {
            animation: fadeInUp 0.6s ease forwards;
        }

        .about-content > *:nth-child(2) { animation-delay: 0.1s; }
        .about-content > *:nth-child(3) { animation-delay: 0.2s; }
        .about-content > *:nth-child(4) { animation-delay: 0.3s; }
        .about-content > *:nth-child(5) { animation-delay: 0.4s; }

        .about-images {
            animation: fadeInUp 0.8s ease forwards;
        }

 /* Header */
        .section-header {
            margin-bottom: 60px;
        }

        .section-label {
            color: #22d3ee;
            font-size: 24px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background: #22d3ee;
        }

        .section-label::before {
            left: -50px;
        }

        .section-label::after {
            right: -50px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e293b;
            letter-spacing: -0.025em;
            margin-top: 20px;
        }

        /* Teachers Grid */
        .teachers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            justify-items: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .teacher-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 320px;
        }

        .teacher-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.02), rgba(8, 145, 178, 0.02));
            z-index: 0;
        }

     

        .teacher-card > * {
            position: relative;
            z-index: 1;
        }

        /* Teacher Image */
        .teacher-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 5px solid #f1f5f9;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }


        .teacher-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }


        /* Placeholder for images */
        .teacher-image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            font-weight: bold;
        }

        .teacher-image-placeholder.female {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .teacher-image-placeholder.male {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        /* Teacher Info */
        .teacher-name {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
            letter-spacing: -0.025em;
        }

        .teacher-title {
            color: #64748b;
            font-size: 16px;
            font-style: italic;
            margin-bottom: 20px;
        }

        /* Teacher Description */
        .teacher-description {
            color: #64748b;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .teacher-card .teacher-description {
            opacity: 1;
            max-height: 100px;
        }

 

        /* Responsive Design */
        @media (max-width: 768px) {
            .teachers-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 36px;
            }

            .section-label::before,
            .section-label::after {
                width: 30px;
            }

            .section-label::before {
                left: -40px;
            }

            .section-label::after {
                right: -40px;
            }

            .teachers-grid {
                gap: 30px;
                grid-template-columns: 1fr;
            }

            .teacher-card {
                padding: 30px 25px;
            }

            .teacher-image {
                width: 150px;
                height: 150px;
            }

            .teacher-name {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .section-label::before,
            .section-label::after {
                display: none;
            }

            .section-title {
                font-size: 28px;
            }

            .teacher-image {
                width: 120px;
                height: 120px;
            }

            .teacher-name {
                font-size: 20px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(30px);
            }
        }

        .section-header {
            animation: fadeInUp 0.6s ease forwards;
        }

        .teacher-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .teacher-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .teacher-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .teacher-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .teacher-card:nth-child(4) {
            animation-delay: 0.4s;
        }



/*PARA EL MAPA DE GOOGLE*/
        
     .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 30px 0;
            background-color: #2c3e50;
            color: white;
            border-radius: 8px 8px 0 0;
            margin-bottom: 30px;
        }

        h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

  
        .map-container {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%; /* Relación de aspecto 16:9 */
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: #eaeaea;
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

       

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .location-info {
                padding: 15px;
            }
        }

       

         /* ========== inicio delp foooter ========== */
/* ========== VARIABLES CSS (Fácil personalización) ========== */
        :root {
            --primary-bg: #1e3a5f;        /* Color de fondo principal */
            --accent-color: #22d3ee;      /* Color de acentos (azul claro) */
            --text-light: #ffffff;        /* Texto blanco */
            --text-muted: #94a3b8;        /* Texto gris claro */
            --border-color: #334155;      /* Color de bordes */
            --hover-color: #38bdf8;       /* Color al pasar mouse */
        }

        /* ========== CONTENEDOR PRINCIPAL DEL FOOTER ========== */
        .footer {
            background: linear-gradient(135deg, var(--primary-bg) 0%, #0f172a 100%);
            color: var(--text-light);
            padding: 60px 20px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Efecto de fondo decorativo */
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        /* ========== CONTENEDOR PRINCIPAL DEL CONTENIDO ========== */
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ========== GRID LAYOUT DEL FOOTER ========== */
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr; /* Columna 1 más ancha, las otras iguales */
            gap: 50px;
            margin-bottom: 40px;
        }

        /* ========== SECCIÓN BRAND (Logo y descripción) ========== */
        .footer-brand {
            max-width: 400px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-light);
        }

        .brand-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 24px;
        }

        .brand-description {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* ========== REDES SOCIALES ========== */
        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-link:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
        }

        /* ========== SECCIONES DE CONTACTO Y ENLACES ========== */
        .footer-section h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 25px;
            position: relative;
        }

        /* ========== INFORMACIÓN DE CONTACTO ========== */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            margin-top: 2px;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .contact-info h4 {
            color: var(--text-light);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-info p {
            font-size: 14px;
            line-height: 1.5;
        }

        /* ========== ENLACES RÁPIDOS ========== */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a::before {
            content: '›';
            margin-right: 8px;
            color: var(--accent-color);
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--text-light);
            padding-left: 5px;
        }

        .footer-links a:hover::before {
            transform: translateX(3px);
        }

        /* ========== LÍNEA DIVISORIA ========== */
        .footer-divider {
            height: 1px;
            background: var(--border-color);
            margin: 40px 0 20px;
        }

        /* ========== PIE DE PÁGINA (Copyright) ========== */
        .footer-bottom {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--hover-color);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
                gap: 40px;
            }
            
            .footer-brand {
                grid-column: 1 / -1; /* Toma todo el ancho */
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .footer {
                padding: 40px 15px 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr; /* 1 columna en móviles */
                gap: 30px;
                text-align: center;
            }
            
            .brand-logo {
                justify-content: center;
                font-size: 28px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-item {
                justify-content: center;
                text-align: left;
            }
        }

        /* ========== ANIMACIONES ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-section {
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-section:nth-child(2) { animation-delay: 0.1s; }
        .footer-section:nth-child(3) { animation-delay: 0.2s; }



