.hero-slider{
      position:relative;
}

.mySwiper{
    width:100%;
}

.hero-slider,
.mySwiper{
    height: 100vh;
}

.swiper-slide picture{
    display:block;
    width:100%;
    height:100%;
}

.swiper-slide picture img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.swiper-button-next,
.swiper-button-prev{
    color:white;
}

.swiper-pagination-bullet{
    background:white;
}

.swiper-button-next,
.swiper-button-prev{
    color: white;
    width: 60px;
    height: 60px;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 24px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: #0086D9;
    transform: scale(1.1);
}

.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.5);
}

.swiper-pagination-bullet-active{
    width: 35px;
    background: #0086D9;
}

.bienvenida{
    margin:0 auto; 
    max-width:1200px;
    padding: 90px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
}

.bienvenida-container{
   grid-row-start: 2;
}

.bienvenida-container_Titulo{
     text-align: center;
}

.bienvenida-subtitulo{
    color: #0086D9;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    grid-column: span 2 / span 2;
    text-align:center;
}

.bienvenida-titulo{
    font-size: clamp(2rem,4vw,3.2rem);
    color: #12355b;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align:center;
}

.bienvenida-titulo::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#0086D9;
    margin:20px auto 0;
    border-radius:10px;
}

.bienvenida-texto{
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.bienvenida-texto p{
    margin-bottom: 20px;
}

.bienvenida-video{
    grid-row-start: 2;
    align-self: center;
}

.bienvenida-video video{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:block;
}

.bienvenida-btn{
    display:block;
    width:fit-content;
    margin:30px auto 0 auto;
    padding:15px 35px;
    background:#0b67d3;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    transition:all .3s ease;
    cursor: pointer;
     min-width:220px;
    min-height:58px;
}

.bienvenida-btn:hover{
    transform: translateY(-5px);
    background: #0858b6;
    box-shadow:
        0 18px 35px rgba(11,103,211,.30);
}

.bienvenida-btn:active{
    transform:translateY(0);
}

.pilares{
    margin:0 auto; 
    max-width:1200px;
    padding: 90px 20px;
}

.pilares-header{
    margin-bottom:60px;
    text-align:center;
}

.pilares-subtitulo{
    color: #0086D9;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pilares-titulo{
    font-size: clamp(2rem,4vw,3.2rem);
    color: #12355b;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 35px;
    text-align:center;
}

.pilares-titulo::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#0086D9;
    margin:20px auto 0;
    border-radius:10px;
}

.pilares-grid{
    display: grid;
    grid-template-columns:  repeat(4,1fr);
    gap:30px;
}

.pilar-card{
    background: #f8fafc;
    border-radius:20px;
    overflow: hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .4s ease;
}

.pilar-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.pilar-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.pilar-content{
    padding:25px;
}

.pilar-content h3{
    font-size:22px;
    color:#12355b;
    margin-bottom:15px;
}

.pilar-content p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

.niveles-header{
    margin-bottom:60px;
    text-align:center;
}

.niveles-subtitulo{
    color: #0086D9;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.niveles-titulo{
    font-size: clamp(2rem,4vw,3.2rem);
    color: #12355b;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 15px;
    text-align:center;
}

.niveles-titulo::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#0086D9;
    margin:20px auto 0;
    border-radius:10px;
}

.niveles{
   margin:0 auto; 
    max-width:1200px;
    padding: 90px 20px;
}

.niveles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.nivel-card{
    position:relative;
    height:400px;
    overflow:hidden;
    cursor:pointer;
}

.nivel-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    transition:transform .8s ease;
}

.nivel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items:center;
    text-align:center;
    padding:30px;
    color:white;
}

.nivel-overlay h3{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.nivel-overlay p{
    max-width:300px;
    opacity:0;
    transform:translateY(20px);
    transition:.4s ease;
}

.nivel-card:hover img{
    transform:scale(1.08);
}

.nivel-card:hover .nivel-overlay p{
    opacity:1;
    transform:translateY(0);
}

.admisiones_home{
    margin:0 auto; 
    max-width:1200px;
    padding: 90px 20px;
}


.admisiones_home-content{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-items:center;
}

.admisiones_home-subtitulo{
    color:#0086D9;
    font-size:16px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    grid-column: span 2 / span 2;
    text-align: center;
}

.admisiones_home-info{
    grid-column-start: 1;

}


.admisiones_home-info h2{
    font-size: clamp(2rem,4vw,3.2rem);
    color: #12355b;
    font-weight: 700;
    line-height: 1.6;
    margin:15px 0 30px;
    text-align:center;
}

.admisiones_home-info h2::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#0086D9;
    margin:20px auto 0;
    border-radius:10px;
}

.admisiones_home-info p {
    color:#64748b;
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

.admisiones_home-beneficios{
    list-style:none;
    margin:30px 0;
}

.admisiones_home-beneficios li{
    margin-bottom:12px;
    font-size:17px;
    color:#1e293b;
    font-weight:600;
}

.admisiones_home-btn{
    display:block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 15px 35px;
    background:#0b67d3;
    color:#fff;
    text-decoration:none;
    font-size: 16px;
    font-weight: 600;
    border-radius:50px;
    transition:all .35s ease;
    min-width:220px;
    min-height:58px;
}

.admisiones_home-btn:hover{
   transform: translateY(-5px);
    background: #0858b6;
    box-shadow:
        0 18px 35px rgba(11,103,211,.30);
}

.admisiones_home-img{
    overflow:hidden;
    border-radius:20px;
    grid-column-start: 2;

}

.admisiones_home-img img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;

    transition:.6s ease;
}

.admisiones_home-img:hover img{
    transform:scale(1.05);
}

.logosEmp{
    margin:0 auto; 
    max-width:1200px;
    padding: 90px 20px;
}

.logos-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    align-items:center;
}

.logos-grid a{
    display:flex;
    justify-content:center;
    align-items:center;
}

.logos-grid img{
    width:auto;
    object-fit:contain;
}

.logo-cambridge{
    height:60px;
}

.logo-santillana{
    height:65px;
}

.logo-phidias{
    height:100px;
}

@media (max-width:1024px){

    .hero-slider,
    .mySwiper{
        height:85vh;
    }

    .swiper-button-next,
    .swiper-button-prev{
        width:50px;
        height:50px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:20px;
    }
    
    .swiper-pagination{
        bottom:25px !important;
    }
    
    .pilares{
        padding:80px 20px;
    }

    .pilares-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .pilar-card img{
        height:220px;
    }
    
    .niveles{
        padding:80px 20px;
    }

    .niveles-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .nivel-card{
        height:340px;
    }

    .nivel-overlay h3{
        font-size:36px;
    }
    
    .admisiones_home{
        padding:80px 20px;
    }
    
    .admisiones_home-content{
        grid-template-columns:1fr;
        gap:45px;
    }
    
    .admisiones_home-subtitulo{
        grid-column:unset;
    }
    
    .admisiones_home-info{
        grid-column:auto;
    }
    
    .admisiones_home-img{
        grid-column:auto;
    }
    
    .admisiones_home-img img{
        height:420px;
    }
    
    .logosEmp{
        padding:80px 20px;
    }
    
    .logos-grid{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }
    
    .logos-grid a{
        min-height:90px;
    }
}

@media (max-width:992px){

    .bienvenida{
        grid-template-columns:1fr;
        gap:45px;
    }

    .bienvenida-container{
        grid-row:auto;
    }

    .bienvenida-video{
        grid-row:auto;
    }
}

@media (max-width:768px){
    
     .hero-slider{
        padding-top:85px;
    }

    .hero-slider,
    .mySwiper{
        height:auto;
    }
    
    .swiper-slide picture{
        height:auto;
    }

    .swiper-slide picture img{
        width:100%;
        height:auto;
        object-fit:contain;
    }

    .swiper-button-next,
    .swiper-button-prev{
        width:42px;
        height:42px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:16px;
    }

    .swiper-pagination{
        bottom:18px !important;
    }

    .swiper-pagination-bullet{
        width:10px;
        height:10px;
    }
    
    .swiper-pagination-bullet-active{
        width:28px;
    }
    
    .bienvenida{
        grid-template-columns:1fr;
        gap:40px;
        padding:70px 20px;
    }
    
    .bienvenida-subtitulo{
        grid-column:unset;
        font-size:16px;
    }
    
    .bienvenida-titulo{
        font-size:clamp(2rem,8vw,2.6rem);
        margin-bottom:20px;
    }
    
    .bienvenida-container{
        order:2;
        grid-row:auto;
    }
    
    .bienvenida-video{
        order:1;
        grid-row:auto;
    }
    
    .bienvenida-texto{
        font-size:16px;
        text-align:justify;
    }

    .bienvenida-video video{
        border-radius:16px;
    }

    .bienvenida-btn{
        width:100%;
        max-width: 277px;
    }
    
    .pilares{
        padding:70px 20px;
    }

    .pilares-header{
        margin-bottom:40px;

    }

    .pilares-subtitulo{
        font-size:16px;
    }
    
    .pilares-titulo{
        font-size:clamp(2rem,8vw,2.6rem);
        margin-top:15px;
    }
    
    .pilares-grid{
        grid-template-columns:1fr;
        gap:25px;
    }
    
    .pilar-card{
        border-radius:18px;
    }
    
    .pilar-card img{
        height:240px;
    }
    
    .pilar-content{
        padding:22px;
    }
    
    .pilar-content h3{
        font-size:22px;
    }
    
    .pilar-content p{
        font-size:16px;
        line-height:1.7;
    }
    
    .niveles{
        padding:70px 20px;
    }

    .niveles-header{
        margin-bottom:40px;
    }

    .niveles-subtitulo{
        font-size:16px;

    }

    .niveles-titulo{
        font-size:clamp(2rem,8vw,2.6rem);
        margin-top:15px;
    }
    
    .niveles-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    
    .nivel-card{
        height:300px;
        border-radius:18px;
    }
    
    .nivel-overlay{
        padding:25px;
    }
    
    .nivel-overlay h3{
        font-size:32px;
        margin-bottom:10px;
    }
    
    .nivel-overlay p{
        opacity:1;
        transform:none;
        font-size:15px;
        line-height:1.6;
    }
    
    .admisiones_home{
        padding:70px 20px;
    }
    
    .admisiones_home-content{
        grid-template-columns:1fr;
        gap:35px;
    }
    
    .admisiones_home-subtitulo{
        grid-column:unset;
        font-size:16px;
    }
    
    .admisiones_home-img{
        order:1;
    }
    
    .admisiones_home-info{
        order:2;
    }
    
    .admisiones_home-info h2{
        font-size:clamp(2rem,8vw,2.6rem);
        margin-top:10px;
    }
    
    .admisiones_home-info p{
        font-size:16px;
        line-height:1.7;
        text-align:justify;
    }
    
    .admisiones_home-beneficios{
        margin:25px 0;
    }
    
    .admisiones_home-beneficios li{
        font-size:16px;
    }
    
    .admisiones_home-img img{
        height:280px;
        border-radius:18px;
    }
    
    .admisiones_home-btn{
        width:100%;
        max-width:228px;
    }
    
    .logosEmp{
        padding:70px 20px;
    }
    
    .logos-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }
    
    .logos-grid a{
        min-height:80px;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    
    .logos-grid img{
        max-width:100%;
        height:auto;
        object-fit:contain;
    }
    
    .logo-cambridge{
        height:45px;
    }
    
    .logo-santillana{
        height:50px;
    }
    
    .logo-phidias{
        height:75px;
    }
}