.hero-page{
    position:relative;
    width:100%;
    height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero-page img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:0 20px;
    text-align:center;
    color:white;
}

.hero-content span{
    color:#00B4FF;
    font-size:17px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.hero-content h1{
    margin:20px 0;
    font-size:58px;
    color:#fff;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
}

.section-title{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#0086D9;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    font-size:15px;
}

.section-title p{
    font-size:18px;
    line-height:2;
    color:#666;
}

.objetivos-intro{
    padding:120px 0 60px;
    background:#fff;
}

.objetivos{
    padding:0 0 120px;
    background:#fff;
}

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

.objetivo-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #0086D9;
}

.objetivo-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.numero{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0086D9;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    margin-bottom:25px;
}

.objetivo-card h3{
    font-size:28px;
    color:#1B2A41;
    margin-bottom:18px;
}

.objetivo-card p{
    color:#666;
    line-height:2;
    text-align:justify;
}

.nosotros-cta{
    padding:120px 0;
    background:linear-gradient(135deg,#0074C8,#00AEEF);
}

.cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:white;
}

.cta-content span{
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:3px;
}

.cta-content h2{
    margin:25px 0;
    color:white;
    font-size:50px;
    line-height: 1.2;
}

.cta-content p{
    font-size:18px;
    line-height:2;
    color:rgba(255,255,255,.9);
    margin-bottom:45px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-block;
    background:white;
    color:#0086D9;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);
    background:#f4f4f4;
}

.btn-secondary{
    display:inline-block;
    border:2px solid white;
    color:white;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:white;
    color:#0086D9;
}
