/* ===================================================
   BOTÕES
=================================================== */

.btn-primary-custom {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    background: var(--color-primary);
    color: #fff;

    border: none;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;

    transition: .35s ease;

    box-shadow: 0 15px 35px rgba(164,112,72,.18);

}

.btn-primary-custom:hover{

    background: var(--color-primary-dark);

    transform: translateY(-3px);

    color:#fff;

    box-shadow:0 20px 40px rgba(164,112,72,.28);

}


.btn-outline-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 34px;

    border:1px solid var(--color-primary);

    color:var(--color-primary);

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn-outline-custom:hover{

    background:var(--color-primary);

    color:#fff;

}



/* ===================================================
   TAG DAS SEÇÕES
=================================================== */

.section-tag{

    display:inline-block;

    margin-bottom:18px;

    color:var(--color-primary);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}



/* ===================================================
   ESPAÇAMENTO
=================================================== */

.section-padding{

    padding:80px 0;

}



/* ===================================================
   CARDS DOS SERVIÇOS
=================================================== */

.service-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.05);

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}

.service-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.service-content{

    padding:35px;

}

.service-content h4{

    margin-bottom:18px;

}

.service-content p{

    margin-bottom:25px;

    color:var(--color-text-light);

}

.service-content a{

    text-decoration:none;

    color:var(--color-primary);

    font-weight:600;

}



/* ===================================================
   DIFERENCIAIS
=================================================== */

.feature-card{

    background:#fff;

    border-radius:28px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card{

    font-size:3rem;

}

.feature-card h5{

    margin-top:25px;

    font-size:1.2rem;

}



/* ===================================================
   SPA LIST
=================================================== */

.spa-list{

    list-style:none;

    padding:0;

    margin:35px 0;

}

.spa-list li{

    margin-bottom:14px;

    font-size:1.05rem;

}



/* ===================================================
   CTA
=================================================== */

.cta-section{

    padding:120px 0;

    text-align:center;

    background:linear-gradient(
        135deg,
        #A47148,
        #C79C7D
    );

    color:#fff;

}

.cta-section h2{

    color:#fff;

    margin-bottom:25px;

}

.cta-section p{

    color:rgba(255,255,255,.85);

    max-width:650px;

    margin:auto;

    margin-bottom:40px;

}



/* ===================================================
   FOOTER
=================================================== */

/*=========================================
FOOTER
=========================================*/

.footer{

    background:#4A3C31;

    color:#FAF6F0;

    padding:70px 0 25px;

}

.footer-logo{

    font-family:'Playfair Display',serif;

    color:#fff;

    margin-bottom:20px;

}

.footer-title{

    color:#fff;

    margin-bottom:20px;

    font-size:1.1rem;

    font-weight:600;

}

.footer-text{

    color:#D6CABA;

    line-height:1.8;

    max-width:320px;

}

.footer-social{

    display:flex;

    gap:18px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:#D6CABA;

    font-size:1.3rem;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--color-primary);

    color:#fff;

    transform:translateY(-3px);

}

.footer-links,
.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#D6CABA;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

}

.footer-contact i{

    color:var(--color-primary);

    font-size:1.15rem;

    margin-top:3px;

}

.footer-contact a{

    color:#D6CABA;

    line-height:1.7;

    transition:.3s;

}

.footer-contact a:hover{

    color:#fff;

}

.footer-divider{

    margin:45px 0 20px;

    border-color:rgba(255,255,255,.1);

}

.footer-bottom{

    text-align:center;

}

.footer-bottom small{

    color:#A39589;

    letter-spacing:.5px;

}



/* ===================================================
   IMAGENS
=================================================== */

img{

    max-width:100%;

}



/* ===================================================
   BACKGROUNDS
=================================================== */

.bg-light{

    background:#F8F4EF !important;

}



/* ===================================================
   TÍTULOS
=================================================== */

h2{

    margin-bottom:25px;

    font-size:2.7rem;

    line-height:1.2;

}

h4{

    font-size:1.5rem;

}

p{

    line-height:1.9;

}

