/* ==========================================================================
   HEAD SPA
   ========================================================================== */

.head-spa{

    position:relative;

    padding:70px 0;

    overflow:hidden;

    background:#f7f5f1;

}

.head-spa .container{

    width:min(1400px,92%);

    margin:0 auto;

}


/* ==========================================================================
   GRID
   ========================================================================== */

.head-spa-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


/* ==========================================================================
   CONTEÚDO
   ========================================================================== */

.head-spa-content{

    max-width:620px;

}

.head-spa .section-subtitle{

    display:inline-block;

    margin-bottom:18px;

    font-size:.90rem;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#8a8f67;

}

.head-spa .section-title{

    margin-bottom:24px;

    font-size:clamp(2.4rem,5vw,4.4rem);

    font-weight:300;

    line-height:1.12;

    color:#1e1e1e;

}

.head-spa .section-title span{

    display:block;

    margin-top:12px;

    font-size:1.45rem;

    color:#8a8f67;

    font-weight:300;

}

.head-spa-description{

    margin-bottom:32px;

    font-size:1.05rem;

    line-height:1.85;

    color:#666;

}


/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */

.head-spa-benefits{

    display:grid;

    gap:15px;

    margin:0 0 32px;

    padding:0;

    list-style:none;

}

.head-spa-benefits li{

    display:flex;

    align-items:center;

    gap:14px;

    color:#333;

    font-size:1rem;

}

.head-spa-benefits svg{

    width:22px;

    height:22px;

    flex-shrink:0;

    stroke:#8a8f67;

    stroke-width:2;

    fill:none;

}


/* ==========================================================================
   BOTÃO
   ========================================================================== */

.head-spa-actions{

    display:flex;

    align-items:center;

}


/* ==========================================================================
   ÁREA VISUAL
   ========================================================================== */

.head-spa-media{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}


/* ==========================================================================
   IMAGEM PRINCIPAL
   ========================================================================== */

.head-spa-main-image{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 35px 80px rgba(0,0,0,.15);

}

.head-spa-main-image img{

    display:block;

    width:100%;

    height:auto;

    object-fit:cover;

}


/* ==========================================================================
   IMAGEM SECUNDÁRIA
   ========================================================================== */

.head-spa-detail-image{

    position:absolute;

    right:-40px;

    bottom:50px;

    width:280px;

    overflow:hidden;

    border-radius:22px;

    border:8px solid #fff;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.head-spa-detail-image img{

    display:block;

    width:100%;

    height:auto;

}


/* ==========================================================================
   SELO
   ========================================================================== */

.head-spa-badge{

    position:absolute;

    top:35px;

    left:-35px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    width:140px;

    height:140px;

    border-radius:50%;

    background:#8a8f67;

    color:#fff;

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

.badge-title{

    margin-bottom:8px;

    font-size:.82rem;

    text-transform:uppercase;

    letter-spacing:2px;

}

.head-spa-badge strong{

    font-size:1.2rem;

    font-weight:600;

}


/* ==========================================================================
   REVEAL
   ========================================================================== */

.head-spa-content,
.head-spa-media{

    opacity:0;

    transform:translateY(50px);

    transition:

        opacity .9s ease,

        transform .9s ease;

}

.head-spa-content.is-visible,
.head-spa-media.is-visible{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width:1200px){

    .head-spa-grid{

        gap:50px;

    }

    .head-spa-detail-image{

        width:220px;

        right:-20px;

    }

}


@media (max-width:991px){

    .head-spa{

        padding:60px 0;

    }

    .head-spa-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .head-spa-content{

        order:2;

        max-width:100%;

    }

    .head-spa-media{

        order:1;

    }

    .head-spa-detail-image{

        right:0;

        bottom:-20px;

    }

    .head-spa-badge{

        left:15px;

        top:15px;

    }

}


@media (max-width:768px){

    .head-spa{

        padding:50px 0;

    }

    .head-spa-detail-image{

        display:none;

    }

    .head-spa-badge{

        width:110px;

        height:110px;

    }

    .head-spa .section-title{

        font-size:2.3rem;

    }

    .head-spa .section-title span{

        font-size:1.15rem;

    }

}


@media (max-width:480px){

    .head-spa{

        padding:45px 0;

    }

    .head-spa-main-image{

        border-radius:20px;

    }

    .head-spa-badge{

        width:95px;

        height:95px;

        font-size:.75rem;

    }

}