.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    height: 40px;
    width: 40px;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.instagram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.instagram-float img {
    height: 40px;
    width: 40px;
    display: block;
}

.instagram-float:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}





.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
}


.page-banner-home {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 750px;
}


/* Título Principal */
.page-banner__title {
    font-family: 'Catavalo', sans-serif;
    color: #8C7F6C;
    font-size: 80px;
    font-weight: 200;
    margin-bottom: 10px;
}

/* Texto de Apoio */
.page-banner__text {
    color: #8C7F6C;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-banner__title {
        font-size: 50px;
    }
    
    .page-banner__text {
        font-size: 16px;
    }
}


/* ////////////////////RESETS\\\\\\\\\\\\\\\\\\\\\ */

html, body {height: 100%; margin: 0;}

body {display: flex; flex-direction: column; min-height: 100vh;}

.wrapper {flex: 1 0 auto; }

.container {padding: 20px 0;}

.mb-6{ margin-bottom: 150px !important;}



/* ////////////////////retirar o placeholder do marcar conculta\\\\\\\\\\\\\\\\\\\\\ */


/*||||||||||||||||||||||||NAVBAR||||||||||||||||||||||\\*/

.navbar-nav .nav-link {
    color: #8C7F6C;
    font-weight: 400;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #3c372f !important;
    text-decoration: none !important;
}

.nav-item.active .nav-link {
    color: #483619 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.navbar-nav .nav-link:focus, 
.nav-item.active .nav-link:focus {
    text-decoration: none !important;
    outline: none;
}

.nav-item {
    font-size: 16px;
    color: #8C7F6C;
}

.btn-primary {
    background-color: #8C7F6C !important;
    border-color: #8C7F6C !important;
    font-size: 15px !important;
    margin-left: 20px !important;
}

.gap-6 {
    gap: 40px;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.hamburger-icon {
    width: 25px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #8C7F6C;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* ANIMAÇÃO PARA X (Quando aberto) */
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) { opacity: 0; }
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


@media (max-width: 991.98px) {

    .nav-desktop-pill,
    .navbar .container.bg-white.rounded-pill {
        background-color: white !important;
        border-radius: 50px !important;
        box-shadow: none !important;
    }
    

    .nav-custom-wrapper {
        background-color: transparent !important;
        border-radius: 0px !important;
        box-shadow: none !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        display: block !important; 
    }

    
    .nav-header-mobile {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        background-color: transparent;
    }

    .navbar-brand, .navbar-toggler {
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar-collapse {
        background-color: transparent !important;
        margin-top: 20px !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
        padding: 25px !important;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }

    .navbar-toggler {
        display: flex !important;
    }

    .navbar-nav {
        gap: 15px !important;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #8c7f6c14;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-nav .btn-primary {
        margin-left: 0 !important;
        margin-top: 15px;
        display: block !important;
        width: 100%;
        text-align: center;
    }
}

/*||||||||||||||||||||||||FOOTER||||||||||||||||||||||\\*/

.footer-section {
    background-image: url('/assets/website/img/footer-container.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 80px 0 20px 0;
    flex-shrink: 0;
    margin-top: 40px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #8C7F6C;
    margin-bottom: 15px;
}

.footer-section {
    flex-shrink: 0;
}

.footer-text p, .footer-text {
    font-size: 14px;
    line-height: 2.4;
    color: #8C7F6C;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #8C7F6C;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #50493e;
}

.footer-hr {
    border: 0;
    border-top: 4px solid #FFFFFF;
    margin: 15px 0;
    width: 95%;
    opacity: 1;
    margin-left: auto;
    margin-right: 0;

}

.small-footer {
    font-size: 14px !important;
    color: #f5f5f5 !important;
    margin-bottom: 0;
    font-weight: 400;
}

.small-footer i {
    font-size: 20px;          
    margin-right: 5px; 
}

.footer-social-icon {
    width: 30px; 
    height: auto;
    transition: opacity 0.3s;
}

.footer-social-icon:hover {
    opacity: 0.7;
}

.footer-cta {
    display: flex;
    justify-content: start;
    align-items: center;
}


/* //////////////////// CONTACT BANNER - CONTACTS PAGE  \\\\\\\\\\\\\\\\\\\\\ */

.img-banner-contacts {
    background-image: url('/assets/website/img/back-img.webp');
    background-position: center 100px;
    background-repeat: no-repeat;
}

.contacts-section {
    padding: 30px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contacts-path {
    font-size: 15px;
    color: #fff;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon {
    width: 24px;
    height: auto;
    margin-right: 20px;
}

.address-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #eee;
}

/* --- Cartão e Formulário --- */
.contact-card {
    background: white;
    border: 1px solid transparent;
    padding: 50px;
    border-radius: 30px;
}

.form-label {
    font-weight: 400;
    color: #8C7F6C;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-card .form-control {
    background-color: white;
    border: 1px solid #8C7F6C;
    color: black;
    border-radius: 20px;
    font-size: 14px;
    padding: 20px; /* Unificado aqui */
}

.contact-card .form-control:focus {
    background-color: #ffffff14;
    border-color: #bcbcbc61;
    box-shadow: none;
}

.btn-submit {
    background: white;
    color: black;
    border-radius: 50px;
    padding: 5px 20px;
    font-weight: 500;
    border: 2px solid white;
    transition: 0.3s;
    outline: 1px solid white;
    outline-offset: 8px;
    font-size: 13px;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #8C7F6C;
    font-weight: 100;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* --- Media Query (Mobile <= 768px) --- */
@media (max-width: 768px) {
    .contacts-section {
        padding: 0;
        margin-top: -10px;
    }

    .contacts-description h1 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .contacts-description h2 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-contacts {
        min-height: 50vh;
    }

    .contact-card {
        margin-top: -60px;
        padding: 30px;
    }

    .contacts-description {
        padding: 50px 30px 0 30px;
        text-align: left;
    }

    .contacts-path {
        padding: 0 41px 0 20px;
    }

    /* Forçar alinhamento à esquerda no mobile devido a possíveis classes globais */
    .contacts-path .d-flex {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 10px !important;
    }

    .icon-wrapper {
        width: 30px !important;
        min-width: 30px !important;
        margin-right: 15px;
        padding-top: 4px !important;
    }

    .contact-icon {
        width: 20px !important;
        height: auto !important;
    }

    .contacts-path p {
        margin-left: 0 !important;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        background-color: #DBCCB7;
        padding: 20px;
    }

}

/* //////////////////// HOME PAGE BANNER TOP  \\\\\\\\\\\\\\\\\\\\\ */


.page-banner-home {
    height: 650px;
    position: relative;
    overflow: hidden; /* Garante que a imagem não saia do banner */
    display: flex;
    align-items: stretch;
}

/* Container da imagem */
.banner-person-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

/* Imagem com comportamento inteligente */
.banner-person-img {
    max-height: 80%; 
    width: auto;     
    object-fit: contain;   
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* Ajuste para Mobile (Ecrãs pequenos) */
@media (max-width: 768px) {
    .page-banner-home {
        height: auto;
        min-height: 600px;
        padding-top: 80px;
    }

    .banner-person-img {
        position: relative;
        margin-top: 20px;
        width: 90%;
    }

    .z-index-2 {
        position: relative;
        z-index: 2;
    }

    .page-banner-home .page-banner__title {
        margin-top: 70px;
    }

     .page-banner-home .page-banner__text {
        margin-bottom: 30px;
    }
}


/* Ajuste para Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .banner-person-img {
        max-height: 70%;
    }
}

/* //////////////////// BOTÕES  \\\\\\\\\\\\\\\\\\\\\ */
.btn-services {
    color: #fff;
    background: #8C7F6C;
    padding: 12px 35px;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.3s;
    letter-spacing: 1px;
    text-decoration: none !important;
}

.btn-services:hover {
    background: #453e35;
    color: #fff;
}

.footer-cta .btn-cv-send {
    display: inline-flex;
    justify-content: center;
    align-items: center;    
}

.btn-cv-send {
    background: #8C7F6C;
    color: #fff;
    padding: 12px 35px;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none !important;
}

.btn-cv-send:hover, 
.btn-cv-send:focus, 
.btn-cv-send:active {
    background: #453e35;
    color: #fff;
}

/* //////////////////// \\\\\\\\\\\\\\\\\\\\\ */


.phrases-container { width: 100%; overflow: hidden; position: relative; }

.solutions-wrapper { 
    background-color: #DBCCB7; 
    padding: 15px 0; width: 120%;
    margin-left: -10%; display: 
    flex; align-items: center;
    white-space: nowrap; 
}

.solutions-track { display: flex; gap: 50px; align-items: center; animation: scroll 25s linear infinite; white-space: nowrap; }

.solutions-items { display: flex; align-items: center; gap: 60px; }

.solutions-items p { font-size: 20px; padding: 5px; font-weight: 500; color:white; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.star-divider { width: 40px; height: auto; flex-shrink: 0;}


.specialties-section {
    padding: 0px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.specialties-header {
    text-align: center;
    margin-bottom: 50px;
}

.specialties-subtitle-top {
    color: #8C7F6C;
    letter-spacing: 2px;
    font-size: 49px;
    margin-bottom: 10px;
    font-family: 'Catavalo', sans-serif;
}

.specialties-title {
    color: #8C7F6C;
    font-weight:200;
    font-size: 20px;
}

.specialties-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.specialty-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    height: 340px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.specialty-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
}

.specialty-label {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

.specialty-label span {
    background: #fff;
    color: #5D544B;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 20px #0000001a;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efeito de Hover */
.specialty-label span:hover {

    transform: translateY(-5px); 
    box-shadow: 0 12px 25px #00000026;
    background: #f8f8f8;
    color: #4a433c; 
}

.stars-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 50px;
}

#pagination-container {
    margin-top: 0px;
}

/* SweetAlert*/
.sweet-alert {
    overflow: visible;
}

.sweet-alert .sa-icon {
    margin: 20px auto 28px;
}

.sweet-alert h2,
.sweet-alert p {
    line-height: 1.4;
    word-break: break-word;
}

.star-dot {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.star-dot {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.star-dot img {
    width: 25px;
    height: auto;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.star-dot.active {
    transform: scale(1.3); 
}

.star-dot.active img {
    opacity: 1;
}

.cta-container {
    text-align: center;
}

.btn-explore {
    background: #8C7F6C;
    color: #fff;
    padding: 12px 35px;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none !important;
}

.btn-explore:hover,
.btn-explore:focus, 
.btn-explore:active {
    background: #453e35;
    color: #fff;
}



/* //////////////////// ABOUT CLINICA - HOME PAGE \\\\\\\\\\\\\\\\\\\\\ */


.about-clinic-section {
    overflow: hidden;
    margin-top: 70px;
}

.stature {
    min-height: 600px;
}

.year-title {
    font-family: 'Catavalo', serif;
    color: #8C7F6C;
    font-size: 60px;
    margin-bottom: 25px;
}
 #year-about2 {
    text-align: right;
    }

.about-description p {
    color: #8C7F6C;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.doctor-img-about {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.watermark-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    width: 110%; 
    z-index: 1;
}

.watermark-about {
    width: 100%;
    opacity: 0.3; 
    max-width: 600px; 
}

.position-relative {
    display: flex;
    align-items: flex-end;
}

.about-bg-card {
    position: absolute;
    bottom: 0;
    width: 70%;
    height: 70%;
    background: linear-gradient(to top, #FFFFFF 0%, #D6C4B0 100%);
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
}

.watermark-about-card {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; 
    height: auto;
    opacity: 0.3;
    z-index: 2;
    display: block;
}

.top-white-fade {
    position: absolute;
    bottom: 0%;
    width: 70%;
    height: 170px;
    background: linear-gradient(to top, rgb(255 255 255 / 66%) 0%, rgb(255 255 255 / 0%) 100%);
    z-index: 4;
    pointer-events: none;
}

.doctor-img-popout {
    position: relative;
    z-index: 3; 
    width: auto;
    max-height: 600px; 
    object-fit: contain;
    transform: translateY(0); 
    transition: transform 0.3s ease;
}

#Foto1 .top-white-fade, #Foto2 .top-white-fade {
    height: 400px; 
    width: 82%; 
    background: linear-gradient(180deg, #ffffff00 33.93%, #ffffff00 53.5%, #ffffff85 80.72%);}


#Foto1 .doctor-img-popout, #Foto2 .doctor-img-popout {
    max-height: 278px;
    border-radius: 5px;
}


/* Responsividade */
@media (max-width: 768px) {
    .about-bg-card, .top-white-fade {
        width: 75%;
    }

    .watermark-container {
        width: 80%;
        transform: translate(-50%, -50%);
    }
    #year-home {
        font-size: 45px;
        text-align: center;
        margin-top: 60px;
    }

     #year-about {
        font-size: 45px;
        text-align: center;
    }

     #year-about2 {
        font-size: 45px;
        margin-top: 20px;
        padding-right: 20px;
    }

    .about-description p {
        padding: 20px;
    }

    .doctor-img-popout {
        max-height: 400px;
    }

    .stature {
        min-height: 420px;
    }

}

/* ////////////////////////ABOUT PAGE \\\\\\\\\\\\\\\\\\\\\\\\\\\ */

#about-banner-1 {
    margin-top: 0px;
}

#about-banner-1 .about-bg-card {
    width: 90%;
}


#about-page-carroussel {
    gap: 0;
    padding: 0;
}

#about-page-carroussel .specialty-card-space-photos {
    flex: 0 0 100%;
    min-width: 100%;
    height: auto;
    border-radius: 0;
}

#about-page-carroussel .specialty-card-space-photos img {
    width: 100%;
    aspect-ratio: 16 / 5;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    object-position: center 63%;
}


/* Responsividade */
@media (max-width: 768px) {

    #Foto1 .doctor-img-popout {
    margin-left:80px;
    }

    #Foto1 {
    margin-bottom: 60px;
    }

    #Foto2 .doctor-img-popout {
    margin-right:80px;
    }

    #Foto1 .top-white-fade {
    width: 70%; 
    margin-left:80px;
    }

    #Foto2 .top-white-fade {
    width: 70%; 
    margin-right:80px;
    }

    #about-banner-1 .about-bg-card {
    width: 70%;
}

}

/* ////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\ */


.services-tags-section{padding:0px 25px 50px 20px;;text-align:center}

.tags-title{color:#fff;font-size:32px;font-weight:700;margin-bottom:40px}

.tags-container{margin:0 auto;max-width:1000px}

.tag{
    background-color: #EBDECC;
    color: #8C7F6C;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: transform .3s ease, background-color .3s ease;
    cursor: default;
    white-space: nowrap;
    }

.tag:hover{    
    transform: translateY(-3px);
    background: 0 0;
    border-color: #8C7F6C;
    box-shadow: 0 5px 15px #ba822f9e;}

@media(max-width:768px){
    
    .tags-title{font-size:24px}
}


.distinction-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
}

.grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: 200px; 
    gap: 20px;
    grid-template-areas: 
        "box-1 box-2 box-2"
        "box-4 box-4 box-3";
}

.box {
    background-color: #ffffff08;
    border-radius: 10px;
    border: 1px solid #ffffff14;
    overflow: hidden; 
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    background: #ffffff1a;
}


.box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


@media (max-width: 768px) {
    .distinction-section {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .box {
        width: 100%;
        height: 250px; 
    }
}


.specialty-card-space-photos {
    flex: 0 0 calc(33.33% - 20px); 
    min-width: 280px;
    height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.specialty-card-space-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*|||||||||||||||||||||||MÉDICOS DENTISTAS||||||||||||||||||||||*/

.specialties-section-team {
    padding: 0px 0;
}

.container-team {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.specialties-header-team {
    text-align: center;
    margin-bottom: 50px;
}

.specialties-subtitle-top-team {
    color: #8C7F6C;
    letter-spacing: 2px;
    font-size: 49px;
    margin-bottom: 10px;
    font-family: 'Catavalo', sans-serif;
}

.specialties-title-team {
    color: #8C7F6C;
    font-weight:200;
    font-size: 20px;
}

.specialties-team {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.specialty-card-team {
    min-width: 280px;
    height: 340px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.specialty-card-team img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.specialty-label-team {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

.specialty-label-team span {
    background: #fff;
    color: #5D544B;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 20px #0000001a;
}

.card-overlay-team {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #8C7F6C -0.03%, #ffffff00 100%);}

.specialty-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; } 

.specialty-name-team { 
    color: #8C7F6C; 
    font-size: 18px; 
    font-weight: 500; 
    text-align: center; }

.specialty-name-team {
    opacity: 1;
    transition: 0.4s; 
}

.specialty-item:hover .specialty-name-team {
    opacity: 0;
}
    
.specialties-team { 
    display: flex; 
    gap: 30px;
    justify-content: center; 
    flex-wrap: wrap; 
    padding: 20px 0; }


.card-overlay-team {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #8C7F6C -0.03%, #ffffff00 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0; /* Invisível */
    transition: opacity 0.4s ease; /* Transição suave */
    z-index: 2;
}

.hover-name {
    color: #fff;
    font-size: 16px;
    margin-bottom: 50px;
}

.hover-bio {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.specialty-card-team:hover .card-overlay-team {
    opacity: 1; 
}

.specialty-link {
    z-index: 3;
}
/*|||||||||||||||||||||||||||||||||||||||||||||||||||*/


:root {
  --card-beige: #d9cdba;    /* Fundo do retângulo */
}

.hero-section {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.content-box {
  background-color: var(--card-beige);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 50px;
  position: relative;
  min-height: 400px;
}

.text-content {
  flex: 1.5; /* Ocupa mais espaço que a imagem */
  padding-right: 50px;
  text-align: center;
}

.title {
  color: #8C7F6C;
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: 'Catavalo', serif;
}

.subtitle {
    color: #8C7F6C;
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.8;
    font-weight: 400;
}

.description {
    color: #515151;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 30px;
}

.image-wrapper {
  flex: 1;
  position: relative;
}

.image-wrapper img {
  position: absolute;
  bottom: -150px;
  right: -20px; 
  width: 320px;
  border-radius: 15px;
  box-shadow: 10px 10px 30px #0000001a;
}


@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .image-wrapper img {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
    .text-content {
        padding-right: 0;
    }

    .hero-section {
        padding: 20px;
    }
}


/*||||||||||||||||||||||||OPINION SECTION|||||||||||||||||||||||||||*/

.container-opinion {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.opinion-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 60px 0; 
    width: 100%;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.opinion-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.testimonial-card {
    position: relative;
    background-color: #DBCCB7;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    flex-direction: row; 
    align-items: center;
    box-sizing: border-box;
    height: 400px;
}

.text-section {
    background-color: #F3EBE0;
    padding: 40px 60px;
    border-radius: 0px 140px 0px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
    height: 401px;
    width: 700px;
    margin-left: 50px;
}

.main-text {
    color: #515151;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    padding: 30px;
    margin-top: 20px;
}
.rating {
    font-size: 30px;
    color: #8C7F6C;
    margin-top: -35px;
    letter-spacing: 2px;
    text-align: center;
}
.author-name {
    color: #8C7F6C;
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    width: 40%;
    height: 100%;
}

.image-container {
    width: 375px;
    height: 428px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -90px;
    margin-left: 40px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-icon {
    font-family: "Gelasio", serif;
    position: absolute;
    font-size: 200px;
    color: white;
    line-height: 1;
    opacity: 0.8;
    pointer-events: none;
    z-index: 10;
}
.quote-icon.top {top: 30px;left: 60px; }
.quote-icon.bottom {bottom: -120px; right: 590px;}



@media (max-width: 768px) {
    
    .opinion-carousel {
        padding: 20px 0;
    }

    .testimonial-card {
        flex-direction: column;
        max-width: 100%;
        padding: 20px;
        gap: 25px;
        height: 730px;
    }

    .text-section {
        margin-left: 0;
        padding: 30px 20px;
        border-radius: 0px 50px 0px 50px;
        height: 310px;
        width: 320px;
    }

    .main-text {
        padding: 10px 0;
        font-size: 14px;
    }

    .image-section {
        width: 100%;
        height: auto;
    }

    .image-container {
        width: 100%;
        max-width: 300px;
        height: 345px;
        margin-top: 0px;
        margin-left: 0;
    }

    .quote-icon {
        font-size: 110px;
    }

    .quote-icon.top {
        top: 40px;
        left: 20px;
    }

    .quote-icon.bottom {
        bottom: inherit;
        top: 39%;
        right: 30px;
    }
}

    /* Specialty cards*/
    .specialty-card > img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-overlay-specialty {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 16px 40px;
        pointer-events: none;
        z-index: 2;
    }

    .card-overlay-specialty img {
        width: clamp(270px, 62%, 280px);
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }


#coming-soon {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 50px;
    border-radius: 24px;
    margin: auto;
    background: rgba(219, 211, 211, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}







.cookie-banner, .cookie-modal-overlay {
    box-sizing: border-box;
    text-align: left;
}
.cookie-banner *, .cookie-modal-overlay * { box-sizing: border-box; }

.cookie-hidden { display: none !important; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    padding: 20px;
    border-top: 1px solid #eef2f5;
}

.cookie-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .cookie-container { flex-direction: column; align-items: flex-start; }
}
.cookie-text h3 { margin: 0 0 5px 0; font-size: 16px; color: #111827; font-weight: 700; }
.cookie-text p { margin: 0; font-size: 13px; color: #4b5563; line-height: 1.5; }
.cookie-text a { color: #8C7F6C; text-decoration: none; font-weight: 700; }
.cookie-text a:hover {text-decoration: underline;}

/* BOTÕES */
.cookie-buttons, .cookie-modal-footer { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 480px) {
    .cookie-buttons { width: 100%; flex-direction: column; }
}
.cookie-btn {
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.btn-accept {background: #8C7F6C; color: #ffff; }
.btn-accept:hover {background: #ffff; color: #8C7F6C; border-color: #8C7F6C; }

.btn-secondary {background: #ffff; color: #8C7F6C; border-color: #8C7F6C; }
.btn-secondary:hover {background: #8C7F6C; color: #ffff; }

.btn-danger {background: #8C7F6C; color: #ffff; }
.btn-danger:hover {background: #ffff; color: #8C7F6C; border-color: #8C7F6C; }

.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9999999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.cookie-modal-box {
    background: #fff;
    width: 100%; max-width: 650px;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
    animation: cookieSlideUp 0.3s ease-out;
}
@keyframes cookieSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.cookie-modal-header {
    padding: 20px; border-bottom: 1px solid #e5e7eb;
    display: flex; justify-content: space-between; align-items: center;
}
.cookie-modal-header h2 { margin: 0; font-size: 18px; color: #111827; }
.cookie-modal-close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: #9ca3af; }

.cookie-modal-body { padding: 20px; overflow-y: auto; font-size: 13px; color: #4b5563; line-height: 1.5; }

/* CATEGORIAS E INTERRUPTORES (TOGGLES) */
.cookie-category-item { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 15px; margin-top: 12px; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; color: #111827; font-size: 14px; }
.cookie-status-always { color: #16a34a; font-weight: 600; margin-left: 10px; font-size: 12px; }

/* Switch Slider */
.cookie-switch { 
    position: relative; 
    display: inline-block; 
    width: 36px !important; 
    height: 20px !important; 
    cursor: pointer;
}

.cookie-switch input { 
    position: absolute !important;
    opacity: 0 !important; 
    width: 1px !important; 
    height: 1px !important; 
    overflow: hidden !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    clip: rect(0 0 0 0) !important;
    pointer-events: none !important;
}

.cookie-slider { 
    position: absolute; 
    cursor: pointer; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background-color: #d1d5db; 
    transition: .3s; 
    border-radius: 20px; 
}

.cookie-slider:before { 
    position: absolute; 
    content: ""; 
    height: 14px; 
    width: 14px; 
    left: 3px; 
    bottom: 3px; 
    background-color: white; 
    transition: .3s; 
    border-radius: 50%; 
}

.cookie-switch input:checked + .cookie-slider { 
    background-color: #8C7F6C !important; 
}

.cookie-switch input:checked + .cookie-slider:before { 
    transform: translateX(16px); 
}

.cookie-modal-footer { padding: 20px; border-top: 1px solid #e5e7eb; justify-content: flex-end; background: #f9fafb; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;}

.cookie-text-hidden {
    display: none;
}

.cookie-toggle-link {
    color: #8C7F6C;
    text-decoration: none !important;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
    display: inline-block;
}

.cookie-toggle-link:hover, .cookie-toggle-link:focus, .cookie-toggle-link:active {
    text-decoration: none !important; 
    outline: none !important;
    color: #8C7F6C;
}




.cookie-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-badge, .provider-badge {
    background-color: #e5e7eb;
    color: #1f2937;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.cookie-accordion, .cookie-provider-item {
    display: block;
}

.cookie-accordion-trigger::-webkit-details-marker,
.cookie-provider-trigger::-webkit-details-marker {
    display: none !important;
}
.cookie-accordion-trigger, .cookie-provider-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    list-style: none !important;
    cursor: pointer;
    outline: none;
}

.cookie-accordion-trigger span:first-child {
    max-width: 90%;
    display: block;
}

.cookie-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #4b5563;
    border-bottom: 2px solid #4b5563;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 5px;
    flex-shrink: 0;
}
.cookie-accordion[open] .cookie-arrow {
    transform: rotate(-135deg);
}

.cookie-accordion-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e5e7eb;
}

.cookie-providers-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cookie-provider-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}
.cookie-provider-trigger {
    padding: 12px 15px;
    background: #ffffff;
}
.provider-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.provider-info strong {
    font-size: 13px;
    color: #111827;
}

.cookie-arrow-small {
    width: 6px;
    height: 6px;
    border-right: 2px solid #4b5563;
    border-bottom: 2px solid #4b5563;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.cookie-provider-item[open] .cookie-arrow-small {
    transform: rotate(-135deg);
}

.cookie-provider-content {
    padding: 12px 15px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}
.provider-link {
    color: #4b5563 !important;
    font-size: 12px;
    text-decoration: underline !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.provider-link:hover {
    color: #8C7F6C !important;
}


.cookie-detail-box {
    background: #f3f4f6 !important; /* Cor cinza clara de fundo */
    border-radius: 8px !important;
    margin-top: 15px;
    overflow: hidden;
}

.cookie-detail-trigger::-webkit-details-marker { display: none !important; }
.cookie-detail-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    list-style: none !important;
    padding: 15px;
    cursor: pointer;
    outline: none;
}
.cookie-detail-trigger strong {
    font-size: 13px;
    color: #111827;
    font-weight: 700;
}

.cookie-arrow-tiny {
    width: 5px;
    height: 5px;
    border-right: 2px solid #4b5563;
    border-bottom: 2px solid #4b5563;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 5px;
}
.cookie-detail-box[open] .cookie-arrow-tiny {
    transform: rotate(-135deg);
}

.cookie-detail-info {
    padding: 0 15px 15px 15px;
    font-size: 12px;
    color: #1f2937;
    line-height: 1.5;
}
.cookie-detail-desc {
    margin: 0 0 12px 0;
}
.cookie-detail-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.cookie-detail-specs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.cookie-detail-specs div {
    font-size: 12px;
    color: #4b5563;
}
.cookie-detail-specs strong {
    color: #111827;
}




.container-botao {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0;
}

.video-banner {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.play-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
    transform 0.4s ease,
    background-color 0.4s ease;
    z-index: 2;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-icon-img {
    width: 60%;
    height: 60px;
    object-fit: contain;
}

.video-modal-overlay {
    position: fixed !important; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999 !important; 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 85%; 
    max-width: 400px;       
    max-height: 85vh;
    background: transparent;  
    border-radius: 16px;
    overflow: visible;  
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: -45px;
    right: -50px;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #eb5b5b; 
}

.close-btn:focus-visible {
    outline: none;
}

.video-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-banner:hover .play-icon-container {
    transform: translate(-50%, -50%) scale(1.12);
}


@media (max-width: 576px) {
    .close-btn {
        top: -40px;
        right: -20px;
    }
    
    .video-modal-content{
        width:70%;
    }
}


@media (max-width: 768px) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: normal !important;
    height: 40px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}




