/* 
 * ARQUIVO CSS ATUALIZADO PARA FOUR BRAZILIAN LYMPHATIC DRAINAGE
 * Substituição de cores amarelas por tons marrons
 * Remoção de elementos verdes
 */

:root {
    --bs-primary: #B99976;        /* Marrom claro acinzentado - substitui #e7b666 */
    --bs-secondary: #987554;      /* Marrom médio - substitui #5c4433 */
    --bs-light: #E5D3B3;         /* Bege muito claro - substitui #fff5e6 */
    --bs-dark: #664229;          /* Marrom escuro - substitui #3e2d25 */
    --bs-white: #ffffff;         /* Branco puro - mantém */
    --bs-accent: #D2B48C;        /* Nova cor de destaque - Tan/Bege rosado */
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    background-color: var(--bs-white); /* fundo branco */
    border: 4px solid var(--bs-primary); /* borda dourada */
    border-top: 4px solid transparent; /* efeito spinner girando */
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    animation: spin 1s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

/* Botão primário (ex: dourado com texto claro) */
.btn.btn-primary {
    background-color: var(--bs-primary); /* fundo dourado */
    border: none;
    color: var(--bs-white); /* texto branco pra contraste */
    transition: 0.4s ease;
}

.btn.btn-primary:hover {
    background-color: var(--bs-secondary); /* marrom dourado no hover */
    color: var(--bs-white); /* mantém contraste */
}

/* Botão claro (ex: fundo off-white com borda dourada e texto marrom escuro) */
.btn.btn-light {
    background-color: var(--bs-light); /* fundo bege claro */
    border: 2px solid var(--bs-primary); /* borda dourada */
    color: var(--bs-dark); /* texto marrom escuro */
    transition: 0.4s ease;
}

.btn.btn-light:hover {
    background-color: var(--bs-primary); /* fundo dourado no hover */
    color: var(--bs-white); /* texto claro no hover */
}

/* Botão com transição suave de cor */
.btn-hover {
    transition: 0.5s;
}

/* Cor de destaque no hover para botões com classe btn-hover */
.btn-hover:hover {
    color: var(--bs-accent) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    color: var(--bs-secondary); /* Título principal em marrom claro */
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary); /* Dourado */
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
}

.section-title .sub-style::before,
.section-title .sub-style::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid var(--bs-secondary); /* Dourado mais escuro */
}

.section-title .sub-style::before {
    width: 80px;
    left: -90px;
}

.section-title .sub-style::after {
    width: 80px;
    right: -90px;
}

.sub-title {
    color: var(--bs-primary); /* Dourado */
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.sub-title::before,
.sub-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid var(--bs-secondary);
}

.sub-title::before {
    width: 80px;
    right: 100%;
    margin-right: 10px;
}

.sub-title::after {
    width: 80px;
    left: 100%;
    margin-left: 10px;
}

/*** Topbar Start ***/

.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 6px 20px;
    background-color: var(--bs-primary) !important; /* Fundo dourado clássico */
    border-bottom: 1px solid var(--bs-secondary); /* Marrom escuro sutil */
}

.topbar a,
.topbar a i {
    transition: 0.3s ease-in-out;
    color: var(--bs-light); /* Letras claras para contraste no fundo dourado */
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-dark) !important; /* Marrom escuro no hover */
    text-decoration: none;
}

@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar com ajuste só de cores - Spa ***/
.navbar-light .navbar-nav .nav-link {
    color: var(--bs-secondary) !important; /* Marrom escuro */
    font-weight: bold;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important; /* Dourado no hover e ativo */
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary); /* Dourado no hover */
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    background: var(--bs-light) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        background: var(--bs-white); /* Branco no mobile */
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        border: 1px solid var(--bs-primary); /* Borda dourada */
        color: var(--bs-primary); /* Ícone dourado */
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        color: var(--bs-dark) !important; /* Texto marrom escuro */
    }
}

@media (min-width: 992px) {
    .sticky-top.navbar-light {
        background: #fff !important; /* Bege claro ao rolar */
    }

    .navbar-light .navbar-nav .nav-link::before {
        background: var(--bs-primary); /* Linha dourada no hover */
    }
}


/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary); /* Fundo dourado */
    color: var(--bs-white); /* Ícone branco */
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary); /* Fundo dourado */
    color: var(--bs-white); /* Ícone branco */
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-secondary) !important;
    color: var(--bs-primary) !important; /* Dourado no hover */
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }
}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 360px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

@media (max-width: 430px) {
    .bg-breadcrumb {
        padding: 160px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 10px solid var(--bs-white); /* mantém branco para contraste */
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary); /* destaque dourado */
    border-radius: 10px;
    background: var(--bs-light); /* fundo claro */
    transition: 0.5s;
}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary); /* dourado ao hover */
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white); /* texto claro ao hover */
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark); /* título com contraste ao hover */
}
/*** Feature End ***/



/*** Appointment Start ***/
.appointment {
    /* Fundo com imagem e sobreposição branca semi-transparente */
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Fixa a imagem enquanto rola a página */
}

.appointment .appointment-form {
    /* Fundo do formulário com leve transparência verde */
    background: rgba(155, 250, 176, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    /* Remove sombra inicialmente */
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    /* Sombra dourada suave ao passar o mouse */
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(218, 165, 32, 0.9), rgba(218, 165, 32, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev,
.testimonial .testimonial-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-secondary) !important;
    color: var(--bs-primary) !important;
}

/*** testimonial End ***/

/*** Contact Start ***/
.contact .contact-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item .footer-link a {
    line-height: 35px;
    color: var(--bs-light);
    transition: 0.5s;
}

.footer .footer-item .footer-link a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-link a i {
    margin-right: 8px;
}

.footer .copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer .copyright a {
    color: var(--bs-primary);
}

.footer .copyright a:hover {
    color: var(--bs-light);
}
/*** Footer End ***/

/* Remover ou alterar qualquer referência a cores verdes */
.green-element,
.icon-green,
.text-green,
.bg-green {
    color: var(--bs-secondary) !important;
    background-color: var(--bs-accent) !important;
}

/* Elementos de destaque */
.highlight,
.accent {
    color: var(--bs-accent);
    background-color: var(--bs-light);
}

/* Footer e rodapé */
.footer {
    background-color: var(--bs-dark);
    color: var(--bs-light);
}

.footer a {
    color: var(--bs-accent);
}

.footer a:hover {
    color: var(--bs-primary);
}

