
.hero{
background:linear-gradient(135deg,#1f3c5b,#3d6fa3);
color:white;
text-align:center;
padding:90px 20px;
}

.hero h1{
font-size:44px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
max-width:800px;
margin:auto;
}

/* METRICAS */

.metricas{
display:flex;
justify-content:center;
align-items:center;
gap:80px;
margin-top:50px;
flex-wrap:wrap;
}

.metrica{
text-align:center;
}

.metrica h2{
font-size:52px;
margin-bottom:5px;
color:white;
}

.metrica span{
font-size:16px;
}

/* SECCION LOGROS */

.logros{
max-width:1200px;
margin:auto;
padding:80px 20px;
}

.logros-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
}

.card{
background:white;
padding:30px;
text-align:center;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
cursor:pointer;
transition:all .3s ease;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card i{
font-size:34px;
margin-bottom:15px;
color:#1f3c5b;
}

.card h3{
font-size:20px;
margin-top:10px;
}

/* MODAL */

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:999;
}

.modal-content{
background:white;
padding:40px;
border-radius:10px;
max-width:800px;
width:90%;
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

.modal-content h2{
margin-bottom:20px;
}

.close{
position:absolute;
right:30px;
top:20px;
font-size:28px;
cursor:pointer;
}
