.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;
}

@media (max-width:1024px){

    .hero-page{
        height:60vh;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

    .politica-calidad{
        padding:90px 20px;
    }

    .politica-box{
        gap:30px;
        padding:40px;
    }

    .politica-box h3{
        font-size:28px;
    }

    .nosotros-cta{
        padding:90px 20px;
    }

}

@media (max-width:768px){
    .hero-page{
        position: relative;
        min-height: calc(100vh - 90px);
        padding-top: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .hero-content{
        position: relative;
        z-index: 2;
        padding: 40px 20px 60px;
    }

    .hero-content span{
        font-size:15px;
        letter-spacing:2px;
    }

    .hero-content h1{
        font-size:clamp(2rem,8vw,2.8rem);
        line-height:1.2;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .politica-calidad{
        padding:70px 20px;
    }

    .section-title{
        margin-bottom:45px;
    }
    
    .section-title h2{
        font-size:clamp(2rem,8vw,2.6rem);
    }
    
    .section-title p{
        font-size:16px;
        line-height:1.8;
    }
    
    .politica-box{
        flex-direction:column;
        text-align:center;
        gap:25px;
        padding:30px 25px;
    }
    
    .politica-icon{
        width:90px;
        height:90px;
        font-size:40px;
    }
    
    .politica-box h3{
        font-size:26px;
    }
    
    .politica-box p{
        font-size:16px;
        line-height:1.8;
        text-align:justify;
    }
    
    .nosotros-cta{
        padding:70px 20px;
    }
    
    .cta-content h2{
        font-size:clamp(2rem,8vw,2.8rem);
    }
    
    .cta-content p{
        font-size:16px;
    }
    
    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }
    
    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:300px;
        text-align:center;
    }
}