.hero-page{
    position:relative;
    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;
    text-align:center;
    color:white;
    padding:0 20px;
}

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

.hero-content h1{
    margin:20px 0;
    font-size:60px;
    color:white;
}

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

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

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

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

.politica-calidad{
    padding:120px 0;
    background:#f8fbff;
}

.politica-box{
    display:flex;
    gap:45px;
    align-items:center;
    background:white;
    padding:55px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.politica-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#0086D9;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:48px;
    flex-shrink:0;
}

.politica-box h3{
    color:#1b2a41;
    margin-bottom:20px;
    font-size:32px;
}

.politica-box p{
    color:#666;
    line-height:2;
    font-size:17px;
}

.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;
    padding:18px 40px;
    border-radius:50px;
    background:white;
    color:#0086D9;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

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

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

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