/* CSS próprio, compilado à mão — mesmo motor de utilitários usado no site do Dr. Grander,
   mas com paleta e tipografia extraídas do CSS REAL do site atual da Dra. Giovana
   (dragiovanakoptian.com), para reproduzir a identidade visual dela com fidelidade.
   Os nomes de variável/classe (--teal, --gold etc.) são só nomenclatura herdada do motor
   original — os valores abaixo são o vinho/creme reais dela, não literalmente "teal". */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--fg); background: var(--bg); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }
ol { list-style: none; }
blockquote { display: block; }
cite { font-style: normal; display: block; }
.list-none { list-style: none; }
.not-italic { font-style: normal; }
.whitespace-nowrap { white-space: nowrap; }

:root {
  /* Extraído de hsl(333 ...) / hsl(43 ...) do CSS real do site dela */
  --teal-dark: #692644;       /* hsl(333 47% 28%) — início do gradiente do hero */
  --teal: #782B4E;            /* hsl(333 47% 32%) — cor primária/marca dela */
  --teal-light: #9B275B;      /* hsl(333 60% 38%) — fim do gradiente do hero, hover */
  --gold: #F4F3F0;            /* hsl(43 14% 95%) — creme claro, usado nos botões sobre fundo escuro */
  --gold-text: #43182C;       /* hsl(333 47% 18%) — texto escuro sobre o botão creme */
  --bg: #E9E7E2;              /* hsl(43 14% 90%) — fundo creme/bege da página */
  --bg-hero: #E3D1BA;         /* creme mais quente, tom aproximado do fundo de madeira da foto do Hero —
                                 só na seção Hero, pra dar sensação de continuidade com a foto */
  --fg: #4B1B31;              /* hsl(333 47% 20%) — texto principal, vinho escuro */
  --muted: #60394B;           /* hsl(333 25% 30%) — texto secundário */
  --section-alt: #F2F1EE;     /* hsl(43 14% 94%) — fundo de seção alternada */
  --card-border: #CFAFBE;     /* hsl(333 25% 75%) — borda */
  --card-border-strong: #C9A0B2;
  --accent: #DFC3D0;          /* hsl(333 30% 82%) — rosa claro do badge */
}

h1, h2, h3, .font-heading { font-family: 'Montserrat', sans-serif; letter-spacing: -.01em; }
h1, h2, h3 { line-height: 1.18; }

/* Layout: display */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Flex */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Gap */
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-7 { gap: 1.75rem; } .gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; } .gap-16 { gap: 4rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; } .left-0 { left: 0; } .right-0 { right: 0; }
.bottom-6 { bottom: 1.5rem; } .right-6 { right: 1.5rem; }
.z-10 { z-index: 10; } .z-50 { z-index: 50; }

/* Sizing */
.w-4 { width: 1rem; } .w-3\.5 { width: .875rem; } .w-5 { width: 1.25rem; } .w-8 { width: 2rem; } .w-9 { width: 2.25rem; } .w-10 { width: 2.5rem; } .w-16 { width: 4rem; }
.w-full { width: 100%; } .w-auto { width: auto; }
.w-\[340px\] { width: 340px; }
.h-4 { height: 1rem; } .h-3\.5 { height: .875rem; } .h-5 { height: 1.25rem; } .h-7 { height: 1.75rem; } .h-8 { height: 2rem; } .h-9 { height: 2.25rem; } .h-10 { height: 2.5rem; } .h-16 { height: 4rem; } .h-64 { height: 16rem; }
.h-\[400px\] { height: 400px; } .h-\[420px\] { height: 420px; }
.h-full { height: 100%; }
.w-\[320px\] { width: 320px; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; } .max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; } .max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; } .max-w-7xl { max-width: 80rem; }
.max-w-\[420px\] { max-width: 420px; }

/* Spacing: margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 1.25rem; } .mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mt-0\.5 { margin-top: .125rem; } .mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; } .mt-8 { margin-top: 2rem; } .mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; } .mt-14 { margin-top: 3.5rem; } .mt-16 { margin-top: 4rem; }

/* Spacing: padding */
.p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .p-10 { padding: 2.5rem; }
.p-5 { padding: 1.25rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-9 { padding-left: 2.25rem; padding-right: 2.25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-\[6px\] { padding-top: 6px; padding-bottom: 6px; }
.py-\[0px\] { padding-top: 0px; padding-bottom: 0px; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-36 { padding-top: 9rem; }
.pt-\[180px\] { padding-top: 180px; }
.pt-\[130px\] { padding-top: 130px; }
.pt-\[110px\] { padding-top: 110px; }
.pt-1\.5 { padding-top: .375rem; }
/* Altura real do cabeçalho fixo no mobile (logo h-20/80px + py-1/4px topo+baixo = 88px) — usado
   pra empurrar a foto do Hero pra baixo do cabeçalho fixo, que senão cobre o topo da cabeça na foto */
.mt-\[88px\] { margin-top: 88px; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Borders + radius */
.border { border-width: 1px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-card { border-color: var(--card-border); }
.border-teal { border-color: var(--teal); }
.border-white\/10 { border-color: rgb(255 255 255 / .1); }
.border-white\/20 { border-color: rgb(255 255 255 / .2); }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

/* Backgrounds */
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgb(255 255 255 / .05); }
.bg-white\/10 { background-color: rgb(255 255 255 / .1); }
.bg-page { background-color: var(--bg); }
.bg-hero { background-color: var(--bg-hero); }
.bg-teal { background-color: var(--teal); }
.bg-teal-dark { background-color: var(--teal-dark); }
.bg-section-alt { background-color: var(--section-alt); }
.btn-gold { background-color: var(--gold); color: var(--gold-text); }
.btn-gold:hover { filter: brightness(1.08); }

/* Text */
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .05em; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.text-white { color: #fff; }
.text-white\/55 { color: rgb(255 255 255 / .55); }
.text-white\/60 { color: rgb(255 255 255 / .6); }
.text-white\/70 { color: rgb(255 255 255 / .7); }
.text-white\/80 { color: rgb(255 255 255 / .8); }
.text-white\/40 { color: rgb(255 255 255 / .4); }
.text-teal\/80 { color: rgba(120, 43, 78, .8); }
.text-white\/85 { color: rgb(255 255 255 / .85); }
.text-white\/90 { color: rgb(255 255 255 / .9); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* Object fit */
.object-cover { object-fit: cover; }
.object-pos-top { object-position: center 12%; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }
.object-bottom { object-position: bottom; }
.fade-left {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%);
}
.opacity-80 { opacity: .8; }
.opacity-70 { opacity: .7; }

/* Effects */
.shadow-sm { box-shadow: 0 1px 2px rgb(0 0 0 / .05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
.to-white { filter: brightness(0) invert(1); } /* combina os dois efeitos numa única regra — usar junto brightness-0+invert não funciona (mesma propriedade, uma sobrescreve a outra) */
.transition-all { transition: all .2s ease; }
.transition-colors { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.transition-shadow { transition: box-shadow .2s ease; }
.transition-transform { transition: transform .2s ease; }
.duration-300 { transition-duration: .3s; }

/* Hover states */
.hover\:bg-teal:hover { background-color: var(--teal); }
.hover\:bg-teal-light:hover { background-color: var(--teal-light); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-teal:hover { color: var(--teal); }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-white:hover { color: #fff; }
.hover\:underline:hover { text-decoration: underline; }

/* ===== Responsivo: sm (>=640px) ===== */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:justify-center { justify-content: center; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== Responsivo: md (>=768px) ===== */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:items-start { align-items: flex-start; }
  .md\:flex-row { flex-direction: row; }
  .md\:justify-between { justify-content: space-between; }
}

/* ===== Responsivo: lg (>=1024px) ===== */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:text-left { text-align: left; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:pl-6 { padding-left: 1.5rem; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:h-\[520px\] { height: 520px; }
  .lg\:w-\[400px\] { width: 400px; }
  .lg\:h-\[600px\] { height: 600px; }
  .lg\:w-\[460px\] { width: 460px; }
  .lg\:h-\[900px\] { height: 900px; }
  .lg\:w-\[690px\] { width: 690px; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
  .lg\:grid-cols-\[1fr_0\.8fr\] { grid-template-columns: 1fr 0.8fr; }
}

/* ===== Ajustes solicitados (2026-07-24) ===== */

/* Logo: usada como máscara de forma (baseada na transparência do arquivo), preenchida
   por background-color — branco no topo, vinho/magenta quando o cabeçalho está "scrolled".
   Troquei de <img> com filtro de cor para isso porque o arquivo da logo dela é um
   monograma branco; um filtro não converteria branco em magenta, só máscara resolve. */
.logo-img {
  aspect-ratio: 1 / 1;
  background-color: #fff;
  -webkit-mask-image: url(assets/logo-header.webp);
  mask-image: url(assets/logo-header.webp);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color .2s ease;
}
/* Logo do índice só no mobile (2026-08-29) — versão horizontal (ícone + nome), mesma técnica
   de máscara acima, só troca o arquivo/proporção. Desktop continua com o ícone circular (.logo-img). */
.logo-img-mobile {
  background-color: #fff;
  -webkit-mask-image: url(assets/logo-header-mobile.webp);
  mask-image: url(assets/logo-header-mobile.webp);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center left;
  mask-position: center left;
  transition: background-color .2s ease;
}
#site-header.scrolled .logo-img-mobile { background-color: var(--gold); }
.w-\[250px\] { width: 250px; }
.h-\[77px\] { height: 77px; }
.w-\[77px\] { width: 77px; }
.h-\[64px\] { height: 64px; }
.w-\[64px\] { width: 64px; }
.h-\[96px\] { height: 96px; }
.w-\[96px\] { width: 96px; }
.h-\[115px\] { height: 115px; }
.w-\[115px\] { width: 115px; }
.h-\[480px\] { height: 480px; }
.w-\[380px\] { width: 380px; }
.h-\[720px\] { height: 720px; }
.w-\[570px\] { width: 570px; }

/* Cabeçalho: estado padrão (topo) vs. rolado (scrolled) */
#site-header {
  transition: background-color .25s ease, box-shadow .25s ease;
}
#site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / .08);
}
.nav-link {
  white-space: nowrap;
}
#site-header.scrolled .nav-link {
  color: var(--fg);
}
#site-header.scrolled .nav-link:hover {
  color: var(--teal);
}
#site-header.scrolled .logo-img {
  background-color: var(--teal);
}
#site-header.scrolled .menu-toggle-btn {
  color: var(--fg);
}
/* O botão "Agendar Consulta" do menu mantém a cor sempre — sem regra especial aqui de propósito */

/* Botão flutuante "Agendar Consulta" (acima do WhatsApp) */
.bottom-24 { bottom: 6rem; }

.bg-whatsapp-green { background-color: #25D366; }
.bg-whatsapp-green:hover { background-color: #20bd5a; }

/* Cards de Diferenciais: borda com mais contraste */
.card-diferencial {
  border: 1px solid var(--card-border-strong);
}

/* Subtítulo de Áreas de Atuação: uma linha só, sem quebrar */
.subtitle-nowrap {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .subtitle-nowrap {
    white-space: normal;
    text-align: center;
  }
}

.bullet-teal {
  margin-top: .375rem;
  height: .5rem;
  width: .5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: var(--teal);
  display: inline-block;
}

/* Cards de "Benefícios": translúcidos sobre fundo escuro */
.card-beneficio {
  border: 1px solid rgb(255 255 255 / .1);
  background-color: rgb(255 255 255 / .05);
  backdrop-filter: blur(4px);
}

/* Carrossel de depoimentos */
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  transition: transform .4s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 .5rem;
  box-sizing: border-box;
}
.testimonial-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1);
  transition: box-shadow .2s ease;
}
.dot {
  height: .625rem;
  width: .625rem;
  border-radius: 9999px;
  background-color: var(--card-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color .2s ease;
}
.dot.active {
  background-color: var(--teal);
}
@media (min-width: 640px) {
  .carousel-slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 33.3333%; }
}

/* Efeito de entrada (fade + slide) — seção Início */
.reveal {
  opacity: 0;
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.reveal-left { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Lightbox: amplia fotos de galeria em tela cheia */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 20, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: .5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: .25rem .75rem;
}
.lightbox-close:hover {
  color: var(--gold);
}

/* Trajetória Profissional: linha do tempo com linha central, alternando esquerda/direita */
.timeline {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 1.25rem;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--card-border);
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: 1.25rem;
  top: .4rem;
  z-index: 10;
  height: .625rem;
  width: .625rem;
  border-radius: 9999px;
  background: var(--teal);
  transform: translateX(-50%);
}
.timeline-card {
  margin-left: 2.25rem;
  border-radius: .625rem;
  background: #fff;
  padding: .875rem 1.125rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / .05);
  flex: 1;
}
.timeline-date {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--teal);
}
.timeline-text {
  margin-top: .2rem;
  font-size: .8125rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--fg);
}
@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-1px);
  }
  .timeline-dot {
    left: 50%;
  }
  .timeline-card {
    margin-left: 0;
    width: calc(50% - 1.5rem);
    text-align: right;
    flex: none;
  }
  .timeline-item--reverse {
    flex-direction: row-reverse;
  }
  .timeline-item--reverse .timeline-card {
    margin-left: auto;
    text-align: left;
  }
}

/* FAQ: acordeão (mesmo modelo do site de referência) */
.faq-list {
  border-top: 1px solid var(--card-border);
}
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--fg);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  font-size: 1.375rem;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item details[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-item details > p {
  padding-bottom: 1.25rem;
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.625;
}

/* Artigos do blog em formato rico (parseados de Artigos/*.txt) */
.article-h3 {
  margin-top: 2rem;
  margin-bottom: .75rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--fg);
}
.article-h4 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}
.article-list {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.article-list-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.article-ordered-list {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.article-callout {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--section-alt);
  border-left: 3px solid var(--gold);
  border-radius: .5rem;
  font-size: .9375rem;
  line-height: 1.6;
}
.article-table-wrap {
  margin: 1.75rem 0;
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: .5rem;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.article-table th, .article-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  vertical-align: top;
}
.article-table th {
  background: var(--section-alt);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.article-table tr:last-child td {
  border-bottom: none;
}
.ref-marker {
  font-size: .75em;
  vertical-align: super;
  color: var(--teal);
}
.ref-marker a { text-decoration: underline; }
.article-refs {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}
.article-refs h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.article-refs ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.article-refs li {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
}
.article-refs a {
  color: var(--teal);
  text-decoration: underline;
}
.article-toc {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--section-alt);
  border: 1px solid var(--card-border);
  border-radius: .5rem;
}
.article-toc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  margin-bottom: .75rem;
  color: var(--fg);
}
.article-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.article-toc a {
  font-size: .875rem;
  color: var(--teal);
}
.article-toc a:hover {
  text-decoration: underline;
}
/* compensa o cabeçalho fixo ao pular direto pra um título via link de âncora */
h2[id] {
  scroll-margin-top: 7rem;
}

/* Badge do Hero ("Reumatologia e Clínica Médica") — pílula clara com ponto vinho */
.hero-badge {
  background-color: #EFE1E7; /* tom mais claro que --accent, mistura com branco */
  border: 1px solid var(--card-border); /* contorno suave, tom mais claro que o vinho sólido */
  color: var(--teal);
}
.icon-badge {
  background-color: var(--accent);
  color: var(--teal);
}
.hero-badge-dot {
  height: .5rem;
  width: .5rem;
  border-radius: 9999px;
  background-color: var(--teal);
  display: inline-block;
}

/* ===================================================================
   Reconstrução fiel ao site original (dragiovanakoptian.com) — 2026-08-18
   Utilitários extraídos do código-fonte real: opacidades, animações,
   gradiente de fusão do Hero, tamanhos responsivos do cabeçalho, etc.
   =================================================================== */

/* Opacidades sobre a cor primária (vinho) e sobre o creme (--gold), calculadas
   a partir dos mesmos hex já usados: --teal #782B4E, --gold #F4F3F0 */
.text-primary-80 { color: rgba(120, 43, 78, .8); }
.text-primary-65 { color: rgba(120, 43, 78, .65); }
.bg-primary-10 { background-color: rgba(120, 43, 78, .1); }
.border-primary-30 { border-color: rgba(120, 43, 78, .3); }
.bg-primary-foreground-10 { background-color: rgba(244, 243, 240, .1); }
.bg-primary-foreground-20 { background-color: rgba(244, 243, 240, .2); }
.text-primary-foreground-60 { color: rgba(244, 243, 240, .6); }
.text-primary-foreground-70 { color: rgba(244, 243, 240, .7); }
.text-primary-foreground-80 { color: rgba(244, 243, 240, .8); }
.text-primary-foreground-40 { color: rgba(244, 243, 240, .4); }
.border-primary-foreground-10 { border-color: rgba(244, 243, 240, .1); }
.bg-black-30 { background-color: rgba(0, 0, 0, .3); }
.bg-secondary-10 { background-color: rgba(155, 39, 91, .1); }
.bg-accent-30 { background-color: rgba(223, 195, 208, .3); }
.bg-primary-95 { background-color: rgba(120, 43, 78, .95); }

/* Whatsapp: no site dela usa a própria cor da marca (vinho), não o verde padrão */
.bg-whatsapp { background-color: var(--teal); }
.hover\:bg-whatsapp-dark:hover { background-color: var(--teal-dark); }
.text-whatsapp-foreground { color: #fff; }
/* Botão flutuante: mantido no verde real do WhatsApp, por pedido explícito do usuário */
.bg-whatsapp-green { background-color: #25D366; }
.hover\:bg-whatsapp-green-dark:hover { background-color: #20bd5a; }

/* Sombras próprias (extraídas dos tokens --shadow-card / --shadow-cta reais) */
.shadow-card { box-shadow: 0 4px 24px -4px rgba(75, 27, 49, .18); }
.shadow-cta { box-shadow: 0 8px 32px -4px rgba(75, 27, 49, .4); }

.rounded-3xl { border-radius: 1.5rem; }

/* Animações */
@keyframes pulse-op { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.animate-pulse { animation: pulse-op 2s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes ping-scale { 75%, 100% { transform: scale(2); opacity: 0; } }
.animate-ping { animation: ping-scale 2.5s cubic-bezier(0,0,.2,1) infinite; }

/* Gradiente de fusão da foto do Hero (desktop) — funde a foto em tela cheia com o fundo.
   Tom quente (mesmo de --bg-hero), pra parecer que a foto continua até o fundo do texto. */
.hero-fade-overlay {
  background: linear-gradient(90deg,
    var(--bg-hero) 0%,
    rgba(227,209,186,.95) 25%,
    rgba(227,209,186,.6) 55%,
    rgba(227,209,186,.2) 80%,
    transparent 100%);
}
.hero-fade-overlay-mobile {
  background: linear-gradient(to top, rgba(227,209,186,.85) 0%, transparent 100%);
}

/* Versão "legacy" do fundo/gradiente do Hero (creme original, pré-2026-08-25) — só usada na
   landing page "Infiltração Articular", cuja foto do Hero combina mais com o tom antigo. */
.hero-fade-overlay-legacy {
  background: linear-gradient(90deg,
    var(--bg) 0%,
    rgba(233,231,226,.95) 25%,
    rgba(233,231,226,.6) 55%,
    rgba(233,231,226,.2) 80%,
    transparent 100%);
}
.hero-fade-overlay-mobile-legacy {
  background: linear-gradient(to top, rgba(233,231,226,.85) 0%, transparent 100%);
}

/* Fundo desfocado da própria foto (Hero "foto inteira, sem corte") — preenche a caixa
   sem sobrar espaço vazio atrás da foto principal (que fica em object-contain, por cima) */
.blur-2xl { filter: blur(40px); }
.scale-110 { transform: scale(1.1); }
.opacity-50 { opacity: .5; }

/* Cabeçalho: tamanhos responsivos da logo (mask-image), igual ao original */
.h-20 { height: 5rem; }
.w-40 { width: 10rem; }
.hidden-until-md { display: none; }
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:inline-block { display: inline-block; }
  .md\:h-24 { height: 6rem; }
  .md\:w-48 { width: 12rem; }
  .md\:w-\[60\%\] { width: 60%; }
  .md\:w-\[50\%\] { width: 50%; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .lg\:h-28 { height: 7rem; }
  .lg\:w-56 { width: 14rem; }
  .lg\:w-1\/2 { width: 50%; }
  /* Teste: foto do Hero mais estreita no desktop, mais espaço pro texto (2026-08-29) */
  .lg\:w-\[40\%\] { width: 40%; }
  .lg\:w-\[35\%\] { width: 35%; }
}
.w-1\/2 { width: 50%; }

/* Header sempre vinho translúcido, sem mudar de cor ao rolar (igual ao original) */
#site-header.scrolled { background-color: rgba(120, 43, 78, .95); box-shadow: 0 2px 10px rgb(0 0 0 / .08); }
#site-header.scrolled .nav-link { color: rgba(255,255,255,.9); }
#site-header.scrolled .nav-link:hover { color: var(--gold); }
#site-header.scrolled .logo-img { background-color: #fff; }
#site-header.scrolled .menu-toggle-btn { color: #fff; }


/* Utilitários adicionais para a reconstrução completa (2026-08-18) */
.h-1 { height: .25rem; }
.h-2 { height: .5rem; }
.h-6 { height: 1.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-\[150px\] { height: 150px; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-\[32rem\] { height: 32rem; }
.w-2 { width: .5rem; }
.w-6 { width: 1.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.gap-1\.5 { gap: .375rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.p-4 { padding: 1rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-10 { margin-bottom: 2.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-32 { padding-top: 8rem; }
.max-w-sm { max-width: 24rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.bg-accent { background-color: var(--accent); }
.bg-teal-light { background-color: var(--teal-light); }
.border-teal-light { border-color: var(--teal-light); }
.border-primary-foreground-20 { border-color: rgba(244, 243, 240, .2); }
.object-center { object-position: center; }
.object-right { object-position: right; }
.fill-current { fill: currentColor; }
.opacity-30 { opacity: .3; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.bottom-0 { bottom: 0; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-1\/3 { transform: translateX(33.333%); }
.translate-y-1\/3 { transform: translateY(33.333%); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1); }
.hover\:opacity-80:hover { opacity: .8; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25); }
.transition-opacity { transition: opacity .2s ease; }
.text-teal-80 { color: rgba(120, 43, 78, .8); }

@media (min-width: 768px) {
  .md\:h-6 { height: 1.5rem; }
  .md\:w-6 { width: 1.5rem; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}
@media (min-width: 1024px) {
  .lg\:gap-14 { gap: 3.5rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}
