/* ============================================
   RESET DE OVERLAYS E GARANTIA DE CONTRASTE
   ============================================ */

/* Remove TODOS os overlays e fundos cinza */
*, *::before, *::after {
    /* Garantir que nenhum elemento tenha fundo cinza por padrão */
}

/* Garantir fundo branco em todas as seções de conteúdo */
section {
    background: var(--cor-branca);
}

/* Exceções: apenas Hero e Filosofia tem fundo azul */
.hero,
.filosofia {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
}

/* Footer também tem fundo escuro */
.footer {
    background: var(--cor-primaria);
}

/* Garantir contraste em TODOS os textos */
p, span, li, a, label, input, textarea {
    color: var(--cor-texto);
}

/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
    /* Cores do Guia de Identidade Visual */
    --cor-primaria: #1B2B53;
    --cor-secundaria: #114364;
    --cor-dourada: #D4AF37;
    --cor-branca: #FFFFFF;
    --cor-off-white: #F7F7F7;
    --cor-texto: #1B2B53;
    --cor-texto-claro: #333333;
    
    /* Tipografia - Guia de Identidade Visual */
    --fonte-titulo: 'Playfair Display', serif;
    --fonte-texto: 'DM Sans', sans-serif;
    
    /* Espaçamentos */
    --espacamento-pequeno: 1rem;
    --espacamento-medio: 2rem;
    --espacamento-grande: 4rem;
    
    /* Transições */
    --transicao-padrao: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fonte-texto);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cor-branca);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cor-primaria);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

/* ============================================
   GARANTIA DE CONTRASTE E FUNDO BRANCO
   ============================================ */

/* TODAS as seções de conteúdo devem ter fundo branco ou off-white */
section {
    background: var(--cor-branca);
}

/* Seções específicas com off-white para variação visual */
section.atuacao,
section.faq {
    background: var(--cor-off-white);
}

/* Apenas Hero e Filosofia têm fundo azul escuro */
section.hero,
section.filosofia {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: var(--cor-branca);
}

/* PROIBIDO: Nenhum overlay cinza ou escuro */
/* PROIBIDO: Nenhum rgba() com opacity sobre texto */
/* GARANTIDO: Todos os textos têm alto contraste */

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--espacamento-grande) 0;
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.header {
    background: var(--cor-branca);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transicao-padrao);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
    position: relative;
    padding-left: 15px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--cor-dourada), transparent);
}

.logo-text {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 0.25rem;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--cor-dourada);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--cor-texto);
    font-weight: 500;
    transition: var(--transicao-padrao);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cor-dourada);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-dourada);
    transition: var(--transicao-padrao);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-agendar-nav {
    background: var(--cor-dourada);
    color: var(--cor-branca);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transicao-padrao);
}

.btn-agendar-nav:hover {
    background: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-primaria);
    transition: var(--transicao-padrao);
}

/* ============================================
   HERO SECTION - CONTRASTE MÁXIMO GARANTIDO
   ============================================ */

.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    padding: var(--espacamento-grande) 0;
    color: var(--cor-branca);
}

/* CONTRASTE FORÇADO - TODOS OS TEXTOS EM BRANCO */
.hero,
.hero *,
.hero p,
.hero span,
.hero li,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
    color: #FFFFFF !important;
}

/* Subtítulo em dourado claro para destaque */
.hero-subtitle {
    color: #F5D77A !important;
}

/* Ícones em dourado claro */
.hero svg,
.hero i,
.hero .fa,
.hero .fas,
.hero .fab,
.hero .far {
    color: #F5D77A !important;
    fill: #F5D77A !important;
}

/* Links em dourado claro */
.hero a:not(.btn-primary) {
    color: #F5D77A !important;
    text-decoration: underline;
}

.hero a:not(.btn-primary):hover {
    color: #FFFFFF !important;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--cor-branca);
    margin-bottom: 1rem;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--cor-dourada);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cor-dourada);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--fonte-texto);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #FFFFFF !important;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #FFFFFF !important;
}

.highlight-item i {
    color: #F5D77A !important;
    font-size: 1.5rem;
    width: 30px;
}

.highlight-item span {
    color: #FFFFFF !important;
}
    display: flex;
    align-items: center;
    gap: 1rem;
.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #F5D77A;
    border-radius: 50%;
    box-shadow: 0 0 10px #F5D77A;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M40,10 Q25,25 15,40 Q25,55 40,70 Q50,55 60,45 Q70,40 60,25 Q50,15 40,10' fill='none' stroke='%23DOURADO' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--cor-dourada);
    position: relative;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn-primary {
    display: inline-block;
    background: var(--cor-dourada);
    color: var(--cor-branca);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transicao-padrao);
    border: 2px solid var(--cor-dourada);
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--cor-dourada);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--cor-branca);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transicao-padrao);
    margin-top: 2rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* ============================================
   SECTIONS - TÍTULOS E DIVIDERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--cor-dourada);
    opacity: 0.5;
}

.section-title::before {
    left: -60px;
}

.section-title::after {
    right: -60px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cor-dourada), transparent);
    margin: 0 auto;
    position: relative;
}

.title-divider::before,
.title-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--cor-dourada);
    border-radius: 50%;
}

.title-divider::before {
    left: -15px;
}

.title-divider::after {
    right: -15px;
}
    background: var(--cor-dourada);
    margin: 0 auto;
}

/* ============================================
   SOBRE SECTION
   ============================================ */

.sobre {
    background: var(--cor-branca);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.sobre-image {
    position: relative;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    border: 3px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.4;
}

.sobre-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-dourada), transparent);
    opacity: 0.5;
}

.sobre-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--cor-dourada);
    position: relative;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--cor-texto);
}

.sobre-text strong {
    color: var(--cor-primaria);
}

.formacao {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--cor-branca);
    border-radius: 10px;
    border-left: 4px solid var(--cor-dourada);
    position: relative;
}

.formacao::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.3;
}

.formacao h4 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.formacao ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.formacao li {
    display: flex;
    align-items: start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--cor-texto);
}

.formacao li i {
    color: var(--cor-dourada);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   ATUAÇÃO CLÍNICA SECTION
   ============================================ */

.atuacao {
    background: var(--cor-off-white);
}

.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.atuacao-card {
    background: var(--cor-branca);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transicao-padrao);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.atuacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cor-dourada), transparent);
    opacity: 0;
    transition: var(--transicao-padrao);
}

.atuacao-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transicao-padrao);
}

.atuacao-card:hover::before,
.atuacao-card:hover::after {
    opacity: 0.3;
}

.atuacao-card:hover {
    transform: translateY(-5px);
    border-color: var(--cor-dourada);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--cor-dourada);
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
}

.card-icon i {
    font-size: 2rem;
    color: var(--cor-dourada);
}

.atuacao-card h3 {
    font-size: 1.25rem;
    color: var(--cor-primaria);
    margin-bottom: 0.75rem;
}

.atuacao-card p {
    font-size: 1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 0;
}

/* ============================================
   CONSULTA SECTION
   ============================================ */

.consulta {
    background: var(--cor-branca);
}

.consulta-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.consulta-image {
    position: relative;
}

.consulta-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'%3E%3Cpath d='M45,10 Q28,28 18,45 Q28,62 45,80 Q55,62 65,52 Q75,45 65,28 Q55,18 45,10' fill='none' stroke='%23DOURADO' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.4;
    z-index: -1;
}

.consulta-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border: 3px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.4;
}

.consulta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--cor-dourada);
    position: relative;
}

.consulta-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--cor-texto);
}

.consulta-text strong {
    color: var(--cor-primaria);
    font-weight: 600;
}

/* ============================================
   FILOSOFIA SECTION
   ============================================ */

.filosofia {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: var(--cor-branca);
}

.filosofia .section-title {
    color: var(--cor-branca);
}

.filosofia-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.filosofia-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.filosofia-text strong {
    color: var(--cor-dourada);
    font-weight: 600;
}

.filosofia-image {
    position: relative;
}

.filosofia-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.filosofia-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cor-dourada));
    opacity: 0.6;
}

.filosofia-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--cor-dourada);
    position: relative;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: var(--cor-off-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cor-branca);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transicao-padrao);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--cor-dourada);
}

.faq-item.active {
    border-left-color: var(--cor-dourada);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transicao-padrao);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--cor-primaria);
    font-family: var(--fonte-texto);
    font-weight: 600;
}

.faq-question i {
    color: var(--cor-dourada);
    font-size: 1.25rem;
    transition: var(--transicao-padrao);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--cor-texto);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   AGENDAMENTO SECTION
   ============================================ */

.agendamento {
    background: var(--cor-branca);
}

.agendamento-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: var(--cor-branca);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.agendamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-dourada), var(--cor-primaria));
}

.agendamento-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.1;
}

.agendamento-image {
    position: relative;
}

.agendamento-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    border: 3px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.4;
}

.agendamento-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--cor-dourada);
    position: relative;
}

.agendamento-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    position: relative;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border: 2px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.2;
}

.info-item i {
    font-size: 2rem;
    color: var(--cor-dourada);
    background: var(--cor-branca);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
}

.info-item h4 {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-item p {
    color: var(--cor-texto-claro);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--cor-primaria);
    color: var(--cor-branca);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cor-dourada), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--cor-dourada);
    border-radius: 50%;
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--cor-dourada);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--cor-dourada);
}

.footer-info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4,
.footer-links h4 {
    color: var(--cor-dourada);
    margin-bottom: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--cor-dourada);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transicao-padrao);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--cor-dourada);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 968px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--cor-branca);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transicao-padrao);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }
    
    /* Garantir contraste no menu mobile */
    .nav-menu .nav-link {
        color: var(--cor-texto) !important;
        font-size: 1.125rem;
    }
    
    .nav-menu .nav-link.active {
        color: var(--cor-dourada) !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-agendar-nav {
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Sobre */
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    /* Consulta */
    .consulta-content {
        grid-template-columns: 1fr;
    }
    
    /* Filosofia */
    .filosofia-content {
        grid-template-columns: 1fr;
    }
    
    /* Agendamento */
    .agendamento-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .atuacao-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-highlights {
        font-size: 0.9375rem;
    }
    
    .btn-primary,
    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .agendamento-card {
        padding: 1.5rem;
    }
}