*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Montserrat',sans-serif;
}

body{
background:#fff;
color:#222;
}

.mini-header{

position:fixed;
top:0;
left:0;

width:100%;

height:80px;

background:#002460;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 40px;

z-index:9999;

box-shadow:0 5px 20px rgba(0,0,0,.20);

}

.mini-logo{

height:45px;

}

.mini-titulo{

color:white;

font-weight:700;

font-size:20px;

letter-spacing:1px;

}

.btn-volver{

background:#15ABE2;

color:white;

padding:12px 20px;

border-radius:30px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-volver:hover{

transform:translateY(-2px);

background:#25b8ed;

}

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:200px;
background:linear-gradient(
to bottom,
transparent,
#002460
);
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.60);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
color:white;
}

.logo{
width:180px;
margin-bottom:30px;
}

.hero h1{
font-size:70px;
font-weight:800;
}

.subtitulo{
font-size:24px;
margin-top:20px;
}

.premios{
display:flex;
gap:50px;
margin-top:40px;
flex-wrap:wrap;
justify-content:center;
}

.premios div{
background:rgba(255,255,255,.1);
padding:20px 30px;
border-radius:15px;
backdrop-filter:blur(10px);
}

.premios span{
font-size:40px;
display:block;
margin-bottom:10px;
}

.btn-principal{
margin-top:40px;
background:#15ABE2;
padding:18px 40px;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:50px;
}

.numeros{
background:#002460;
color:white;
display:flex;
justify-content:center;
gap:80px;
padding:80px 20px;
flex-wrap:wrap;
}

.numero{
text-align:center;
}

.numero h2{
font-size:70px;
}

.numero p{
font-size:22px;
}

.video{
padding:100px 20px;
text-align:center;
}

.video h2{
margin-bottom:40px;
font-size:40px;
}

.video video{
width:100%;
max-width:1000px;
border-radius:20px;
}

.galeria{
padding:100px 20px;
background:#f5f5f5;
}

.galeria h2{
text-align:center;
margin-bottom:50px;
font-size:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.grid a{
display:block;
overflow:hidden;
border-radius:20px;
}

.grid img{
width:100%;
height:280px;
object-fit:cover;

transition:
transform .4s ease,
box-shadow .4s ease;

box-shadow:
0 10px 25px rgba(0,0,0,.12);
}

.grid img:hover{

transform:scale(1.06);

box-shadow:
0 20px 40px rgba(0,0,0,.25);

cursor:pointer;
}

.cta{
background:#15ABE2;
padding:120px 20px;
text-align:center;
color:white;
}

.cta h2{
font-size:50px;
margin-bottom:40px;
}

.cta a{
background:white;
color:#002460;
padding:20px 40px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.grid{
columns:2;
}

.numero h2{
font-size:50px;
}

.cta h2{
font-size:32px;
}

}


.hero-bg{

animation:zoomHero 18s ease-in-out infinite alternate;

}

@keyframes zoomHero{

from{
transform:scale(1);
}

to{
transform:scale(1.08);
}

}

.wave-divider{
height:120px;
background:url('img/wave.svg') center bottom no-repeat;
background-size:cover;
}

.testimonios{

background:#002460;

padding:50px 30px 80px;

}

.testimonios h2{

text-align:center;

color:white;

font-size:48px;

margin-bottom:50px;

}

.testimonio{

background:white;

padding:35px;

border-radius:20px;

margin:10px;

min-height:220px;

display:flex !important;

flex-direction:column;

justify-content:space-between;

}

.testimonio p{

font-size:20px;

line-height:1.6;

}

.testimonio h4{

color:#15ABE2;

margin-top:20px;

}



.testimonios-slider{

max-width:1400px;

margin:auto;

}

.testimonio{

background:white;

padding:30px;

border-radius:20px;

height:260px;

display:flex !important;

flex-direction:column;

justify-content:space-between;

box-shadow:
0 15px 40px rgba(0,0,0,.15);

}


.slick-prev:before,
.slick-next:before{

color:#15ABE2 !important;

font-size:40px !important;

}

.slick-dots li button:before{

color:white !important;

font-size:12px !important;

}


.stars{

color:#FFD700;

font-size:22px;

margin-bottom:15px;

}