
/* ========================= */
/* HERO TRANSFORMACIONES */
/* ========================= */

.transformations-hero{
    position:relative;

    background:url('../img/hero/transformaciones-hero.jpg');
    background-size:cover;
    background-position:center;

    padding:140px 0 110px;

    overflow:hidden;
    isolation:isolate;
}

.transformations-hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(8,24,51,0.86) 0%,
        rgba(8,24,51,0.72) 45%,
        rgba(8,24,51,0.60) 100%
    );
}

.transformations-hero-content{
    position:relative;
    z-index:2;

    color:#fff;

    max-width:850px;
}

.transformations-tag{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(8px);

    font-size:12px;
    font-weight:600;

    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:24px;
}

.transformations-hero h1{
    font-size:58px;
    line-height:1.05;

    margin-bottom:28px;
}

.transformations-hero p{
    font-size:20px;
    line-height:1.9;

    color:rgba(255,255,255,0.82);

    max-width:700px;
}

@media(max-width:992px){

    .transformations-hero{
        padding:120px 0 90px;
    }

    .transformations-hero h1{
        font-size:40px;
    }

    .transformations-hero p{
        font-size:16px;
    }

}

/* TRANSFORMACIONES */

.transformations-section{
    padding:80px 0;
    background:#fff;
}

.transformation-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.transformation-row.reverse .transformation-image{
    order:2;
}

.transformation-row.reverse .transformation-content{
    order:1;
}

.transformation-image img{
    width:100%;
    border-radius:28px;
    display:block;

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

.transformation-content span{
    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    background:rgba(28,53,94,.08);

    color:var(--azul);

    font-size:12px;
    font-weight:600;

    text-transform:uppercase;

    margin-bottom:20px;
}

.transformation-content h2{
    font-size:42px;
    line-height:1.15;
    color:var(--azul);
    margin-bottom:24px;
}

.transformation-content p{
    color:#647082;
    line-height:1.9;
    margin-bottom:25px;
}

.transformation-content ul{
    padding-left:20px;
}

.transformation-content li{
    margin-bottom:12px;
    color:#647082;
}

@media(max-width:992px){

.transformation-row{
    grid-template-columns:1fr;
    gap:35px;
}

.transformation-row.reverse .transformation-image,
.transformation-row.reverse .transformation-content{
    order:unset;
}

.transformation-content h2{
    font-size:34px;
}

}

/* ========================= */
/* BENEFICIOS */
/* ========================= */

.transform-benefits{
    padding:90px 0 110px;
    background:#f8fafc;
}

.transform-benefits .section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 55px;
}

.transform-benefits .section-header span{
    display:inline-block;
    padding:8px 14px;
    border-radius:30px;
    background:rgba(28,53,94,.08);
    color:var(--azul);
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.transform-benefits .section-header h2{
    font-size:44px;
    line-height:1.15;
    color:var(--azul);
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.benefit-item{
    background:#fff;
    padding:35px 28px;
    border-radius:24px;
    border:1px solid rgba(28,53,94,.08);
    box-shadow:0 14px 36px rgba(0,0,0,.05);
    transition:.4s ease;
}

.benefit-item:hover{
    transform:translateY(-6px);
}

.benefit-item h3{
    color:var(--azul);
    font-size:22px;
    margin-bottom:12px;
}

.benefit-item p{
    color:#647082;
    line-height:1.7;
    margin:0;
}

/* MOBILE */

@media(max-width:992px){

    .benefits-grid{
        grid-template-columns:1fr 1fr;
    }

    .transform-benefits .section-header h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .benefits-grid{
        grid-template-columns:1fr;
    }

}