/* ============================================================
   Nádia Côrtes — Cirurgia Plástica
   Design tokens extraídos do arquivo real do logo:
   petróleo #113239 · champagne #A98C7A
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-display.woff2') format('woff2');
}

@font-face {
  font-family: 'Wix Madefor Text';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/wix-madefor-text.woff2') format('woff2');
}

:root {
  --ink: #113239;
  --ink-soft: #4E6167;
  --ink-faint: #7C8C90;
  --accent: #A98C7A;
  --accent-deep: #6E5643;
  --accent-soft: #EFE6DC;
  --paper: #F6F8F7;
  --surface: #FFFFFF;
  --line: #E1E7E5;

  /* dark "statement" sections — preto com tons roxos, referência ao site antigo */
  --night: #0C0912;
  --night-2: #17101F;
  --violet: #8E6BC9;
  --violet-deep: #4B2E73;
  --violet-glow: rgba(142, 107, 201, 0.28);

  --footer-bg: #0C0912;
  --footer-text: #EDE7DC;
  --footer-text-soft: #9FB0AF;
  --footer-line: rgba(237, 231, 220, 0.14);
  --footer-accent: #C7A688;

  --wrap: 1120px;
  --wrap-narrow: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Wix Madefor Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.wrap-narrow {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin: 0 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--night);
  color: var(--paper);
}
.btn-primary:hover { background: #1E1430; }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn svg { width: 15px; height: 15px; flex: none; }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 9, 18, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--footer-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand img { height: 30px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.main-nav a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--footer-text-soft);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.main-nav a:not(.btn):hover,
.main-nav a.active {
  color: var(--footer-text);
  border-bottom-color: var(--footer-accent);
}

.site-header .btn-primary {
  background: var(--footer-accent);
  color: #241C14;
}
.site-header .btn-primary:hover { background: #D8B492; }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--footer-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-label span { top: 9px; }
.nav-toggle-label span::before { top: -8px; }
.nav-toggle-label span::after { top: 8px; }

@media (max-width: 880px) {
  .nav-toggle-label { display: block; }
  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #150F1F;
    border-bottom: 1px solid var(--footer-line);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px clamp(20px, 5vw, 40px) 24px;
    display: none;
  }
  .main-nav a:not(.btn) { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--footer-line); }
  .main-nav .btn { margin-top: 14px; }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .nav-toggle:checked ~ .nav-toggle-label span { transform: rotate(45deg); top: 9px; }
  .nav-toggle:checked ~ .nav-toggle-label span::before { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-90deg); top: 0; }
}

/* ---------------- Page hero (procedure / static pages) ---------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--night);
  padding: clamp(56px, 10vw, 96px) 0 clamp(48px, 8vw, 76px);
}
.page-hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.4;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 15% -10%, var(--violet-glow), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(142,107,201,0.14), transparent 55%);
  mix-blend-mode: screen;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8,6,13,0.92) 12%, rgba(8,6,13,0.6) 55%, rgba(8,6,13,0.3));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--footer-accent); }
.page-hero h1 {
  color: var(--footer-text);
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero .lede {
  max-width: 62ch;
  font-size: 18px;
  color: var(--footer-text-soft);
}

/* ---------------- Procedure hero (split, com foto da Dra. Nádia) ---------------- */

.proc-hero { background: linear-gradient(to right, var(--paper) 0%, #DEE2E1 58%, #C9D0D1 100%); }
.proc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: clamp(28px, 5vw, 56px);
}
.proc-hero-grid.no-media { grid-template-columns: 1fr; }
.proc-hero-grid.no-media .proc-hero-content { max-width: 62ch; margin: 0 auto; }
.proc-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 76px) 0;
}
.proc-hero-content .eyebrow { color: var(--accent-deep); }
.proc-hero-content h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.14;
  margin-bottom: 20px;
  max-width: 15ch;
}
.proc-hero-content h1 em { font-style: italic; color: var(--accent-deep); }
.proc-hero-content p.lede { font-size: 17px; max-width: 46ch; margin-bottom: 30px; }
.proc-hero-content .btn-whatsapp { align-self: flex-start; padding: 15px 28px; font-size: 14px; }
.proc-hero-micro { font-size: 13px; color: var(--ink-faint); margin-top: 16px; }
.proc-hero-stars { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.proc-hero-stars .stars { display: flex; gap: 2px; }
.proc-hero-stars svg { width: 15px; height: 15px; color: var(--accent); }
.proc-hero-stars span { font-size: 12.5px; color: var(--ink-faint); }

.proc-hero-media {
  position: relative;
  min-height: 340px;
  background: var(--ink);
}
.proc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(to right, transparent, black 7%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%);
}
.proc-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(12,9,18,0.35));
}
@media (max-width: 860px) {
  .proc-hero-media img { mask-image: none; -webkit-mask-image: none; }
}

@media (max-width: 860px) {
  .proc-hero-grid { grid-template-columns: 1fr; }
  .proc-hero-content { order: 0; padding-top: 40px; }
  .proc-hero-media { order: 1; min-height: 0; height: auto; aspect-ratio: 4 / 3; margin-top: 28px; }
  .proc-hero-content h1 { max-width: none; }
}

.proc-badges { background: var(--night); }
.proc-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--footer-line);
}
.proc-badge { background: var(--night); padding: 26px clamp(20px, 4vw, 34px); }
.proc-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 18px;
  color: #F4F0E9;
  margin-bottom: 6px;
}
.proc-badge span {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--footer-text-soft);
}
@media (max-width: 700px) {
  .proc-badges-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .proc-badges-grid::-webkit-scrollbar { display: none; }
  .proc-badge { flex: none; width: 82%; scroll-snap-align: start; }
}

/* ---------------- Section rhythm ---------------- */

section.section {
  padding: clamp(48px, 8vw, 84px) 0;
}
section.section.bordered { border-top: 1px solid var(--line); }
section.section.tight { padding-top: 0; }
section.section.tint { background: var(--accent-soft); }

/* ---------------- Dark full-bleed section (ex: "Como funciona") ---------------- */

.section-dark {
  background:
    radial-gradient(ellipse 55% 80% at 85% 0%, var(--violet-glow), transparent 60%),
    var(--night);
  padding: clamp(48px, 8vw, 84px) 0;
}
.section-dark .eyebrow { color: var(--footer-accent); }
.section-dark .h-section { color: #F4F0E9; }
.section-dark .process-list { display: flex; flex-direction: column; }
.section-dark .process-step {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--footer-line);
  padding: 26px 0;
}
.section-dark .process-list .process-step:last-child { border-bottom: none; }
.section-dark .process-step h3 { color: var(--footer-accent); }
.section-dark .process-step p { color: var(--footer-text-soft); }
.section-dark .lede { color: var(--footer-text-soft); }
.section-dark .check-list li { color: var(--footer-text-soft); }

h2.h-section {
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.15;
  margin-bottom: 18px;
}

p.lede {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-bottom: 32px;
}

/* ---------------- Hero (home) ---------------- */

.home-hero {
  position: relative;
  min-height: min(84vh, 720px);
  display: flex;
  align-items: flex-end;
  background: var(--night);
  overflow: hidden;
}
.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 70% at 0% 15%, rgba(142,107,201,0.5), transparent 60%),
    radial-gradient(ellipse 45% 60% at 100% 85%, rgba(142,107,201,0.4), transparent 55%);
  mix-blend-mode: screen;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,13,0.94) 10%, rgba(8,6,13,0.4) 55%, rgba(8,6,13,0.12));
}
.home-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px clamp(20px, 5vw, 40px) 72px;
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
}
.home-hero .eyebrow { color: var(--footer-accent); }
.home-hero h1 {
  color: #F6F1E8;
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 22px;
}
.home-hero p.lede { color: #D9DEDA; max-width: 52ch; margin-bottom: 30px; }
.home-hero .btn-primary { background: var(--footer-accent); color: #241C14; }
.home-hero .btn-primary:hover { background: #D8B492; }
.home-hero .btn-ghost { border-color: rgba(246,241,232,0.4); color: #F6F1E8; }
.hero-btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .home-hero { min-height: auto; }
  .home-hero-content { padding: 40px clamp(20px, 5vw, 40px) 48px; }
  .home-hero h1 { font-size: 30px; line-height: 1.18; margin-bottom: 16px; }
  .home-hero p.lede { font-size: 14.5px; margin-bottom: 24px; }
  .hero-btn-row { flex-direction: column; align-items: stretch; }
  .hero-btn-row .btn { justify-content: center; }
}

/* ---------------- Stat band (referência Unique) ---------------- */

.stat-band {
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, var(--violet-glow), transparent 60%),
    var(--night);
  text-align: center;
  padding: clamp(56px, 9vw, 92px) 0;
}
.stat-band-inner { max-width: 840px; margin: 0 auto; }
.stat-band .eyebrow { justify-content: center; display: flex; color: var(--footer-accent); }
.stat-band h2 {
  font-family: 'Wix Madefor Text', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.35;
  color: #F4F0E9;
  margin-bottom: 30px;
}
.stat-band h2 strong { color: var(--footer-accent); font-weight: 700; }
.stat-band .btn-primary { background: var(--footer-accent); color: #241C14; }
.stat-band .btn-primary:hover { background: #D8B492; }

/* ---------------- Location strip ---------------- */

.location-strip { padding: 0 0 clamp(48px, 8vw, 76px); }
.location-carousel { position: relative; }
.location-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.location-row::-webkit-scrollbar { display: none; }
.location-card {
  flex: none;
  scroll-snap-align: start;
  width: clamp(230px, 27vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--accent-soft);
}
.location-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  font-size: 12.5px;
  font-weight: 500;
  color: #F4F0E9;
}
.location-card .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent-deep);
  background: linear-gradient(135deg, var(--accent-soft), #F6EFE7);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}
.location-card .placeholder svg { width: 28px; height: 28px; opacity: 0.7; }

/* ---------------- Procedure cards grid ---------------- */

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .proc-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 560px) {
  .proc-grid { grid-template-columns: 1fr; }
  .proc-card { aspect-ratio: 16 / 11; padding: 22px 20px; }
}

.proc-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  isolation: isolate;
  /* placeholder até termos fotos reais de cada procedimento */
  background:
    radial-gradient(ellipse 90% 70% at 15% 100%, rgba(142,107,201,0.35), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(169,140,122,0.25), transparent 55%),
    var(--night);
  transition: transform 0.2s ease;
}
.proc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(6,4,10,0.75) 0%, rgba(6,4,10,0.15) 60%, transparent 100%);
}
.proc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.proc-card:hover { transform: translateY(-4px); }
.proc-card .tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #2A1E14;
  background: var(--footer-accent);
  border-radius: 2px;
  padding: 3px 8px;
  width: fit-content;
  margin-bottom: 12px;
}
.proc-card h3 { font-size: 24px; color: #F6F1E8; margin-bottom: 8px; }
.proc-card p { color: #D9D2C8; font-size: 14px; margin-bottom: 18px; }
.proc-card .go {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #F6F1E8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(246,241,232,0.45);
  border-radius: 999px;
  padding: 11px 20px;
  width: fit-content;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.proc-card .go svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.proc-card:hover .go { border-color: var(--footer-accent); background: rgba(246,241,232,0.08); }
.proc-card:hover .go svg { transform: translateX(3px); }

/* ---------------- Two-column split ---------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: 4px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ---------------- Contact card (página Contato) ---------------- */

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 24px 48px -30px rgba(17,50,57,0.18);
}
.contact-info-list { list-style: none; margin: 22px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-info-list strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 2px; }
.contact-info-list span { font-size: 13.5px; color: var(--ink-soft); }
.contact-social { display: flex; gap: 20px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-social .social-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.contact-social .social-link svg { width: 18px; height: 18px; color: var(--accent); }
.contact-social .social-link:hover { color: var(--ink); }
.contact-map { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 48px -30px rgba(17,50,57,0.18); border: 1px solid var(--line); }
.contact-map iframe { display: block; }

/* ---------------- Candidata / listas ---------------- */

.check-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 62ch; }
.check-list li { font-size: 15.5px; color: var(--ink-soft); padding-left: 24px; position: relative; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------------- Indicação clínica (cards escuros) ---------------- */

.indication-head, .process-head { text-align: center; max-width: 60ch; margin: 0 auto 40px; }
.indication-head .eyebrow, .process-head .eyebrow { justify-content: center; display: flex; }

.indication-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.indication-card {
  background: var(--night);
  border: 1px solid var(--footer-line);
  border-radius: 8px;
  padding: 30px 32px;
}
.indication-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--footer-accent);
  margin-bottom: 12px;
}
.indication-card p { color: var(--footer-text-soft); font-size: 14.5px; line-height: 1.65; }
.indication-card p strong { color: var(--footer-text); font-weight: 600; }
@media (max-width: 700px) { .indication-grid { grid-template-columns: 1fr; } }

/* ---------------- Como funciona (passo a passo) ---------------- */

.process-list { display: flex; flex-direction: column; gap: 16px; }
.process-step {
  background: var(--night);
  border: 1px solid var(--footer-line);
  border-radius: 8px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: start;
}
.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--footer-accent);
  color: #241C14;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--footer-accent);
  margin-bottom: 10px;
}
.process-step p { color: var(--footer-text-soft); font-size: 14.5px; line-height: 1.65; }
@media (max-width: 600px) {
  .process-step { grid-template-columns: 1fr; }
  .process-step-num { margin-bottom: 4px; }
}

/* ---------------- Timeline (recuperação) ---------------- */

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(26px, 4vw, 44px) clamp(26px, 4vw, 48px);
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 24px 48px -30px rgba(17,50,57,0.24);
}
.timeline-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-icon { width: 22px; height: 22px; color: var(--accent); flex: none; }
.timeline-icon svg { width: 100%; height: 100%; }
.timeline-label { color: var(--ink-soft); }
.timeline-value {
  color: var(--accent-deep);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  background: var(--accent-soft);
  padding: 6px 15px;
  border-radius: 999px;
  font-size: 13.5px;
}
.timeline-note {
  font-size: 13px;
  color: var(--ink-faint);
  max-width: 40ch;
  margin: 0;
}
.timeline-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-whatsapp-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #0B2116;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 17px;
  border-radius: 999px;
  white-space: nowrap;
  animation: wa-glow 2.8s ease-in-out infinite;
}
.btn-whatsapp-mini:hover { background: #2FE277; }
.btn-whatsapp-mini svg { width: 14px; height: 14px; }
@media (prefers-reduced-motion: reduce) { .btn-whatsapp-mini { animation: none; } }

.fact-callout {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  background: var(--accent-soft);
  border-radius: 20px;
  text-align: center;
}
.fact-callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
}
.fact-callout .fact-callout-question {
  color: var(--ink);
  font-weight: 600;
  margin-top: 12px;
}
.fact-callout .btn-whatsapp-mini { margin-top: 18px; }
@media (max-width: 560px) { .fact-callout { padding: 26px 22px; } }

/* ---------------- FAQ ---------------- */

.faq-list { display: flex; flex-direction: column; max-width: 72ch; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { font-family: 'Wix Madefor Text', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 15px; }

.faq-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.faq-head .eyebrow, .faq-head .h-section { text-align: center; }
.faq-accordion { border-top: 1px solid var(--line); }
.faq-accordion details { border-bottom: 1px solid var(--line); }
.faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  cursor: pointer;
  list-style: none;
  font-family: 'Wix Madefor Text', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 16px; height: 16px; }
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--accent-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq-plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-plus::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-accordion details[open] .faq-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-accordion .faq-answer { margin: 0; padding: 0 26px 22px 2px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

/* ---------------- CTA band ---------------- */

.cta-band {
  background:
    radial-gradient(ellipse 70% 140% at 100% 0%, rgba(169,140,122,0.16), transparent 65%),
    var(--accent-soft);
  border-radius: 16px;
  padding: clamp(32px, 6vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 28px 56px -34px rgba(110,86,67,0.35);
}
.cta-band h2 { font-size: clamp(24px, 3.6vw, 32px); max-width: 22ch; }
.cta-band p { color: var(--accent-deep); margin-top: 8px; max-width: 40ch; }
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-band-buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(110,86,67,0.28); color: var(--accent-deep); }
.cta-band .btn-ghost:hover { border-color: var(--accent-deep); }
.cta-band-stars { display: flex; align-items: center; gap: 8px; }
.cta-band-stars .stars { display: flex; gap: 2px; }
.cta-band-stars svg { width: 14px; height: 14px; color: var(--accent-deep); }
.cta-band-stars span { font-size: 12px; color: var(--accent-deep); opacity: 0.75; }

/* ---------------- Instagram band ---------------- */

.ig-band {
  background:
    radial-gradient(ellipse 55% 90% at 90% 0%, var(--violet-glow), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 100%, rgba(142,107,201,0.16), transparent 55%),
    var(--night);
  color: #E7E2DC;
  padding: clamp(48px, 8vw, 76px) 0 clamp(40px, 7vw, 64px);
}
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ig-band .eyebrow { color: var(--footer-accent); }
.ig-band h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  color: #F4F0E9;
  margin-bottom: 12px;
}
.ig-band p.sub { max-width: 46ch; font-size: 15px; color: #ABA79E; }
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  border: 1px solid #3E4A48;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #F4F0E9;
}
.ig-follow:hover { border-color: var(--footer-accent); }
.ig-follow svg { width: 15px; height: 15px; }

.ig-carousel { position: relative; }

.ig-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ig-row::-webkit-scrollbar { display: none; }

.ig-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 18, 16, 0.72);
  border: 1px solid rgba(237, 231, 220, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.ig-arrow:hover { background: var(--footer-accent); border-color: var(--footer-accent); }
.ig-arrow:hover svg { color: #241C14; }
.ig-arrow svg { width: 18px; height: 18px; color: #F4F0E9; }
.ig-arrow.prev { left: -6px; }
.ig-arrow.next { right: -6px; }
@media (max-width: 680px) { .ig-arrow { display: none; } }
.ig-card {
  flex: none;
  scroll-snap-align: start;
  width: 280px;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #1A211F;
  scroll-snap-align: start;
}
.ig-card.video { aspect-ratio: 9 / 16; }
.ig-card img, .ig-card video { width: 100%; height: 100%; object-fit: cover; }
.ig-card-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
  font-size: 12.5px;
  font-weight: 500;
  color: #F4F0E9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ig-mute-badge {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-mute-badge svg { width: 13px; height: 13px; color: #F4F0E9; }

/* ---------------- Reviews + map ---------------- */

.reviews-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.reviews-head .eyebrow, .reviews-head .h-section { text-align: center; }
.reviews-score-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-score-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }

.reviews-section {
  background:
    radial-gradient(ellipse 55% 90% at 85% 0%, var(--violet-glow), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 100%, rgba(142,107,201,0.14), transparent 55%),
    var(--night);
  border-top: none;
}
.reviews-section .eyebrow { color: var(--footer-accent); }
.reviews-section .h-section { color: #F4F0E9; }
.reviews-section .reviews-score-label { color: #F4F0E9; }
.reviews-section .reviews-count { color: var(--footer-text-soft); }
.reviews-section .btn-ghost { border-color: rgba(246,241,232,0.3); color: #F4F0E9; }
.reviews-section .btn-ghost:hover { border-color: var(--footer-accent); }
.reviews-stars { display: flex; gap: 2px; }
.reviews-stars svg { width: 15px; height: 15px; color: var(--accent); }
.reviews-stars.small svg { width: 14px; height: 14px; }
.reviews-count { font-size: 13px; color: var(--ink-faint); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px 26px;
  box-shadow: 0 18px 40px -30px rgba(17, 50, 57, 0.35);
  display: flex;
  flex-direction: column;
}
.review-quote {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1;
  color: var(--accent-soft);
}
.review-card .reviews-stars { margin-bottom: 16px; }
.review-text { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); font-style: italic; flex: 1; margin-bottom: 22px; }
.review-foot { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-foot-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-author { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.review-source { font-size: 12px; color: var(--ink-faint); }

.reviews-actions { text-align: center; margin-bottom: 28px; }
.reviews-map { border-radius: 8px; overflow: hidden; height: 320px; border: 1px solid var(--line); }

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-map { height: 240px; }
}

/* ---------------- Footer ---------------- */

.site-footer {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(142,107,201,0.12), transparent 60%),
    var(--footer-bg);
  color: var(--footer-text-soft);
  padding: clamp(48px, 7vw, 72px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--footer-line);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col .f-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-text-soft);
  margin-bottom: 14px;
}
.footer-col.brand img { height: 34px; width: auto; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col p { font-size: 13.5px; color: var(--footer-text-soft); }
.footer-col a:hover { color: var(--footer-text); }
.footer-pending { color: var(--footer-accent); font-size: 11px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--footer-text); margin-bottom: 8px; }
.footer-credential { font-size: 12px; color: var(--footer-accent); letter-spacing: 0.02em; margin-bottom: 14px; }
.footer-bio { font-size: 13.5px; line-height: 1.65; color: var(--footer-text-soft); max-width: 34ch; }
.footer-row-2 {
  grid-template-columns: 1fr 1fr;
  max-width: 620px;
  border-bottom: none;
  padding-top: 8px;
  padding-bottom: 36px;
}
@media (max-width: 720px) { .footer-row-2 { grid-template-columns: 1fr 1fr; max-width: none; } }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.social-link svg { width: 17px; height: 17px; color: var(--footer-accent); flex: none; }
.social-link:hover svg { color: var(--footer-text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--footer-text-soft);
}

/* ---------------- Floating WhatsApp ---------------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #113239;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(17, 50, 57, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
.wa-float:hover { background: #0B2226; transform: translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------------- Utility ---------------- */

.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------------- Reveal on scroll (só na home, via body.reveal-mode) ---------------- */

html.js-reveal body.reveal-mode [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1), transform 0.8s cubic-bezier(0.16, 0.8, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
html.js-reveal body.reveal-mode [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.reveal-mode [data-reveal] { transition: none; opacity: 1; transform: none; }
}

/* ---------------- Final CTA (antes do rodapé) ---------------- */

.final-cta {
  background:
    radial-gradient(ellipse 60% 70% at 20% 0%, var(--violet-glow), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(142,107,201,0.16), transparent 55%),
    var(--night);
  padding: clamp(64px, 10vw, 108px) 0;
  text-align: center;
}
.final-cta .eyebrow { justify-content: center; display: flex; color: var(--footer-accent); }
.final-cta h2 {
  color: #F4F0E9;
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.12;
  max-width: 18ch;
  margin: 0 auto 22px;
}
.final-cta h2 em { font-style: italic; color: var(--footer-accent); }
.final-cta p.lede {
  color: #ABA79E;
  max-width: 52ch;
  margin: 0 auto 34px;
  font-size: 16.5px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.btn-whatsapp {
  background: #25D366;
  color: #0B2116;
  animation: wa-glow 2.8s ease-in-out infinite;
}
.btn-whatsapp:hover { background: #2FE277; }
.btn-whatsapp svg { width: 17px; height: 17px; }

@keyframes wa-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
}
.wa-float { animation: wa-glow 2.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp, .wa-float { animation: none; }
}
.final-cta .btn-ghost { border-color: rgba(246,241,232,0.32); color: #F4F0E9; }
.final-cta .btn-ghost:hover { border-color: var(--footer-accent); }
.final-cta-line { font-size: 13.5px; color: #8F8B82; }
.final-cta-line strong { color: #D9D2C8; font-weight: 600; }
@media (max-width: 480px) { .final-cta-actions { flex-direction: column; align-items: stretch; } }
