/* ============================================================
   DRA. NATALIA OLIVEIRA — LINK NA BIO
   Mobile first | Premium | Tecnológico | Acolhedor
   ============================================================ */

/* ------------------------------------------------------------
   ALTERAR CORES AQUI
   Paleta: fundo grafite/preto suave elegante + off-white sofisticado,
   verde institucional como acento principal, dourado só como detalhe discreto.
   ------------------------------------------------------------ */
:root {
  --bg-dark: #14161a;          /* grafite/preto suave (fundo principal escuro) */
  --bg-dark-2: #1b1e23;        /* grafite levemente mais claro, para cards no escuro */
  --bg-light: #f7f4ee;         /* off-white sofisticado (fundo principal claro) */
  --bg-light-2: #efeae0;       /* off-white levemente mais escuro, para cards no claro */

  --text-dark: #1d1d1b;        /* texto principal em fundo claro */
  --text-light: #f6f3ec;       /* texto principal em fundo escuro */
  --text-muted-dark: #5c5a54;  /* texto secundário em fundo claro */
  --text-muted-light: #c9c5ba; /* texto secundário em fundo escuro */

  --green: #3c6e5c;            /* verde institucional (usado em detalhes, links, ícones) */
  --green-dark: #2c5246;       /* verde institucional hover/pressionado */
  --gold: #b9985f;             /* dourado discreto (linhas, ícones, detalhes pontuais) */

  /* ALTERAR COR DOS BOTÕES DE WHATSAPP AQUI */
  --wa-green: #67ff7b;         /* verde de conversão — cor de referência solicitada */
  --wa-green-hover: #4fe867;   /* tom levemente mais escuro para hover/pressionado */
  --wa-green-text: #0d2b12;    /* texto escuro sobre o verde, para contraste */

  --border-light: rgba(29, 29, 27, 0.1);
  --border-dark: rgba(246, 243, 236, 0.12);

  --radius-lg: 26px;   /* cards e fotos — bem arredondado, sensação acolhedora */
  --radius-md: 18px;
  --radius-sm: 14px;   /* botões — estruturado, não "bolha", mais tecnológico */

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 560px;
  --section-pad-y: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

/* Traço fino — assinatura visual discreta, ecoa o filete da marca */
.divider {
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 auto 18px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.75;
}

/* ------------------------------------------------------------
   BOTÕES (máximo 3 principais na página — todos abrem WhatsApp)
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  padding: 18px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:active { transform: scale(0.98); }

/* Ícone do WhatsApp injetado via script.js — confirma o destino do clique */
.btn__icon { flex: none; width: 18px; height: 18px; }

/* Verde de conversão — usado só nos botões que abrem o WhatsApp */
.btn--primary {
  background: var(--wa-green);
  color: var(--wa-green-text);
  box-shadow: 0 14px 26px -8px rgba(103, 255, 123, 0.4);
}
.btn--primary:hover { background: var(--wa-green-hover); }

.btn--ghost {
  background: rgba(246, 243, 236, 0.04);
  border: 1px solid rgba(246, 243, 236, 0.32);
  color: var(--text-light);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(246, 243, 236, 0.08); }

.btn--outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--text-light);
  margin-top: 24px;
}
.btn--outline:hover { background: var(--green); }

/* ------------------------------------------------------------
   HERO — BLOCO 1
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--bg-dark);
}

/* A parte de cima da foto/vídeo (cortina escura) é a região mais protegida —
   o texto fica lá em cima, longe da figura da Dra. Natalia. */
.hero__video,
.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 26% 14%;
  pointer-events: none;
}

/* Fallback estático fica oculto por padrão; só aparece em
   prefers-reduced-motion (abaixo) ou se o vídeo não puder ser exibido. */
.hero__img--fallback {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__img--fallback { display: block; }
}

/* Degradê concentrado no topo (onde o texto fica) — revela a foto/vídeo sem
   vinheta no meio, com reforço maior na base: legibilidade do CTA e
   disfarce de qualquer marca d'água do vídeo nessa área. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.9) 0%,
    rgba(8, 8, 10, 0.74) 20%,
    rgba(8, 8, 10, 0.46) 38%,
    rgba(8, 8, 10, 0.24) 58%,
    rgba(8, 8, 10, 0.1) 72%,
    rgba(8, 8, 10, 0.52) 88%,
    rgba(8, 8, 10, 0.88) 100%
  );
}

/* Cabeçalho em cima, bloco de ação embaixo — hierarquia clara em telas
   altas de celular. O space-between distribui o respiro entre os dois. */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
  padding: 64px 26px 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

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

.hero__title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(26px, 7.2vw, 40px);
  line-height: 1.22;
  letter-spacing: 0.003em;
  color: var(--text-light);
  margin: 0 0 18px;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

/* Precisa se destacar sempre, independente do que estiver atrás na foto —
   texto claro + sombra + painel translúcido escuro por trás do bloco. */
.hero__subtitle {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 auto 30px;
  max-width: 400px;
  padding: 14px 18px;
  background: rgba(6, 7, 8, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* Ordem visual: legenda -> microtexto -> CTA. O CTA fica por último para
   ocupar a base da hero, onde cobre a marca d'água do vídeo. */
.hero__note {
  order: 2;
  margin: 0 0 22px;
  font-size: 13.5px;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.75);
}

/* CTA da hero um pouco mais largo que o .btn padrão, para garantir que
   cubra por completo a marca d'água no canto inferior do vídeo no mobile. */
.hero__cta {
  order: 3;
  width: calc(100% + 28px);
  max-width: 400px;
  margin: 0 -14px;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--border-dark);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}

/* ------------------------------------------------------------
   SEÇÕES GERAIS — curtas, elegantes, muito espaço em branco
   ------------------------------------------------------------ */
.section {
  padding: var(--section-pad-y) 26px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section--light { background: var(--bg-light); color: var(--text-dark); }
.section--dark  {
  background: var(--bg-dark);
  color: var(--text-light);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.section--dark > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section--dark > *:not(.media-card) { padding-left: 26px; padding-right: 26px; }
.section--dark .media-card:not(.media-card--rounded) { max-width: 100%; }

/* Fundo levemente mais escuro que --bg-light — separa a seção das
   seções claras vizinhas e dá contraste discreto aos cards brancos. */
.section--reviews {
  background: var(--bg-light-2);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.section--reviews > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section--reviews > *:not(.reviews-carousel) { padding-left: 26px; padding-right: 26px; }

.section--final {
  background: linear-gradient(160deg, var(--bg-dark) 0%, #1c2b25 100%);
  color: var(--text-light);
  max-width: 100%;
  padding: 84px 26px;
}

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin: 0 0 14px;
}
.eyebrow--inverse { color: var(--gold); }

.section__title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(25px, 6.4vw, 31px);
  line-height: 1.28;
  letter-spacing: 0.003em;
  margin: 0 0 24px;
  color: var(--text-dark);
}
.section__title--inverse { color: var(--text-light); }

.section__text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted-dark);
  margin: 0 0 22px;
}
.section__text--inverse { color: var(--text-muted-light); }

/* ------------------------------------------------------------
   CHECKLIST — "Para quem é a consulta"
   Lista dividida por hairlines — sem caixas coloridas preenchidas
   ------------------------------------------------------------ */
.checklist {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-top: 1px solid var(--border-light);
}
.checklist li {
  position: relative;
  padding: 17px 4px 17px 26px;
  border-bottom: 1px solid var(--border-light);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 26px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Entrada em cascata — fade-up suave, com leve atraso entre os itens.
   Reaparece toda vez que a seção volta a ficar visível (sobe ou desce). */
.checklist li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.checklist.is-visible li { opacity: 1; transform: translateY(0); }
.checklist.is-visible li:nth-child(1) { transition-delay: 0.05s; }
.checklist.is-visible li:nth-child(2) { transition-delay: 0.12s; }
.checklist.is-visible li:nth-child(3) { transition-delay: 0.19s; }
.checklist.is-visible li:nth-child(4) { transition-delay: 0.26s; }
.checklist.is-visible li:nth-child(5) { transition-delay: 0.33s; }
.checklist.is-visible li:nth-child(6) { transition-delay: 0.4s; }
.checklist.is-visible li:nth-child(7) { transition-delay: 0.47s; }

/* ------------------------------------------------------------
   FEATURE LIST — "O que é avaliado"
   ------------------------------------------------------------ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  margin: 0 0 34px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-light);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-dark);
}
.feature-list li:last-child { border-bottom: none; }

.feature-list__icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(185, 152, 95, 0.55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list__icon svg { width: 12px; height: 12px; }

/* ------------------------------------------------------------
   STEPS — "Como funciona o atendimento"
   Linha do tempo discreta — evita visual de módulo/curso
   ------------------------------------------------------------ */
.steps {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.steps__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding-bottom: 30px;
}
.steps__item:last-child { padding-bottom: 0; }
.steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 32px;
  width: 1px;
  height: calc(100% - 14px);
  background: var(--border-light);
}
.steps__number {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  position: relative;
  z-index: 1;
}
.steps__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  padding-top: 5px;
}

/* ------------------------------------------------------------
   MEDIA CARDS (fotos)
   As fotos já vêm com gradação cinematográfica própria —
   sem véu extra por cima, para não duplicar vinheta.
   ------------------------------------------------------------ */
.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  aspect-ratio: 6 / 5; /* padrão — ajustado por variante conforme a proporção real da foto */
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }

/* Proporções específicas — enquadramento intencional, sem corte forçado */
.media-card--eval { aspect-ratio: 1335 / 1178; }  /* foto paisagem (avaliação em consulta) */
.media-card--tech { aspect-ratio: 1335 / 1178; }  /* foto paisagem (tricoscópio em uso) */
.media-card--authority {                          /* retrato — mostra contexto, não só o rosto */
  aspect-ratio: 1023 / 1537;
}
.media-card--authority img { object-position: center 18%; }

/* Fotos de sangria total (seções escuras) — rentes ao topo, dissolvem no fundo */
.section--dark .media-card:not(.media-card--rounded):first-child {
  border-radius: 0;
  box-shadow: none;
  margin: calc(-1 * var(--section-pad-y)) 0 42px;
  aspect-ratio: auto;
  height: min(52vh, 420px);
}
.section--dark .media-card:not(.media-card--rounded)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
  pointer-events: none;
}

.media-card--rounded { border-radius: var(--radius-lg); margin-top: 30px; border: 1px solid var(--border-light); }

/* ------------------------------------------------------------
   CARROSSEL — "Tecnologia aplicada à avaliação"
   Scroll nativo com snap (arrasto suave no dedo) + loop e
   autoplay controlados via JS em script.js (initCarousel).
   ------------------------------------------------------------ */
.carousel { margin-top: 4px; }

.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.carousel__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light-2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}
.carousel__media img { width: 100%; height: 100%; }
.carousel__media--cover img { object-fit: cover; }
.carousel__media--contain img { object-fit: contain; }

.carousel__caption {
  margin: 14px 0 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel__dot.is-active {
  background: var(--green);
  transform: scale(1.3);
}

.carousel__note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  font-style: italic;
}

/* ------------------------------------------------------------
   CARROSSEL DE AVALIAÇÕES — "Avaliações no Google"
   Mesmo mecanismo de scroll + snap do carrossel de fotos (ver
   initReviewsCarousel/createCarousel em script.js), com largura
   crescente por breakpoint para caber mais cards por vez e setas
   discretas apenas no desktop.
   ------------------------------------------------------------ */
.reviews-carousel {
  position: relative;
  max-width: 560px;
  padding: 0 26px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .reviews-carousel { max-width: 760px; }
}
@media (min-width: 960px) {
  .reviews-carousel { max-width: 1100px; padding: 0 56px; }
}

.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.reviews-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 8px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
@media (min-width: 640px) {
  .reviews-slide { flex: 0 0 50%; }
}
@media (min-width: 960px) {
  .reviews-slide { flex: 0 0 33.3333%; }
}

.review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: 0 14px 30px -14px rgba(29, 29, 27, 0.18);
  text-align: left;
}

.review-card__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.review-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__footer { display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-weight: 600; font-size: 13.5px; color: var(--text-dark); }
.review-card__time { font-size: 11.5px; color: var(--text-muted-dark); }

.review-card__source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted-dark);
  letter-spacing: 0.02em;
}
.review-card__source svg { width: 13px; height: 13px; flex: none; }

.reviews-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(29, 29, 27, 0.25);
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.reviews-arrow:hover { border-color: var(--green); background: var(--bg-light-2); }
.reviews-arrow svg { width: 16px; height: 16px; }
.reviews-arrow--prev { left: 4px; }
.reviews-arrow--next { right: 4px; }

@media (min-width: 960px) {
  .reviews-arrow { display: flex; }
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.reviews-cta:hover { border-color: var(--green); background: rgba(60, 110, 92, 0.06); }
.reviews-cta svg { width: 16px; height: 16px; flex: none; }

/* ------------------------------------------------------------
   LOCATION CARD — "Localização"
   ------------------------------------------------------------ */
.location-card {
  position: relative;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 38px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 2px;
  background: var(--gold);
  opacity: 0.8;
}

.location-card__name {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--text-light);
  margin: 0 0 8px;
}

.location-card__detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-light);
  margin: 0 0 2px;
}

/* ------------------------------------------------------------
   FOOTER — institucional, discreto, sem disputar atenção com o
   resto da página. Logo + nome empilhados e centralizados no
   mobile; lado a lado a partir do breakpoint de telas maiores.
   ------------------------------------------------------------ */
.footer {
  background: var(--bg-dark);
  color: var(--text-muted-light);
  text-align: center;
  padding: 40px 26px 34px;
  border-top: 1px solid var(--border-dark);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__logo {
  height: 26px;
  width: auto;
  flex: none;
  opacity: 0.85;
}

.footer__info { display: flex; flex-direction: column; gap: 2px; }

.footer__name {
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}
.footer__tagline {
  font-size: 11.5px;
  color: var(--text-muted-light);
  opacity: 0.85;
  margin: 0;
}
.footer__place {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  opacity: 0.75;
  margin: 4px 0 0;
}

.footer__copyright {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted-light);
  opacity: 0.6;
  margin: 0 0 8px;
}

/* Crédito discreto — bem menor que o resto, não compete pela atenção */
.footer__credit {
  font-size: 10px;
  color: var(--text-muted-light);
  opacity: 0.4;
  margin: 0;
}

@media (min-width: 640px) {
  .footer__brand {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .footer__info { align-items: flex-start; text-align: left; }
}

/* ------------------------------------------------------------
   FADE-IN SUAVE AO ROLAR (sem paralaxe pesado)
   ------------------------------------------------------------ */
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* "Durante a consulta" acende suavemente ao entrar na tela — mesmo
   fade-up de sempre, com um brilho gradual somado por cima. */
.section--glow {
  filter: brightness(0.62);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 1s ease;
}
.section--glow.is-visible {
  filter: brightness(1);
}

/* ------------------------------------------------------------
   BOTÃO FLUTUANTE DE WHATSAPP
   Mesma cor de conversão dos botões principais, com glow discreto
   e pulso elegante em velocidade média. Fica oculto enquanto o
   hero está visível (já tem CTA inline) e aparece ao rolar.
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--wa-green-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 24px -6px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(103, 255, 123, 0.12);
  z-index: 40;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.whatsapp-float:hover { background: var(--wa-green-hover); }
.whatsapp-float svg { width: 25px; height: 25px; position: relative; z-index: 1; }

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.45;
  animation: whatsappPulse 2.2s ease-out infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float__pulse { animation: none; }
}

/* ------------------------------------------------------------
   FAQ — accordion discreto, tipografia da marca (não genérico)
   ------------------------------------------------------------ */
.faq {
  border-top: 1px solid var(--border-light);
  text-align: left;
}
.faq__item {
  border-bottom: 1px solid var(--border-light);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: none;
  margin: 0;
  padding: 19px 2px;
  font-family: var(--font-title);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq__icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.faq__item.is-open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__item.is-open .faq__icon::before { background: var(--gold); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__answer-inner { overflow: hidden; }
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }

.faq__answer p {
  margin: 0 0 20px;
  padding-right: 34px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted-dark);
}

/* ------------------------------------------------------------
   RESPONSIVE — telas maiores (ajuste leve, mantendo mobile first)
   ------------------------------------------------------------ */
@media (min-width: 640px) {
  .hero__title { font-size: 44px; }
}
