/* ============================================
   Dra. Marina Fernanda — Landing Page
   Premium navy + gold · Mobile-first
   ============================================ */

:root {
  /* Palette */
  --navy-900: #061a36;
  --navy-800: #0b2545;
  --navy-700: #13315c;
  --navy-600: #1e4480;
  --navy-50:  #eef2f8;

  --gold-700: #9a7d3d;
  --gold-600: #b69256;
  --gold-500: #c9a961;
  --gold-300: #e4d5a8;
  --gold-100: #f4ecd7;

  --cream:    #faf6ee;
  --cream-2:  #f3ecdc;
  --white:    #ffffff;
  --paper:    #fcfaf6;

  --ink:      #0f1b2d;
  --ink-2:    #2a3247;
  --muted:    #5d6679;
  --line:     #e6e0d2;

  --green:    #16a34a;
  --green-dk: #128a3e;
  --green-shadow: rgba(22, 163, 74, 0.28);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sizing */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06), 0 2px 6px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 4px 14px rgba(11, 37, 69, 0.08), 0 12px 32px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 8px 24px rgba(11, 37, 69, 0.12), 0 24px 60px rgba(11, 37, 69, 0.14);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

/* Layout */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 760px; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 18px;
}
.eyebrow__line {
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow--center { justify-content: center; text-align: center; }
.eyebrow--center .eyebrow__line { flex: 0 0 40px; }
.eyebrow--light { color: var(--gold-300); }
.eyebrow--light .eyebrow__line { background: var(--gold-300); opacity: 0.6; }

/* ---- Headings ---- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 7.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}
.display--sm { font-size: clamp(28px, 5.5vw, 44px); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold-600); font-weight: 500; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--cta {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 14px var(--green-shadow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--cta:hover { background: var(--green-dk); transform: translateY(-1px); box-shadow: 0 6px 18px var(--green-shadow); }
.btn--cta:active { transform: translateY(0); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--ghost-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.32);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-300); color: var(--gold-300); }

.cta-row { display: flex; justify-content: center; margin-top: 28px; }

/* Top bar (decorative thin band) */
.topbar {
  background: var(--navy-900);
  height: 6px;
  padding: 0;
  border-bottom: 1px solid var(--gold-700);
  position: relative;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.6), transparent);
  opacity: 0.45;
  pointer-events: none;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 26, 54, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy-800);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.5);
}
.brand__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  margin: 0 1px 4px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.brand__tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 420px) {
  /* keep brand text on mobile */
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(168deg, var(--paper) 0%, var(--cream) 55%, var(--cream-2) 100%);
  color: var(--ink);
  overflow: hidden;
  padding: 28px 0 0;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 78% 46%, rgba(11, 37, 69, 0.08), transparent 55%),
    radial-gradient(circle at 86% 16%, rgba(201, 169, 97, 0.16), transparent 50%);
}

/* Decorative aura centred on the doctor's portrait */
.hero__portrait {
  position: relative;
  margin: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: end;
}
.hero__aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.hero__aura-ring,
.hero__aura-ring--mid,
.hero__aura-ring--inner {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(11, 37, 69, 0.12);
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
}
.hero__aura-ring { width: 130%; border-color: rgba(11, 37, 69, 0.10); }
.hero__aura-ring--mid { width: 100%; border-color: rgba(11, 37, 69, 0.16); }
.hero__aura-ring--inner { width: 72%; border-color: rgba(201, 169, 97, 0.55); }

.hero__aura-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.30) 0%, rgba(201, 169, 97, 0.12) 35%, transparent 65%);
  filter: blur(10px);
}

.hero__aura-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  background-image:
    radial-gradient(circle at center, rgba(11, 37, 69, 0.16) 1px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 60%);
          mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 60%);
}

/* Decorative gold arc near top-right of aura */
.hero__aura-arc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  opacity: 0.4;
  transform: translate(-50%, -50%) rotate(-30deg);
  clip-path: polygon(50% 0, 100% 0, 100% 50%, 80% 60%, 60% 50%, 50% 30%);
}
.hero__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.20), transparent 70%);
  filter: blur(20px);
}
.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.hero__copy { padding-top: 16px; }
.hero .eyebrow { color: var(--gold-300); }
.hero .eyebrow__line { background: var(--gold-300); opacity: 0.7; }

.hero h1 { color: var(--ink); }
.hero h1 em { color: var(--gold-700); }

.hero__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 30em;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__pills li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.hero__pills li svg {
  flex-shrink: 0;
  color: var(--gold-700);
  margin-top: 1px;
}

/* Portrait — pre-cropped PNG, displayed in full ending at section divider */
.hero__portrait-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1536 / 2128;
  margin: 0 auto;
  display: block;
  z-index: 2;
}
.hero__portrait-frame::before {
  content: "";
  position: absolute;
  inset: auto 8% 0 8%;
  height: 50%;
  background: radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.20), transparent 70%);
  z-index: 0;
  filter: blur(18px);
}
.hero__portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  display: block;
}
.hero__portrait-frame img.hero__portrait-img--mobile { display: none; }

.hero__credentials {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: white;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  margin-top: -28px;
  box-shadow: var(--shadow-md);
}
.hero__credentials .credential {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__credentials img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 880px) {
  .hero { padding-top: 40px; }
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    padding-bottom: 0;
    align-items: center;
  }
  .hero__copy { padding-top: 24px; padding-bottom: 48px; align-self: center; }
  .hero__portrait { align-self: end; }
  .hero__portrait-frame { max-width: 460px; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  background: var(--cream);
  padding: 0 0 64px;
  position: relative;
}
.trust::before { display: none; }

/* Inline highlights row — full-bleed navy band, inner grid constrained to container */
.trust__highlights {
  width: 100%;
  margin: 0 0 36px;
  background: linear-gradient(170deg, var(--navy-800), var(--navy-900));
  border-top: 1px solid rgba(201, 169, 97, 0.30);
  border-bottom: 1px solid rgba(201, 169, 97, 0.30);
}
.trust__highlights-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px 22px;
  max-width: 1180px;
  margin: 0 auto;
  list-style: none;
}
.highlight {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 12px 4px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.highlight + .highlight {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.highlight::before { display: none; }
.highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  flex-shrink: 0;
  box-shadow: none;
}
.highlight p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #d3d8e2;
}
.highlight strong { color: #fff; font-weight: 700; }

/* Below row: text + 2 cards layout */
.trust__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}
.trust__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 5.5vw, 28px);
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  max-width: none;
  margin: 0;
  align-self: center;
}
.trust__intro strong {
  font-family: var(--serif);
  font-style: normal;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 1.1em;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .trust__highlights-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 18px 22px;
    position: relative;
  }
  .trust__highlights-inner::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    background: rgba(201, 169, 97, 0.30);
    transform: translateX(-0.5px);
  }
  .trust__highlights-inner .highlight + .highlight {
    border-top: none;
    border-left: none;
  }
  .highlight {
    max-width: 360px;
    margin: 0 auto;
    padding: 8px 18px;
    width: 100%;
  }
}
@media (min-width: 880px) {
  .trust__body {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    align-items: center;
  }
  .trust__intro {
    text-align: left;
    font-size: 28px;
    padding-right: 8px;
  }
  .trust__grid {
    display: contents;
  }
  .trust-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.trust-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: var(--gold-300);
  margin-bottom: 14px;
}
.trust-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy-800);
  margin: 0 0 8px;
}
.trust-card__body {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.trust-card--accent {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-color: var(--navy-700);
  color: white;
}
.trust-card--accent .trust-card__title { color: white; }
.trust-card--accent .trust-card__body { color: #c5cbd6; }
.trust-card__metric {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 68px;
  line-height: 1;
  color: var(--gold-300);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.trust-card__metric .metric__plus { color: var(--gold-500); font-size: 0.5em; vertical-align: top; margin-right: 2px; }
.trust-card__metric--text {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
  color: var(--gold-300);
  margin-bottom: 12px;
}

@media (min-width: 720px) {
  .trust__highlights { gap: 28px; }
}

/* ============================================
   FOR WHOM
   ============================================ */
.forwhom {
  background: var(--paper);
  padding: 80px 0;
}
.forwhom__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 0;
}
.forwhom__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
}
.forwhom__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-500);
  border-radius: 3px 0 0 3px;
}
.forwhom__list p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
.forwhom__list p em { color: var(--navy-800); font-style: italic; font-weight: 500; }
.forwhom__mark {
  display: inline-flex;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-300);
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ============================================
   JORNADA (ABOUT)
   ============================================ */
.jornada {
  background: var(--navy-800);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.jornada::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 97, 0.1), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(30, 68, 128, 0.4), transparent 50%);
}
.jornada__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
}
.jornada__media {
  position: relative;
  width: 100%;
}

/* Auto-carousel arrows */
.auto-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: background 0.15s, color 0.15s, transform 0.15s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.auto-carousel__arrow--prev { left: 10px; }
.auto-carousel__arrow--next { right: 10px; }
.auto-carousel__arrow:hover {
  background: var(--navy-800);
  color: var(--gold-300);
  transform: translateY(-50%) scale(1.06);
}
.auto-carousel__arrow:active {
  transform: translateY(-50%) scale(0.96);
}
@media (min-width: 720px) {
  .auto-carousel__arrow { width: 44px; height: 44px; }
  .auto-carousel__arrow--prev { left: 14px; }
  .auto-carousel__arrow--next { right: 14px; }
}

/* Auto-rotating carousel */
.auto-carousel {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.32);
  background: var(--navy-700);
  box-shadow: var(--shadow-md);
}
.auto-carousel--wide { border-color: var(--line); background: var(--cream-2); }
.auto-carousel__track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.auto-carousel__track:active { cursor: grabbing; }
.auto-carousel--wide .auto-carousel__track { aspect-ratio: 4 / 3; }
.auto-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s ease, transform 6s ease;
}
.auto-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.auto-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.auto-carousel__slide figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(11, 37, 69, 0.88));
  color: white;
  padding: 32px 18px 18px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.auto-carousel__dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.auto-carousel__dots span {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  transition: background 0.25s, width 0.25s;
}
.auto-carousel__dots span.is-active {
  background: var(--gold-500);
  width: 32px;
}
@media (min-width: 880px) {
  .auto-carousel__track { aspect-ratio: 4 / 5; }
  .auto-carousel--wide .auto-carousel__track { aspect-ratio: 16 / 9; }
}

.jornada__copy .eyebrow { color: var(--gold-300); }
.jornada__copy .eyebrow__line { background: var(--gold-300); opacity: 0.6; }
.jornada__copy .section-title { color: white; }
.jornada__copy .section-title em { color: var(--gold-500); }

.jornada__text p { color: #d3d8e2; font-size: 15.5px; line-height: 1.65; }
.jornada__text strong { color: white; font-weight: 600; }
.jornada__pull {
  font-family: var(--serif);
  font-size: 20px !important;
  line-height: 1.4 !important;
  color: white !important;
  font-weight: 400;
  padding-left: 18px;
  border-left: 2px solid var(--gold-500);
  margin: 24px 0 28px;
}
.jornada__pull em { color: var(--gold-300); font-style: italic; }

/* Credenciais (logos) na Minha Jornada */
.jornada__creds {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 97, 0.32);
}
.jornada__creds-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 18px;
}
.jornada__creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.jornada__cred {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--r-md);
  padding: 6px;
  min-height: 100px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.jornada__cred img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}
@media (min-width: 880px) {
  .jornada__creds-grid { gap: 18px; }
  .jornada__cred { min-height: 130px; padding: 18px; aspect-ratio: auto; }
  .jornada__cred img { padding: 0; max-height: 92px; height: auto; width: auto; }
}

@media (min-width: 880px) {
  .jornada__inner { grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
}

/* ============================================
   PROMISE / QUOTE
   ============================================ */
.promise {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 84px 0;
  text-align: center;
  position: relative;
}
.promise::before, .promise::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold-500);
}
.promise::before { top: 0; }
.promise::after { bottom: 0; }

.promise__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--navy-800);
  margin: 24px 0 0;
  position: relative;
  letter-spacing: -0.005em;
}
.promise__quote em { font-style: italic; color: var(--gold-600); }
.promise__open, .promise__close {
  font-family: var(--serif);
  font-size: 1.4em;
  color: var(--gold-500);
  line-height: 0;
  vertical-align: -0.15em;
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel-section {
  background: var(--paper);
  padding: 80px 0;
}
.carousel-section .container { margin-bottom: 28px; }

.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 22px 16px;
  scroll-padding: 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 86%;
  max-width: 420px;
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.carousel__slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.carousel__slide figcaption {
  padding: 14px 18px;
  background: white;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

@media (min-width: 720px) {
  .carousel__slide { flex: 0 0 38%; max-width: 360px; }
}
@media (min-width: 1080px) {
  .carousel__track { justify-content: center; }
  .carousel__slide { flex: 0 0 320px; }
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.carousel__btn:hover { background: var(--navy-800); color: var(--gold-300); border-color: var(--navy-800); }

.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.carousel__dots button[aria-current="true"] { background: var(--gold-500); transform: scale(1.3); }

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--white);
  padding: 80px 0;
}
.faq--extended { background: var(--cream); }

.faq__intro {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.65;
}
.faq__intro strong { color: var(--ink-2); font-weight: 600; }

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 8px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--sans);
  position: relative;
  transition: color 0.15s;
}
.acc-item summary:hover { color: var(--gold-700); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item__q { flex: 1; }
.acc-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  position: relative;
  margin-top: 2px;
  transition: background 0.2s, transform 0.2s;
}
.acc-item__icon::before, .acc-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold-700);
  transition: opacity 0.2s, transform 0.2s;
}
.acc-item__icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.acc-item__icon::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }

.acc-item[open] .acc-item__icon {
  background: var(--gold-500);
}
.acc-item[open] .acc-item__icon::before { background: white; }
.acc-item[open] .acc-item__icon::after { opacity: 0; }

.acc-item__a {
  padding: 0 8px 22px 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  animation: faq-fade 0.25s ease;
}
.acc-item__a p { margin: 0 0 0.8em; }
.acc-item__a p:last-child { margin-bottom: 0; }
.acc-item__a strong { color: var(--navy-800); font-weight: 600; }

.faq-list { margin: 8px 0 0; padding: 0; list-style: none; }
.faq-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.faq-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 1px;
  background: var(--gold-500);
}

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--paper);
  padding: 80px 0;
}
.testimonials__badge {
  display: flex;
  justify-content: center;
  margin: 0 0 32px;
}
.testimonials__badge img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 720px) {
  .testimonials__badge img { max-width: 340px; }
}

.stars { display: inline-flex; gap: 3px; }
.stars span {
  width: 16px; height: 16px;
  background: var(--gold-500);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.stars--sm span { width: 12px; height: 12px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial__head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
}
.testimonial__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-800);
  margin: 0;
}
.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--green);
  margin: 2px 0 0;
  font-weight: 600;
}
.testimonial blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: normal;
}

@media (min-width: 720px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
  .testimonial { padding: 28px 26px 30px; }
  .testimonial blockquote { font-size: 16px; line-height: 1.6; }
}

/* ============================================
   CLINIC PHOTOS (auto-carousel)
   ============================================ */
.clinic {
  background: var(--white);
  padding: 80px 0;
}
.clinic .auto-carousel--wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900) 90%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 100%, rgba(201, 169, 97, 0.18), transparent 50%);
}
.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}
.final-cta__copy .display em { color: var(--gold-500); }
.final-cta__copy .display { color: white; }
.final-cta__lede {
  color: #c5cbd6;
  font-size: 16px;
  max-width: 32em;
  margin: 0 0 20px;
}
.final-cta__pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.final-cta__pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d3d8e2;
}
.final-cta__pills li svg { color: var(--gold-500); flex-shrink: 0; }

.final-cta__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.32);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.addr-block { display: flex; flex-direction: column; }
.card-hours-line {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 6px;
}
.card-addr, .card-hours {
  color: white;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 500;
}
/* Map card (multiple per CTA card) */
.card-map {
  position: relative;
  display: block;
  margin-top: 8px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.32);
  background: var(--navy-700);
  aspect-ratio: 16 / 5.5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 880px) {
  .card-map { aspect-ratio: 16 / 6; }
}
.card-map:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
.card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
}
.card-map__hint {
  position: absolute;
  bottom: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--navy-800);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

@media (min-width: 880px) {
  .final-cta__inner { grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  color: #b6bdcc;
  padding: 56px 0 0;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand .brand__mark { background: var(--cream); color: var(--navy-800); box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.5); }
.footer__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: white;
  margin: 14px 0 4px;
}
.footer__role { color: #8c94a8; font-size: 13px; margin: 0 0 2px; }
.footer__h {
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
}
.footer__col p, .footer__col li { line-height: 1.6; color: #b6bdcc; margin: 0 0 4px; }
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--gold-300);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer__socials a:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.footer__socials svg { width: 16px; height: 16px; }
.footer__col ul li { padding-left: 14px; position: relative; }
.footer__col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--gold-500);
}
.footer__legal {
  background: var(--navy-800);
  padding: 22px 0;
  font-size: 12px;
}
.footer__legal p { color: #8c94a8; margin: 0 0 4px; line-height: 1.5; }
.footer__disclaimer { font-style: italic; }

@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 36px; }
}

/* ============================================
   STICKY FLOATING WHATSAPP CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sticky-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.2);
}
.sticky-cta:active { transform: translateY(-1px) scale(0.98); }
.sticky-cta svg { position: relative; z-index: 2; width: 42px; height: 42px; }

/* Soft pulsing halo */
.sticky-cta__halo {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.45) 0%, rgba(37, 211, 102, 0) 70%);
  animation: cta-pulse 2.4s ease-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes cta-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (min-width: 880px) {
  .sticky-cta {
    bottom: 28px;
    right: 28px;
    width: 68px;
    height: 68px;
  }
  .sticky-cta svg { width: 48px; height: 48px; }
  .sticky-cta__halo { inset: -12px; }
}

/* ============================================
   Header CTA visibility tweak
   ============================================ */
@media (max-width: 360px) {
  .brand__name { font-size: 15px; }
  .brand__tag { font-size: 9.5px; letter-spacing: 0.14em; }
}

/* ============================================
   MOBILE-ONLY tweaks
   ============================================ */
@media (max-width: 600px) {
  /* Hide the two pills below the hero CTA */
  .hero__pills { display: none; }

  /* Swap hero portrait for the mobile crop */
  .hero__portrait-frame img.hero__portrait-img--desktop { display: none; }
  .hero__portrait-frame img.hero__portrait-img--mobile { display: block; }

  /* Left-align the two highlight items */
  .highlight {
    max-width: none;
    margin: 0;
    justify-content: flex-start;
    text-align: left;
  }
  .highlight p { text-align: left; }

  /* Taller map window */
  .card-map { aspect-ratio: 4 / 3; }
}

/* ============================================
   PHOTO PLACEHOLDERS (user drops real photos later)
   ============================================ */
.photo-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background-color: var(--cream-2);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(11, 37, 69, 0.045) 0 12px,
    transparent 12px 24px
  );
  border: 1px dashed rgba(11, 37, 69, 0.28);
  color: var(--muted);
  text-align: center;
}
.photo-ph span {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
}
.hero__portrait-frame .photo-ph {
  border-radius: var(--r-lg);
}

/* ============================================
   SOLUÇÕES / DIFERENCIAIS
   ============================================ */
.diffs {
  background: var(--paper);
  padding: 80px 0;
}
.diffs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.diff-card__mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold-600);
}
.diff-card__mark svg { width: 22px; height: 22px; }
.diff-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
  color: var(--navy-800);
  margin: 0 0 8px;
}
.diff-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
@media (min-width: 720px) {
  .diffs__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .diffs__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   TIMELINE (formação)
   ============================================ */
.timeline {
  margin: 32px 0 0;
  position: relative;
  padding-left: 26px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(201, 169, 97, 0.45);
}
.timeline__item {
  position: relative;
  padding: 0 0 26px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.timeline__year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 4px;
}
.timeline__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  color: white;
  margin: 0 0 6px;
}
.timeline__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #cdd3df;
  margin: 0;
}

/* ============================================
   BIO (sobre Carolina)
   ============================================ */
.bio {
  background: var(--cream);
  padding: 80px 0;
}
.bio__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.bio__media .photo-ph {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  min-height: 0;
}
.bio__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 5vw, 34px);
  color: var(--navy-800);
  margin: 0 0 4px;
}
.bio__crp {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 20px;
}
.bio__text p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.bio__text strong { color: var(--navy-800); font-weight: 600; }
.bio__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.bio__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-800);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.bio__social:hover {
  background: var(--navy-800);
  color: var(--gold-300);
  border-color: var(--navy-800);
  transform: translateY(-1px);
}
.bio__social svg { width: 18px; height: 18px; }
@media (min-width: 880px) {
  .bio__inner { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
}

/* Contact lines inside final CTA card */
.card-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--serif);
  font-size: 17px;
  margin: 0 0 6px;
}
.card-contact svg { width: 18px; height: 18px; color: var(--gold-300); flex-shrink: 0; }
.card-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.card-socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.02em;
}
.card-socials a:hover { color: white; }
.card-socials svg { width: 16px; height: 16px; }
