/* =====================================================
   BEATRIZ ANGÉLICA – PSICÓLOGA
   Cores: Laranja #cd580f | Azul #1d2a80 | Dourado #d5b24d
   ===================================================== */

/* ===== VARIÁVEIS ===== */
:root {
    --laranja:   #cd580f;
    --laranja-d: #b04a0c;
    --azul:      #1d2a80;
    --azul-d:    #162068;
    --dourado:   #d5b24d;
    --creme:     #fdf9f5;
    --cinza:     #f5f3f0;
    --texto:     #2c2c2c;
    --texto-sec: #666666;
    --branco:    #ffffff;
    --sombra:    0 4px 24px rgba(0,0,0,0.08);
    --sombra-h:  0 8px 32px rgba(0,0,0,0.15);
    --radius:    16px;
    --radius-sm: 8px;
    --t:         all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--texto); background: var(--branco); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TIPOGRAFIA COMPARTILHADA ===== */
.secao-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 10px;
}
.secao-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--azul);
    line-height: 1.25;
    margin-bottom: 14px;
}
.secao-titulo span { color: var(--laranja); }
.secao-titulo-claro { color: #fff; }
.secao-titulo-claro span { color: var(--dourado); }
.secao-desc { font-size: 1.05rem; color: var(--texto-sec); max-width: 600px; }

/* Textos justificados */
.hero-desc,
.sobre-texto p,
.sinal-item p,
.depoimento-texto,
.blog-corpo p,
.contato-item p,
.post-conteudo p,
.footer-brand p {
    text-align: justify;
    hyphens: auto;
}
.servico-card p {
    text-align: justify;
    hyphens: none;
}
.secao-desc-claro { color: rgba(255,255,255,0.75); }
.secao-header { text-align: center; margin-bottom: 56px; }
.secao-header .secao-desc { margin: 0 auto; }

/* ===== BOTÕES ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--laranja); color: #fff;
    padding: 15px 32px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
    box-shadow: 0 4px 16px rgba(205,88,15,0.35);
    transition: var(--t);
}
.btn-primary:hover { background: var(--laranja-d); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(205,88,15,0.45); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--azul);
    padding: 13px 28px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
    border: 2px solid var(--azul); transition: var(--t);
}
.btn-secondary:hover { background: var(--azul); color: #fff; transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--laranja);
    padding: 13px 32px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
    border: 2px solid var(--laranja); transition: var(--t);
}
.btn-outline:hover { background: var(--laranja); color: #fff; transform: translateY(-2px); }

.btn-nav {
    background: var(--laranja) !important; color: #fff !important;
    padding: 10px 22px !important; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; transition: var(--t);
}
.btn-nav:hover { background: var(--laranja-d) !important; }
.btn-nav::after { display: none !important; }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff;
    padding: 11px 22px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; transition: var(--t);
    margin-top: 6px;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.mapa-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--laranja); font-weight: 700; font-size: 0.88rem;
    margin-top: 6px; transition: var(--t);
}
.mapa-link:hover { color: var(--azul); gap: 8px; }

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 0; transition: var(--t);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.09);
    backdrop-filter: blur(8px);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-nome { font-family: 'Dancing Script', cursive; font-size: 1.65rem; font-weight: 700; color: var(--laranja); }
.logo-crp  { font-family: 'Nunito', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--azul); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 700;
    color: var(--texto); transition: var(--t); position: relative;
}
.nav-links a:not(.btn-nav)::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: var(--laranja); transition: var(--t);
}
.nav-links a:not(.btn-nav):hover { color: var(--laranja); }
.nav-links a:not(.btn-nav):hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--azul); cursor: pointer; }
.nav-fechar { display: none; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: #fff;
    display: flex; align-items: center;
    padding: 130px 0 80px; position: relative; overflow: hidden;
}
.hero-deco-circulo-grande {
    position: absolute; top: -120px; right: -100px;
    width: 700px; height: 700px; border-radius: 50%;
    background: rgba(47,107,71,0.06); pointer-events: none;
}
.hero-deco-circulo-pequeno {
    position: absolute; bottom: 80px; left: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    background: rgba(205,88,15,0.06); pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 2;
}
.hero-texto { color: var(--texto); }
.hero-texto .secao-label { color: var(--laranja); }
.hero-texto h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--azul);
}
.hero-texto h1 span { color: var(--laranja); }
.hero-desc { font-size: 1.08rem; color: var(--texto-sec); margin-bottom: 36px; max-width: 480px; }

.hero-imagem { display: flex; justify-content: center; }
.hero-foto-frame { position: relative; width: 100%; max-width: 440px; }
.hero-foto-frame::before {
    content: ''; position: absolute; inset: -12px;
    border: 2px solid rgba(213,178,77,0.35); border-radius: 60% 40% 68% 32% / 48% 62% 38% 52%;
    animation: morphBorda 9s ease-in-out infinite;
}
@keyframes morphBorda {
    0%,100% { border-radius: 60% 40% 68% 32% / 48% 62% 38% 52%; }
    50%      { border-radius: 38% 62% 32% 68% / 62% 38% 62% 38%; }
}
.hero-foto {
    width: 100%; border-radius: 60% 40% 68% 32% / 48% 62% 38% 52%;
    object-fit: cover; object-position: top; aspect-ratio: 4/5;
    animation: morphFoto 9s ease-in-out infinite;
}
@keyframes morphFoto {
    0%,100% { border-radius: 60% 40% 68% 32% / 48% 62% 38% 52%; }
    50%      { border-radius: 38% 62% 32% 68% / 62% 38% 62% 38%; }
}
.hero-badge {
    position: absolute; bottom: 24px; left: -20px;
    background: #fff; border-radius: var(--radius-sm);
    padding: 12px 18px; display: flex; align-items: center; gap: 10px;
    box-shadow: var(--sombra);
}
.hero-badge i { color: var(--dourado); font-size: 1.2rem; }
.hero-badge strong { display: block; font-size: 1rem; color: var(--azul); font-weight: 800; }
.hero-badge span { font-size: 0.75rem; color: var(--texto-sec); }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; display: none; }

/* ===== SOBRE ===== */
.sobre { padding: 100px 0; background: var(--creme); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.sobre-imagem { position: relative; }
.sobre-foto { width: 100%; border-radius: var(--radius); box-shadow: var(--sombra); aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.sobre-badge {
    position: absolute; bottom: 20px; right: -18px;
    background: var(--azul); color: #fff;
    padding: 12px 18px; border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.88rem; box-shadow: var(--sombra);
}
.sobre-texto p { color: var(--texto-sec); font-size: 1.02rem; margin-bottom: 14px; }
.sobre-credenciais { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.credencial {
    display: flex; align-items: center; gap: 8px;
    background: #fff; padding: 10px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; color: var(--azul); box-shadow: var(--sombra);
}
.credencial i { color: var(--laranja); }

/* ===== SERVIÇOS ===== */
.servicos { padding: 100px 0; background: #fff; }
.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.servico-card {
    background: var(--creme); padding: 36px 28px; border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden;
    transition: var(--t);
}
.servico-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%; background: var(--cor-card, var(--laranja));
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-h); background: #fff; }
.servico-icone {
    width: 56px; height: 56px; background: var(--cor-card, var(--laranja));
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; margin-bottom: 18px;
}
.servico-icone i { font-size: 1.3rem; color: #fff; }
.servico-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; color: var(--azul); margin-bottom: 12px; font-weight: 700; }
.servico-card p { color: var(--texto-sec); font-size: 0.95rem; margin-bottom: 18px; }
.servico-link { font-weight: 700; font-size: 0.88rem; color: var(--laranja); transition: var(--t); }
.servico-link:hover { color: var(--azul); letter-spacing: 0.3px; }

/* ===== PARA QUEM É ===== */
.para-quem { padding: 100px 0; background: var(--azul); }
.sinais-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-bottom: 52px; }
.sinal-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(255,255,255,0.07); padding: 18px 22px;
    border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1);
    transition: var(--t);
}
.sinal-item:hover { background: rgba(255,255,255,0.13); transform: translateX(4px); }
.sinal-item i { color: var(--dourado); font-size: 0.6rem; margin-top: 6px; flex-shrink: 0; }
.sinal-item p { font-size: 0.95rem; color: rgba(255,255,255,0.88); }
.para-quem-cta { text-align: center; }
.para-quem-cta > p { font-size: 1.12rem; color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.para-quem-cta strong { color: var(--dourado); }

/* ===== DEPOIMENTOS ===== */
.depoimentos { padding: 100px 0; background: var(--creme); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 40px; }
.depoimento-card {
    background: #fff; padding: 32px; border-radius: var(--radius);
    box-shadow: var(--sombra); position: relative; transition: var(--t);
}
.depoimento-card::before {
    content: '"'; position: absolute; top: -4px; left: 22px;
    font-family: 'Poppins', sans-serif; font-size: 5rem;
    color: var(--laranja); opacity: 0.12; line-height: 1; pointer-events: none;
}
.depoimento-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-h); }
.depoimento-estrelas { display: flex; gap: 3px; margin-bottom: 14px; }
.depoimento-estrelas i { color: var(--dourado); font-size: 0.88rem; }
.depoimento-texto { font-style: italic; color: var(--texto-sec); font-size: 0.96rem; margin-bottom: 22px; line-height: 1.8; }
.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.autor-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--laranja), var(--dourado));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.depoimento-autor strong { display: block; font-size: 0.92rem; color: var(--azul); }
.depoimento-autor span  { font-size: 0.78rem; color: var(--texto-sec); }
.depoimentos-plataformas { text-align: center; color: var(--texto-sec); font-size: 0.9rem; }
.plataformas-links { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 8px; font-weight: 700; }
.plataformas-links a { color: var(--azul); transition: var(--t); }
.plataformas-links a:hover { color: var(--laranja); }
.plataformas-links .fa-google { color: #4285F4; }

/* ===== BLOG ===== */
.blog { padding: 100px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 48px; }
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra); background: var(--creme); transition: var(--t); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-h); }
.blog-img-wrap { height: 200px; overflow: hidden; position: relative; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-img-placeholder { display: flex; align-items: center; justify-content: center; }
.blog-img-1 { background: linear-gradient(135deg, #cd580f25, #1d2a8025); }
.blog-img-2 { background: linear-gradient(135deg, #1d2a8025, #d5b24d25); }
.blog-img-3 { background: linear-gradient(135deg, #d5b24d25, #cd580f25); }
.blog-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--laranja); color: #fff;
    font-size: 0.72rem; font-weight: 800; padding: 4px 12px;
    border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
}
.blog-corpo { padding: 22px 24px 28px; }
.blog-data { font-size: 0.78rem; color: var(--texto-sec); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.blog-data i { color: var(--laranja); }
.blog-corpo h3 { font-family: 'Poppins', sans-serif; font-size: 1.08rem; color: var(--azul); margin-bottom: 10px; line-height: 1.4; }
.blog-corpo p { font-size: 0.9rem; color: var(--texto-sec); margin-bottom: 18px; }
.blog-link { font-weight: 700; font-size: 0.88rem; color: var(--laranja); transition: var(--t); }
.blog-link:hover { color: var(--azul); letter-spacing: 0.3px; }
.blog-cta { text-align: center; }

/* ===== CONTATO ===== */
.contato { padding: 100px 0; background: var(--creme); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contato-info { display: flex; flex-direction: column; gap: 32px; }
.contato-item { display: flex; gap: 18px; align-items: flex-start; }
.contato-icone {
    width: 50px; height: 50px; background: var(--azul);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.contato-icone i { font-size: 1.2rem; color: #fff; }
.contato-item h4 { font-family: 'Poppins', sans-serif; color: var(--azul); margin-bottom: 4px; }
.contato-item p { color: var(--texto-sec); font-size: 0.95rem; line-height: 1.7; }
.contato-redes { display: flex; gap: 12px; }
.rede-social {
    width: 44px; height: 44px; border-radius: 50%; background: var(--azul);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; transition: var(--t);
}
.rede-social:hover { background: var(--laranja); transform: translateY(-3px); }
.mapa-placeholder-box {
    background: #fff; border-radius: var(--radius); box-shadow: var(--sombra);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 48px 32px; gap: 14px; height: 100%; min-height: 340px;
}
.mapa-placeholder-box i { font-size: 3rem; color: var(--laranja); opacity: 0.5; }
.mapa-placeholder-box p { color: var(--texto-sec); line-height: 1.8; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: var(--azul); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-nome { font-family: 'Dancing Script', cursive; font-size: 1.8rem; font-weight: 700; color: var(--dourado); display: block; }
.logo-crp-footer { font-family: 'Nunito', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; }
.footer-col h4 { color: var(--dourado); font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.65); transition: var(--t); }
.footer-col a:hover { color: var(--dourado); padding-left: 5px; }
.footer-col p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.footer-col p i { color: var(--dourado); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.7rem; z-index: 998;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--t); animation: pulseWA 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 6px 26px rgba(37,211,102,0.65); }
@keyframes pulseWA {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); }
}
.whatsapp-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: var(--azul); color: #fff; white-space: nowrap;
    padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
    opacity: 0; pointer-events: none; transition: var(--t);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== GALERIA CONSULTÓRIO ===== */
.consultorio-galeria { margin-top: 64px; text-align: center; }
.galeria-titulo { font-family: 'Poppins', sans-serif; font-size: 1.5rem; color: var(--azul); margin-bottom: 10px; }
.galeria-desc { color: var(--texto-sec); font-size: 0.98rem; margin-bottom: 28px; }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.galeria-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra); }
.galeria-item img { width: 100%; height: 240px; object-fit: cover; transition: var(--t); display: block; }
.galeria-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
    .galeria-grid { grid-template-columns: 1fr; }
    .galeria-item img { height: 220px; }
}

/* ===== BLOG – PÁGINAS INTERNAS ===== */
.blog-page { background: var(--creme); min-height: 100vh; }
.blog-hero { background: var(--azul); padding: 130px 0 60px; }
.blog-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 10px; }
.blog-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.blog-lista { padding: 60px 0 80px; }
.blog-lista-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

/* Post completo */
.post-hero { background: var(--azul); padding: 130px 0 60px; }
.post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.post-cat { background: var(--laranja); color: #fff; font-size: 0.75rem; font-weight: 800; padding: 4px 14px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; }
.post-data { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.post-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem,3.5vw,2.6rem); color: #fff; line-height: 1.25; }
.post-body { padding: 60px 0 80px; }
.post-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.post-img-destaque { width: 100%; border-radius: var(--radius); margin-bottom: 40px; box-shadow: var(--sombra); }
.post-conteudo h2 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; color: var(--azul); margin: 36px 0 14px; }
.post-conteudo h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: var(--azul); margin: 28px 0 12px; }
.post-conteudo p { color: var(--texto-sec); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; }
.post-conteudo ul, .post-conteudo ol { color: var(--texto-sec); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; padding-left: 22px; }
.post-conteudo li { margin-bottom: 8px; }
.post-conteudo strong { color: var(--texto); }
.post-destaque {
    background: linear-gradient(135deg, rgba(205,88,15,0.08), rgba(29,42,128,0.06));
    border-left: 4px solid var(--laranja);
    padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 28px 0; font-style: italic;
}
.post-cta {
    background: var(--azul); border-radius: var(--radius);
    padding: 36px; text-align: center; margin-top: 48px; color: #fff;
}
.post-cta h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; margin-bottom: 10px; }
.post-cta p { color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.post-volta { display: inline-flex; align-items: center; gap: 8px; color: var(--laranja); font-weight: 700; font-size: 0.9rem; margin-bottom: 28px; transition: var(--t); }
.post-volta:hover { gap: 12px; color: var(--azul); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-fechar { display: block; position: absolute; top: 20px; right: 20px; width: auto !important; border-bottom: none !important; }
    .nav-fechar button { background: none; border: none; font-size: 1.5rem; color: var(--azul); cursor: pointer; padding: 6px; line-height: 1; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #fff; flex-direction: column; gap: 0; padding: 80px 0 40px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.12); transition: var(--t); z-index: 999;
        align-items: flex-start;
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links .btn-nav { margin: 16px 28px 0; text-align: center; border-radius: 50px; border-bottom: none; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-imagem { order: -1; }
    .hero-foto-frame { max-width: 300px; margin: 0 auto; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .hero-btns { justify-content: center; }

    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .sobre-imagem { max-width: 380px; margin: 0 auto; }
    .sobre-badge { right: 0; }

    .contato-grid { grid-template-columns: 1fr; }
    .contato-forms { grid-template-columns: 1fr; }
    .mapa-placeholder-box { min-height: 260px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== BLOG — LEIA TAMBÉM ===== */
.leia-tambem {
    margin: 48px 0 32px;
    padding-top: 40px;
    border-top: 1px solid var(--cinza);
}
.leia-tambem h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 20px;
}
.leia-tambem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.leia-card {
    display: block;
    background: var(--creme);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1.5px solid #ede8e1;
    transition: var(--t);
}
.leia-card:hover { border-color: var(--laranja); transform: translateY(-2px); box-shadow: var(--sombra); }
.leia-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 8px;
}
.leia-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 8px;
    line-height: 1.4;
}
.leia-card p { font-size: 0.85rem; color: var(--texto-sec); }

/* ===== BLOG — INSTAGRAM LINK ===== */
.post-instagram {
    margin: 32px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f5f0f8, #fdf9f5);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--laranja);
    font-size: 0.92rem;
    color: var(--texto-sec);
    display: flex;
    align-items: center;
    gap: 10px;
}
.post-instagram i { color: var(--laranja); font-size: 1.1rem; }
.post-instagram a { color: var(--laranja); font-weight: 700; }

/* ===== BLOG — NEWSLETTER ===== */
.post-newsletter {
    background: var(--creme);
    border-radius: var(--radius);
    border-top: 4px solid var(--laranja);
    padding: 36px;
    text-align: center;
    margin: 48px 0 32px;
}
.post-newsletter h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 22px;
}
.post-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}
.post-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
}
.post-newsletter input[type="email"]:focus { border-color: var(--laranja); }
.post-newsletter .form-check { text-align: left; }
.post-newsletter .btn-primary { width: 100%; justify-content: center; }
.post-newsletter .btn-primary:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }

@media (max-width: 600px) {
    .leia-tambem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { padding-bottom: 60px; }
    .servicos-grid, .depoimentos-grid, .blog-grid, .sinais-grid { grid-template-columns: 1fr; }
    .sobre-credenciais { gap: 10px; }
    .secao-titulo { font-size: 1.7rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
}

/* ===== HERO DISPONIBILIDADE ===== */
.hero-disponibilidade {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 700;
    color: #2a7a4b; background: #e6f4ed;
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 16px;
}

/* ===== HERO BLOG LINK ===== */
.hero-blog-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--texto-sec); font-size: 0.88rem; font-weight: 700;
    transition: var(--t);
}
.hero-blog-link:hover { color: var(--laranja); }
.hero-blog-link i { font-size: 0.75rem; }

/* ===== HERO BUTTONS ===== */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ===== CONSULTÓRIO (seção própria) ===== */
.consultorio-section { padding: 60px 0; background: var(--creme); }

/* ===== FAQ CTA ===== */
.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cinza);
}
.faq-cta p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 16px;
}

/* ===== FORMULÁRIOS DE CAPTURA ===== */
.contato-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
}
.form-card {
    background: var(--creme);
    border-radius: var(--radius);
    padding: 32px;
}
.form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.form-card h3 i { color: var(--laranja); }
.form-desc { font-size: 0.9rem; color: var(--texto-sec); margin-bottom: 16px; }
.form-group { margin-bottom: 14px; }
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0dbd4;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--texto);
    background: var(--branco);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus { border-color: var(--laranja); }
.form-check {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: var(--texto-sec);
    cursor: pointer;
}
.form-check input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--laranja); }
.form-check a { color: var(--laranja); text-decoration: underline; }
.form-card .btn-primary { width: 100%; justify-content: center; }
.form-card .btn-primary:disabled {
    background: #ccc; cursor: not-allowed;
    transform: none; box-shadow: none;
}

/* ===== BANNER DE COOKIES ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--azul); color: #fff;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner p { font-size: 0.88rem; margin: 0; flex: 1; }
.cookie-banner a { color: var(--dourado); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-recusar-btn {
    background: transparent; border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff; padding: 8px 20px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-size: 0.88rem;
    font-weight: 700; cursor: pointer; transition: var(--t);
}
.cookie-recusar-btn:hover { border-color: #fff; }
.cookie-banner .btn-primary { padding: 8px 20px; font-size: 0.88rem; }

@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--creme);
}
.faq-lista {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--branco);
    border-radius: var(--radius-sm);
    box-shadow: var(--sombra);
    overflow: hidden;
}
.faq-pergunta {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul);
    text-align: left;
    transition: var(--t);
}
.faq-pergunta:hover { color: var(--laranja); }
.faq-pergunta i {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--laranja);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-pergunta i { transform: rotate(180deg); }
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-resposta { max-height: 300px; }
.faq-resposta p {
    padding: 0 24px 20px;
    color: var(--texto-sec);
    font-size: 0.97rem;
    line-height: 1.7;
    border-top: 1px solid var(--cinza);
    padding-top: 16px;
}
