/* ======================================== */
/* HERO */
/* ======================================== */

.seguro-hero{
    min-height:100vh;
    background:#081126;
    display:flex;
    align-items:center;
    padding-top:180px;
}

.seguro-hero-content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.seguro-badge{
    display:inline-block;
    background:rgba(255,255,255,.08);
    color:#56c667;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.seguro-left h1{
    font-size:68px;
    line-height:1.05;
    color:white;
    margin-bottom:30px;
}

.seguro-left p{
    color:rgba(255,255,255,.8);
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

.seguro-buttons{
    display:flex;
    gap:20px;
}

.seguro-right img{
    width:100%;
    border-radius:32px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

/* ======================================== */
/* BENEFITS */
/* ======================================== */

.benefits{
    background:#f4f7fb;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.benefit-card{
    background:white;
    padding:45px;
    border-radius:28px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-card i{
    font-size:44px;
    color:#56c667;
    margin-bottom:25px;
}

.benefit-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.benefit-card p{
    color:#5f6c83;
    line-height:1.8;
}

/* ======================================== */
/* COVERAGES */
/* ======================================== */

.coverages{
    background:white;
}

.coverage-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.coverage-item{
    background:#f4f7fb;
    padding:28px;
    border-radius:22px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.coverage-item:hover{
    background:#56c667;
    color:white;
    transform:translateY(-6px);
}

/* ======================================== */
/* FORMULARIOS */
/* ======================================== */

.formularios{
    background:#081126;
}

.formularios .section-title h2{
    color:white;
}

.formularios-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.form-card{
    background:white;
    padding:40px;
    border-radius:28px;
    text-align:center;
    transition:.3s;
}

.form-card:hover{
    transform:translateY(-10px);
}

.form-card img{
    height:90px;
    object-fit:contain;
    margin:auto auto 25px;
}

.form-card h3{
    color:#081126;
    font-size:24px;
}

/* ======================================== */
/* CTA */
/* ======================================== */

.seguro-cta{
    background:#56c667;
}

.seguro-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.seguro-cta span{
    color:white;
    font-weight:700;
    letter-spacing:2px;
}

.seguro-cta h2{
    color:white;
    font-size:54px;
    margin-top:15px;
}

/* ======================================== */
/* FOOTER */
/* ======================================== */

.footer{
    background:#071126;
    padding:80px 0;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-brand img{
    width:110px;
    margin-bottom:25px;
}

.footer-brand p{
    color:rgba(255,255,255,.7);
    line-height:1.9;
    max-width:420px;
}

.footer-links h4,
.footer-contact h4{
    color:white;
    margin-bottom:25px;
}

.footer-links a{
    display:block;
    margin-bottom:15px;
    color:rgba(255,255,255,.7);
}

.footer-contact p{
    color:rgba(255,255,255,.7);
    margin-bottom:15px;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media(max-width:1100px){
    .seguro-hero-content,
    .footer-content{
        grid-template-columns:1fr;
    }

    .benefits-grid,
    .formularios-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){
    .seguro-left h1{
        font-size:42px;
    }

    .coverage-list{
        grid-template-columns:1fr;
    }

    .seguro-buttons{
        flex-direction:column;
    }

    .seguro-cta-box{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .seguro-cta h2{
        font-size:38px;
    }
}