@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* ==============================
   RESET CSS & CONFIGURAÇÃO GLOBAL
   ============================== */

/* Reset CSS para padronizar estilos entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #091a3b;
    line-height: 1.6;
}

/* ==============================
   VARIÁVEIS CSS
   ============================== */

:root {
    --primary-color: #091a3b;  /* Azul escuro */
    --secondary-color: #c09652; /* Dourado metálico */
    --accent-color: #ef7a03;   /* Laranja para destaques */
    --text-color: #091a3b;
    --bg-light: #f8f8f8;
    --font-main: 'DM Sans', sans-serif;
    --font-header: 'Exo 2', sans-serif;
}

/* ==============================
   ESTILOS GERAIS
   ============================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #d96a02;
}

/* ==============================
   UTILITÁRIOS GERAIS
   ============================== */

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

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

.hidden {
    display: none;
}

/* ==============================
   CONTINUAÇÃO DA ESTILIZAÇÃO NAS PRÓXIMAS ETAPAS
   ============================== */

   /* ==============================
   Barra superior com ícones sociais
   ============================== */
.top-bar {
    background-color: #28324E; /* Cor de fundo da barra superior */
    padding: 8px 0;
    width: 100%;
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilização dos ícones sociais */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

.social-icons img {
    width: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover img {
    filter: brightness(1); /* Ícones coloridos ao passar o mouse */
}

/* Responsividade - Ajuste para mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }

    .social-icons a {
        width: 25px; /* Ícones menores para mobile */
        height: 25px;
    }
}

/* ==============================
   HEADER & MENU
   ============================== */

   .header {
    background-color: #fff;
    padding: 15px 0;
    width: 100%;
    max-width: 100vw; /* Evita que ele ultrapasse a largura da tela */
    overflow: hidden; /* Remove qualquer conteúdo extra que possa expandir */
    height: 110px;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--font-header);
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza todo o conteúdo */
    height: 13vh;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* Adiciona um espaçamento para evitar que fique grudado nas bordas */
}

.logo img {
    height: 120px;
    margin-top: 10px;
}

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
    font-family: var(--font-header);
}

.menu ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    transition: 0.3s;
    font-family: var(--font-header);
}

.menu ul li a:hover {
    color: var(--secondary-color);
}

/* Impede rolagem lateral quando o menu está ativo */
body.menu-open {
    overflow: hidden;
}

/* Estilização do botão "Seja um Franqueado" */
.cta-button {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-franquia {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 8px 22px; /* Ajusta o espaçamento interno */
    font-size: 15px !important; 
    border-radius: 0px; /* Arredondamento leve conforme referência */
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    height: auto;
    display: inline-block;
    text-align: center;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma leve sombra */
}

.btn-franquia:hover {
    background-color: var(--primary-color);
    transform: scale(1.05); /* Efeito leve ao passar o mouse */
}

/* Botão hamburguer visível */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1101; /* Garante que o botão fique acima */
}

/* Ícones do hamburguer */
.menu-toggle span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}

/* Transformação do ícone para "X" */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* RESPONSIVIDADE */
/* Garante que o menu tenha prioridade */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        right: -250px; /* Escondido */
        width: 250px;
        max-width: 100vw;
        height: 100vh;
        background: var(--primary-color);
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

        .header-container {
        padding: 0 15px; /* Ajusta o espaçamento lateral no mobile */
    }


    .menu.active {
        right: 0; /* Exibir menu */
    }

    .menu ul {
        flex-direction: column;
        padding: 0;
    }

    .menu ul li {
        margin: 15px 20px;
    }

    .menu ul li a {
        color: #fff;
        font-size: 18px;
    }

    .menu ul li a:hover {
        color: var(--secondary-color);
    }

    .logo img {
        height: 90px;
    }

    .menu-toggle {
        display: block;
    }
}


/* Ajusta o container do slider */
.slider {
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

/* Estiliza os slides */
.slider .slide {
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ajusta a imagem do slide */
.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Conteúdo sobre a imagem */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    max-width: 600px;
    z-index: 10;
}

/* Estilização do título */
.slide-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff !important;
    line-height: 1.3;
}

/* Estilização do subtítulo */
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 500px;
}

/* Botão de agendamento */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Efeito hover no botão */
.whatsapp-button:hover {
    background-color: #1ebe5d;
}

.slider-mobile {
    display: none;
}

.slide-mobile {
    display: none;
}

/* Responsividade */
@media (max-width: 1024px) {
    .slider {
        height: 500px;
    }
    .slider .slide {
        height: 500px;
    }
    .slide-content {
        left: 5%;
        max-width: 500px;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .slider.single-item {
        display: none !important;
    }

    .mobile-slider {
        display: block;
        width: 100%;
        height: 400px;
        position: relative;
        margin-top: 50px;
        overflow: hidden;
    }
    
    .slider {
        height: 400px;
    }
    .slider .slide {
        height: 400px;
    }
    .slide-content {
        left: 5%;
        max-width: 400px;
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 300px;
    }
    .slider .slide {
        height: 300px;
    }
    .slide-content {
        left: 5%;
        max-width: 300px;
    }
    .slide-content h2 {
        font-size: 1.4rem;
    }
    .slide-content p {
        font-size: 0.85rem;
    }
    .whatsapp-button {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

/* Esconde o slider em telas maiores que 768px */
.mobile-slider {
    display: none !important;
}

/* Estiliza apenas em telas menores que 768px */
@media (max-width: 768px) {
    .mobile-slider {
        display: block !important;
        width: 100%;
        height: 400px;
        position: relative;
        margin-top: 5px;
        overflow: hidden;
    }

    .mobile-slide {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Centraliza o conteúdo no meio do slide */
    .mobile-slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center; /* Centraliza o texto */
        max-width: 90%;
        width: 400px;
        z-index: 10;
    }

    .mobile-slide-content h2 {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #fff !important;
        line-height: 1.3;
    }

    .mobile-slide-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        max-width: 350px;
        margin: 0 auto; /* Centraliza o parágrafo */
    }

    .mobile-whatsapp-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #25d366;
        color: white;
        font-size: 0.95rem;
        font-weight: bold;
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        transition: 0.3s ease-in-out;
        margin: 0 auto; /* Centraliza o botão */
    }

    .mobile-whatsapp-button i {
        font-size: 1.3rem;
        margin-right: 8px;
    }

    /* Efeito hover no botão */
    .mobile-whatsapp-button:hover {
        background-color: #1ebe5d;
    }
}

/* Ajuste para telas menores que 480px */
@media (max-width: 480px) {
    .mobile-slider {
        height: 700px;
    }

    .mobile-slide-content {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
    }

    .mobile-slide-content h2 {
        font-size: 2.1rem;
    }

    .mobile-slide-content p {
        font-size: 1.0rem;
        max-width: 90%;
        line-height: 1.8rem;
        margin-top: 15px;
    }

    .mobile-whatsapp-button {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin-top: 30px;
    }
}
    
    /* Seção de Informações */
    .info-section {
        width: 100%;
        padding: 80px 0; /* Margem superior e inferior */
        background-color: #ffffff; /* Fundo branco */
    }

    .info-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .info-text {
        width: 50%;
        color: var(--primary-color); /* Roxo escuro da paleta */
        font-family: 'Exo 2', sans-serif;
    }

    .info-text h1 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .info-text h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .info-text p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .info-text a {
        color: #4A014D;
        text-decoration: underline;
        font-weight: bold;
    }

    .info-text h3 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .benefits-list {
        list-style: none; /* Remove os marcadores padrão */
        padding-left: 0;
    }
    
    .benefits-list li {
        position: relative;
        padding-left: 20px; /* Espaço para o ícone */
        font-size: 1.0rem;
        margin-bottom: 10px;
    }
    
    .benefits-list li::before {
        content: "●"; /* Círculo preenchido */
        position: absolute;
        left: 0;
        top: 0px;
        font-size: 1.2rem;
        color: var(--secondary-color); /* Usa a cor secundária da paleta */
    }

    .btn-action {
        display: inline-block;
        margin-top: 22px;
        background: var(--secondary-color); /* Cor secundária da paleta */
        color: white;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: 2px solid var(--secondary-color);
        padding: 14px 50px;
        font-size: 1.1rem;
        border-radius: 0px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .btn-action:hover {
        background: transparent;
        color: var(--secondary-color);
        border: 2px solid var(--secondary-color);
    }

    .info-image {
        width: 45%;
    }

    .info-image img {
        width: 100%;

    }

    /* RESPONSIVIDADE DA SEÇÃO DE INFORMAÇÕES */
    @media (max-width: 1024px) {
        .info-content {
            flex-direction: column;
            text-align: center;
        }

        .info-text {
            width: 80%;
        }

        .info-image {
            width: 80%;
            margin-top: 30px;
        }
    }

    @media (max-width: 768px) {
        .info-text {
            width: 90%;
        }

        .info-text h2 {
            font-size: 1.8rem;
        }

        .info-text p {
            font-size: 0.95rem;
        }

        .benefits-list li {
            font-size: 0.9rem;
        }

        .btn-action {
            font-size: 1rem;
            padding: 12px 40px;
        }

        .info-image {
            width: 90%;
        }
    }

    @media (max-width: 480px) {
        .info-section {
            padding: 50px 0;
        }

        .info-text {
            width: 100%;
            padding: 0 15px;
        }

        .info-text h2 {
            font-size: 1.6rem;
        }

        .info-text h1 {
            line-height: 1.3;
            font-size: 1.8rem;
        }

        .info-text p {
            font-size: 0.9rem;
        }

        .benefits-list li {
            font-size: 0.85rem;
        }

        .btn-action {
            font-size: 0.9rem;
            padding: 10px 30px;
        }

        .info-image {
            width: 100%;
        }
    }

    /* Estilização da Seção de Depoimentos */
    .testimonials {
        text-align: center;
        padding: 60px 20px;
        background-color: #ffffff;
    }

    .testimonials-header {
        max-width: 600px;
        margin: 0 auto;
        text-align: left; /* Alinha o conteúdo à esquerda */
        position: relative;
    }

    .quote-icon {
        position: absolute;
        left: 0px; /* Ajuste fino para posicionamento */
        top: 5px; /* Ajuste para alinhar melhor */
        width: 100px; /* Reduz o tamanho */
        height: auto;
    }

    .quote-icon img {
        width: 100%; /* Mantém a proporção */
        opacity: 0.5; /* Deixa mais sutil */
    }

    .testimonials-header h2 {
        font-family: var(--font-header);
        font-size: 2rem;
        color: var(--secondary-color);
        font-weight: bold;
        margin-left: 120px; /* Dá um espaçamento para o texto não sobrepor */
    }

    .testimonials-header p {
        font-family: var(--font-main);
        font-size: 1rem;
        color: var(--primary-color);
        margin-left: 120px;
    }

    /* Estilização dos vídeos */
    .testimonials-videos {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .video {
        position: relative;
        width: 400px;
        height: 200px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .video img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        font-size: 2rem;
        padding: 10px 15px;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .play-button:hover {
        background: var(--secondary-color);
    }

    /* RESPONSIVIDADE DA SEÇÃO DE DEPOIMENTOS */
    @media (max-width: 1024px) {
        .testimonials-header {
            text-align: center;
        }

        .testimonials-header h2,
        .testimonials-header p {
            margin-left: 0;
        }

        .quote-icon {
            left: 0;
            width: 80px;
        }
    }

    @media (max-width: 768px) {
        .testimonials {
            padding: 50px 15px;
        }

        .testimonials-videos {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .video {
            width: 85%;
            height: auto;
        }

        .quote-icon {
            display: none; /* Remove a citação decorativa para telas menores */
        }
    }

    @media (max-width: 480px) {
        .testimonials {
            padding: 40px 10px;
        }

        .testimonials-header h2 {
            font-size: 1.8rem;
            line-height: 1.3;
        }

        .testimonials-header p {
            font-size: 0.9rem;
        }

        .video {
            width: 100%;
            height: auto;
        }

        .play-button {
            font-size: 1.5rem;
            padding: 8px 12px;
        }
    }

/* Seção do CEO com imagem de fundo */
.ceo-section {
    background: url('/img/novos-horizontes-bg.webp') no-repeat center center;
    background-size: cover; /* Faz com que a imagem cubra todo o espaço */
    background-attachment: fixed; /* Mantém o efeito de paralaxe */
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Aplicando um overlay para melhorar a leitura do texto */
.ceo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5 /* Efeito escurecido para contraste */
}

/* Conteúdo da seção */
.ceo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Texto da seção */
.ceo-text {
    max-width: 500px;
    color: var(--primary-color);
    font-family: var(--font-main);
}

.ceo-text h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.ceo-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Botão de vídeo */
.btn-video {
    margin-top: 20px;
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-video:hover {
    background: var(--tertiary-color);
}

.video-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Imagem do CEO */
.ceo-image {
    width: 400px;
    height: 400px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVIDADE DA SEÇÃO DO CEO */
@media (max-width: 1024px) {
    .ceo-content {
        gap: 30px;
    }

    .ceo-text {
        max-width: 450px;
    }

    .ceo-text h2 {
        font-size: 2rem;
    }

    .ceo-text p {
        font-size: 0.95rem;
    }

    .ceo-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .ceo-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .ceo-text {
        max-width: 100%;
    }

    .ceo-image {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .ceo-section {
        padding: 40px 15px;
    }

    .ceo-text h2 {
        font-size: 1.8rem;
    }

    .ceo-text p {
        font-size: 0.9rem;
    }

    .btn-video {
        font-size: 0.9rem;
        padding: 8px 15px;
        margin-left: 80px;
    }

    .ceo-image {
        width: 250px;
        height: 250px;
    }
}

    /* Estilização do Carrossel */
    .treatments-carousel {
        text-align: center;
        padding: 50px 0;
    }

    .treatments-header h2 {
        font-size: 2rem;
        color: var(--primary-color);
    }


    .dentist-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 100%;
    }
    
    .dentist-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 80%; /* Ajuste conforme necessário */
        max-width: 900px;
        margin-top: 100px;
    }
    
    .dentist-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 300%; /* 100% para cada slide, 3 slides no total */
    }
    
    .dentist-slide {
        flex: 0 0 100%; /* Cada slide ocupa 100% da largura do container */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .dentist-image {
        width: 250px;
        height: 300px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .dentist-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .dentist-info {
        text-align: left;
        max-width: 400px;
    }
    
    .dentist-icon {
        font-size: 2rem;
        color: var(--primary-color);
    }
    
    .dentist-info h2 {
        font-size: 1.8rem;
        color: var(--primary-color);
        font-weight: bold;
    }
    
    .dentist-info p {
        font-size: 1rem;
        color: var(--text-color);
        margin: 10px 0 20px;
    }
    
    .btn-dentist {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 12px 20px;
        border-radius: 0px;
        cursor: pointer;
        transition: background 0.3s;
        border: none;
    }
    
    .btn-dentist:hover {
        background-color: var(--primary-color);
    }
    
    /* Botões do carrossel */
    .dentist-prev,
    .dentist-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary-color);
    }
    
    .dentist-prev {
        left: -50px;
    }
    
    .dentist-next {
        right: -50px;
    }

    /* RESPONSIVIDADE DA SEÇÃO DOS DENTISTAS */
    @media (max-width: 1024px) {
        .dentist-container {
            width: 90%;
        }

        .dentist-slide {
            flex-direction: column;
            text-align: center;
            gap: 20px;
            padding: 30px;
        }

        .dentist-image {
            width: 200px;
            height: 250px;
        }

        .dentist-info {
            max-width: 100%;
            text-align: center;
        }

        .dentist-prev, .dentist-next {
            font-size: 1.8rem;
            top: 50%;
        }
    }

    @media (max-width: 768px) {
        .dentist-container {
            width: 95%;
        }

        .dentist-track {
            width: 100%;
        }

        .dentist-slide {
            width: 100%;
            flex-direction: column;
            padding: 25px;
        }

        .dentist-image {
            width: 180px;
            height: 230px;
        }

        .dentist-info h2 {
            font-size: 1.5rem;
        }

        .dentist-info p {
            font-size: 0.9rem;
        }

        .btn-dentist {
            font-size: 0.9rem;
            padding: 10px 18px;
        }

        .dentist-prev, .dentist-next {
            font-size: 1.5rem;
            top: 55%;
        }
    }

    @media (max-width: 480px) {
        .dentist-container {
            width: 100%;
        }

        .dentist-slide {
            padding: 20px;
        }

        .dentist-image {
            width: 150px;
            height: 200px;
        }

        .dentist-info h2 {
            font-size: 1.3rem;
        }

        .dentist-info p {
            font-size: 0.85rem;
        }

        .btn-dentist {
            font-size: 0.85rem;
            padding: 8px 15px;
        }

        .dentist-prev, .dentist-next {
            font-size: 1.3rem;
            top: 58%;
        }
    }

    /* Seção principal */
.acesso-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 700px;
    background-color: #fff;
    overflow: hidden;
}

/* Texto à esquerda */
.acesso-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-right: 5%;
    color: var(--primary-color);
}

/* Título */
.acesso-text h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Texto */
.acesso-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Botão */
.btn-agendar {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn-agendar:hover {
    background: var(--tertiary-color);
}

/* Imagem ocupando 100% do lado direito */
.acesso-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.acesso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .acesso-text h2 {
        font-size: 2rem;
    }

    .acesso-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .acesso-section {
        flex-direction: column;
        height: auto;
    }

    .acesso-content {
        width: 100%;
        text-align: center;
        padding: 40px 5%;
    }

    .acesso-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .acesso-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .acesso-text p {
        font-size: 0.95rem;
    }

    .btn-agendar {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .acesso-image {
        height: 250px;
    }
}

/* Estilização da seção */
.identidade-section {
    background-color: #fff; /* Fundo branco */
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container para alinhar conteúdo */
.identidade-container {
    text-align: center;
    max-width: 800px;
    width: 90%;
}

/* Logo */
.identidade-logo {
    max-width: 200px; /* Ajusta o tamanho da logo */
    width: 100%;
    margin-bottom: 20px; /* Espaço entre logo e texto */
}

/* Texto */
.identidade-texto {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsividade */
@media (max-width: 768px) {
    .identidade-texto {
        font-size: 1rem;
    }
}

.publico-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    overflow: hidden;
    background-color: #fff;
}

/* Imagem à esquerda ocupando metade da tela */
.publico-image {
    width: 50%;
    height: 100%;
}

.publico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texto à direita */
.publico-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left; 
    width: 50%;
    padding: 0 5%;
}

.publico-text {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 1024px) {
    .publico-content {
        width: 50%;
        padding: 0 5%;
    }

    .publico-text {
        width: 100%;
    }

    .publico-text h2 {
        font-size: 1.6rem;
    }

    .publico-text p {
        font-size: 1rem;
    }
}

/* Telas menores: Imagem e texto em coluna */
@media (max-width: 768px) {
    .publico-section {
        flex-direction: column;
    }

    .publico-image {
        width: 100%;
        height: 300px;
    }

    .publico-content {
        width: 100%;
        text-align: center;
        padding: 40px 5%;
    }

    .publico-text {
        max-width: 90%;
    }

    .publico-text h2 {
        font-size: 1.8rem;
    }

    .publico-text p {
        font-size: 0.95rem;
    }
}

/* Ajustes para telas menores que 480px */
@media (max-width: 480px) {
    .publico-text {
        width: 100%;
        padding: 0 20px;
    }

    .publico-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .publico-text p {
        font-size: 1.0rem;
    }

    .publico-image {
        height: 250px;
    }
}


    .faq-section {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Ocupará 100% da altura da tela */
        background: var(--primary-color);
        margin-top: 100px;
    }
    
    .faq-content {
        display: flex;
        width: 100%;
        max-width: 1600px;
        height: 100%;
    }
    
    .faq-text {
        width: 50%; /* Ocupa 50% da tela */
        padding: 60px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .faq-text h2 {
        font-size: 2.5rem;
        font-family: var(--font-header);
        font-weight: bold;
    }
    
    .faq-text p {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Itens do FAQ */
    .faq-item {
        border-bottom: 1px solid var(--secondary-color);
        padding: 15px 0;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-question {
        background: none;
        border: none;
        font-size: 1.2rem;
        color: white;
        width: 100%;
        text-align: left;
        cursor: pointer;
        padding: 10px;
        font-family: var(--font-main);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .faq-answer {
        display: none;
        font-size: 1rem;
        padding: 10px 15px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Botão */
    .btn-primary {
        background-color: var(--tertiary-color);
        color: white;
        padding: 12px 25px;
        border-radius: 0px;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 20px;
    }
    
    .btn-primary:hover {
        background: var(--secondary-color);
    }
    
    /* Imagem ocupa 50% da tela */
    .faq-image {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .faq-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Faz com que a imagem ocupe toda a área */
    }
    

    /* RESPONSIVIDADE DA SEÇÃO FAQ */
    @media (max-width: 1024px) {
        .faq-content {
            width: 100%;
            gap: 20px;
            flex-direction: column;
            align-items: center;
        }
    
        .faq-text {
            width: 90%;
            text-align: center;
            padding: 40px;
        }
    
        .faq-text h2 {
            font-size: 2rem;
        }
    
        .faq-text p {
            font-size: 1.1rem;
        }
    
        .faq-question {
            font-size: 1rem;
            text-align: left;
        }
    
        .faq-answer {
            font-size: 0.95rem;
        }
    
        .faq-image {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
        }
    
        .faq-image img {
            width: 100%;
            height: auto;
            max-width: 500px;
        }
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 40px 0;
        }
    
        .faq-content {
            width: 90%;
            flex-direction: column;
            align-items: center;
        }
    
        .faq-text {
            width: 100%;
            text-align: center;
            padding: 30px;
        }
    
        .faq-text h2 {
            font-size: 1.8rem;
        }
    
        .faq-text p {
            font-size: 1rem;
        }
    
        .faq-question {
            font-size: 1rem;
            text-align: left;
        }
    
        .faq-answer {
            font-size: 0.9rem;
        }
    
        .faq-image {
            width: 100%;
            display: flex;
            justify-content: center;
            order: -1; /* Move a imagem para cima */
        }
    
        .faq-image img {
            max-width: 90%;
            height: auto;
        }
    }
    
    @media (max-width: 480px) {
        .faq-text {
            width: 100%;
            padding: 20px;
        }
    
        .faq-text h2 {
            font-size: 1.8rem;
        }
    
        .faq-text p {
            font-size: 0.95rem;
        }
    
        .faq-question {
            font-size: 0.95rem;
        }
    
        .faq-answer {
            font-size: 0.85rem;
        }
    
        .faq-image img {
            max-width: 100%;
        }
    
        .btn-primary {
            font-size: 0.85rem;
            padding: 8px 18px;
        }
    }
    
    .form-section-divider {
        width: 100%;
        height: 16px; /* Ajuste conforme necessário */
        background: #c09652;
        padding-top: 30px; /* Espaço entre o divisor e o formulário */
    }
/* Seção de formulário de contato */
.contact-form-section {
    background: var(--primary-color);
    padding: 50px 0;
    text-align: center;
    color: white;
    padding-top: 120px;
}
.contact-container {
    max-width: 600px;
    margin: auto;
}
.form-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #c09652;
}
.form-header p {
    font-size: 16px;
    margin-bottom: 20px;
}
.contact-form .form-group {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.input-container {
    position: relative;
    width: 100%;
}
.input-container input, .input-container select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: #f9f9f9;
}
.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #c09652;
}
.btn-submit {
    background: #c09652;
    color: white;
    padding: 14px 30px;
    border-radius: 0px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #b0853e;
}


    /* RESPONSIVIDADE DO FORMULÁRIO DE CONTATO */
    @media (max-width: 1024px) {
        .contact-container {
            max-width: 80%;
        }
    
        .form-header h2 {
            font-size: 2rem;
        }
    
        .form-header p {
            font-size: 1.1rem;
        }
    
        .contact-form .form-group {
            flex-direction: column; /* Empilhar inputs */
            gap: 20px;
        }
    
        .input-container input,
        .input-container select {
            font-size: 1rem;
            padding: 12px;
        }
    
        .btn-submit {
            font-size: 1rem;
            padding: 12px 25px;
        }
    }
    
    @media (max-width: 768px) {
        .contact-form-section {
            padding: 50px 0;
        }
    
        .contact-container {
            width: 90%;
        }
    
        .form-header h2 {
            font-size: 1.8rem;
        }
    
        .form-header p {
            font-size: 1rem;
        }
    
        .contact-form .form-group {
            flex-direction: column;
            gap: 15px;
        }
    
        .input-container input,
        .input-container select {
            font-size: 0.95rem;
            padding: 10px;
        }
    
        .btn-submit {
            font-size: 0.95rem;
            padding: 10px 20px;
        }
    }
    
    @media (max-width: 480px) {
        .contact-container {
            width: 95%;
        }
    
        .form-header h2 {
            font-size: 1.8rem;
            line-height: 1.3;
        }
    
        .form-header p {
            font-size: 0.95rem;
        }
    
        .contact-form .form-group {
            flex-direction: column;
            gap: 10px;
        }
    
        .input-container input,
        .input-container select {
            font-size: 0.9rem;
            padding: 8px;
        }
    
        .btn-submit {
            font-size: 0.9rem;
            padding: 8px 18px;
        }
    }

.carrossel-tratamentos-header {
    text-align: center; 
    margin-bottom: 80px; 
    margin-top: 40px;
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.carrossel-tratamentos-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.carrossel-tratamentos-header p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
}
.carrossel-tratamentos-container {
    background: #c09652; 
    padding: 60px 0;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

/* Estilizando os slides */
.carrossel-tratamentos .tratamento-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px; 
}

.carrossel-tratamentos .tratamento-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(100%); 
    transition: filter 0.5s ease-in-out; 
}

.carrossel-tratamentos .tratamento-slide:hover img {
    filter: grayscale(0%);
}

.tratamento-info {
    position: absolute;
    bottom: 0;
    background: rgba(10, 30, 50, 0.9); 
    color: white;
    padding: 20px;
    width: 100%;
    text-align: center;
}

.tratamento-info h3 {
    font-size: 1.4rem;
    font-weight: bold;
}

.tratamento-info p {
    font-size: 1rem;
    margin-top: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .carrossel-tratamentos-header {
        padding: 15px 8%; /* Ajusta o padding no mobile */
    }

    .carrossel-tratamentos-header h2 {
        font-size: 1.8rem; /* Diminui o tamanho do título */
    }

    .carrossel-tratamentos-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carrossel-tratamentos-header {
        padding: 15px 5%; /* Reduz padding para telas muito pequenas */
    }

    .carrossel-tratamentos-header h2 {
        font-size: 1.8rem; /* Mantém legível sem ocupar muito espaço */
        line-height: 1.3;
    }

    .carrossel-tratamentos-header p {
        font-size: 1.1rem;
    }
}

.slick-slide {
    margin: 0 5px; 
}

.slick-dots {
    bottom: -40px !important;
    display: flex !important;
    justify-content: center;
}
.slick-dots li button:before {
    font-size: 16px;
    color: white;
    opacity: 0.6;
}

.slick-dots li.slick-active button:before {
    color: gold;
}

.slick-prev, .slick-next {
    font-size: 24px;
    color: white !important;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.slick-prev:hover, .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: -50px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slick-next {
    right: -50px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-divider {
    width: 65%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2); /* Linha sutil branca com transparência */
    margin: 20px 0; /* Espaço para separar do conteúdo */
    margin-left: 370px;
}
    
    /* Estilização geral do rodapé */
    .footer {
        background: #091a3b;
        color: white;
        padding: 40px 0;
        text-align: center;
    }


    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
        padding: 40px 20px;
        height: 40vh;
    }
    .footer-logo img {
        max-width: 200px;
        margin-bottom: 15px;
        border-radius: 30px;
    }
    .footer-logo p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }
    
    .footer-nav {
        flex: 2;
        display: flex;
        justify-content: center;
        gap: 80px;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column h4 {
        font-size: 16px;
        font-weight: bold;
        color: #c09652; /* Cor do título */
        margin-bottom: 10px;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .footer-column ul li a:hover {
        color: #c09652;
    }
    
    .footer-social {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .social-icons {
        display: flex;
        gap: 15px;
    }
    
    .social-icons a {
        color: white;
        font-size: 14px;
        text-decoration: none;
    }
    
    .social-icons a:hover {
        color: #c09652;
    }

    /* RESPONSIVIDADE DO RODAPÉ */
    @media (max-width: 1024px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
            height: auto;
            text-align: center;
        }
    
        .footer-logo {
            margin-bottom: 20px;
            text-align: center;
        }
    
        .footer-nav {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
    
        .footer-social {
            align-items: center;
            margin-top: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .footer-container {
            padding: 30px 10px;
            text-align: center;
        }
    
        .footer-logo img {
            max-width: 180px;
            display: block;
            margin: 0 auto;
        }
    
        .footer-nav {
            gap: 15px;
        }
    
        .footer-column {
            width: 100%;
            text-align: center;
        }
    
        .footer-social {
            margin-top: 15px;
        }
    
        .social-icons {
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .footer {
            padding: 25px 0;
        }
    
        .footer-logo img {
            max-width: 140px;
        }
    
        .footer-nav {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
    
        .footer-column h4 {
            font-size: 14px;
        }
    
        .footer-column ul li {
            font-size: 13px;
        }
    
        .footer-social {
            margin-top: 15px;
        }
    
        .social-icons {
            gap: 8px;
        }
    
        .social-icons a img {
            width: 20px;
            height: 20px;
        }
    
        .footer-bottom {
            padding: 8px;
            font-size: 12px;
        }
    }


    



