/* ============================================
   Dra. Marcia Fernanda — Landing Page
   Nefrologia · ouro/ocre + marfim + espresso · Mobile-first
   ============================================ */

:root {
  /* Palette */
  --navy-900: #453923;
  --navy-800: #3f3520;
  --navy-700: #6b5a34;
  --navy-600: #8f7a45;
  --navy-50:  #f7f2e7;

  --gold-700: #8f6d18;
  --gold-600: #a37c1d;
  --gold-500: #c79a2a;
  --gold-300: #8f6d18;
  --gold-100: #f6ecd2;

  --cream:    #f8f5ee;
  --cream-2:  #f1ead9;
  --white:    #ffffff;
  --paper:    #fdfcf8;

  --ink:      #2a2418;
  --ink-2:    #2a2318;
  --muted:    #6f6656;
  --line:     #e6ded0;

  --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(42, 35, 24, 0.06), 0 2px 6px rgba(42, 35, 24, 0.06);
  --shadow-md: 0 4px 14px rgba(42, 35, 24, 0.08), 0 12px 32px rgba(42, 35, 24, 0.08);
  --shadow-lg: 0 8px 24px rgba(42, 35, 24, 0.12), 0 24px 60px rgba(42, 35, 24, 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(199, 154, 42,0.6), transparent);
  opacity: 0.45;
  pointer-events: none;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(29, 24, 17, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(199, 154, 42, 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: 46px;
  height: 46px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.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(42, 35, 24, 0.08), transparent 55%),
    radial-gradient(circle at 86% 16%, rgba(199, 154, 42, 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(42, 35, 24, 0.12);
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
}
.hero__aura-ring { width: 130%; border-color: rgba(42, 35, 24, 0.10); }
.hero__aura-ring--mid { width: 100%; border-color: rgba(42, 35, 24, 0.16); }
.hero__aura-ring--inner { width: 72%; border-color: rgba(199, 154, 42, 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(199, 154, 42, 0.30) 0%, rgba(199, 154, 42, 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(42, 35, 24, 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(199, 154, 42, 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: #5f5748;
  line-height: 1.4;
}
.hero__pills li svg {
  flex-shrink: 0;
  color: var(--gold-500);
  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(199, 154, 42, 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__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; }
.trust--band { padding: 0; background: transparent; position: relative; z-index: 3; margin-top: -56px; }
@media (max-width: 820px){ .trust--band{ margin-top: -28px; } }
.trust--band .trust__highlights { margin: 0; }
.trust--body { padding: 56px 0 64px; }

/* 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(199, 154, 42, 0.30);
  border-bottom: 1px solid rgba(199, 154, 42, 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: #5f5748;
}
.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(199, 154, 42, 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: 237px;
    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: #5f5748; }
.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(30px, 5vw, 45px);
  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: 44px 0 80px;
}
.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(199, 154, 42, 0.1), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(61, 52, 36, 0.5), 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(42, 35, 24, 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(199, 154, 42, 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(42, 35, 24, 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-300); }

.jornada__text p { color: #5f5748; 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(199, 154, 42, 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(42, 35, 24, 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: var(--navy-900);
  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(199, 154, 42, 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-300); }
.final-cta__copy .display { color: white; }
.final-cta__lede {
  color: #5f5748;
  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: #5f5748;
}
.final-cta__pills li svg { color: var(--gold-300); flex-shrink: 0; }

.final-cta__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 154, 42, 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(199, 154, 42, 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(199, 154, 42, 0.32);
  background: var(--navy-700);
  aspect-ratio: 16 / 5.5;
  box-shadow: 0 6px 18px rgba(42, 35, 24, 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(42, 35, 24, 0.28); }
.card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  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: #6f6656;
  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: transparent; box-shadow: none; width: 54px; height: 54px; }
.footer__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: white;
  margin: 14px 0 4px;
}
.footer__role { color: #7a7061; 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: #6f6656; margin: 0 0 4px; }
.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: #5f5748; margin: 0 0 6px; line-height: 1.5; }
.footer__privacy{color:#fff;text-decoration:underline;text-underline-offset:2px;font-weight:600}
.footer__privacy:hover{color:var(--gold-300)}
.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: #16a34a;
  color: white;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.45), 0 2px 6px rgba(42, 35, 24, 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(22, 163, 74, 0.55), 0 4px 10px rgba(42, 35, 24, 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(22, 163, 74, 0.45) 0%, rgba(22, 163, 74, 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; }
}

/* ============================================
   SECTION TITLE — centered variant
   ============================================ */
.section-title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 18em; }

/* ============================================
   APPROACH — EMDR & SSP explainer
   ============================================ */
.approach {
  background: var(--cream);
  padding: 80px 0;
}
.approach .eyebrow--center { margin-bottom: 18px; }
.approach__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.approach-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.approach-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--gold-300);
  flex-shrink: 0;
}
.approach-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy-800);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
.approach-card__sub {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 4px 0 0;
  font-weight: 600;
}
.approach-card__body h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin: 18px 0 6px;
  text-transform: uppercase;
}
.approach-card__body h4:first-child { margin-top: 0; }
.approach-card__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.approach__note {
  margin: 22px auto 0;
  max-width: 560px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--navy-700);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  text-align: center;
}
.approach__note p {
  color: #5f5748;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 54ch;
  margin: 0 auto 20px;
}
.approach__note strong { color: var(--gold-300); font-weight: 600; }

@media (min-width: 820px) {
  .approach__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============================================
   VIDEO
   ============================================ */
.video {
  background: var(--paper);
  padding: 80px 0;
}
.video .eyebrow--center { margin-bottom: 18px; }
.video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 8px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
}
.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   JORNADA — formação checklist (replaces logos)
   ============================================ */
.jornada__formacao {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(199, 154, 42, 0.32);
}
.jornada__formacao-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 16px;
}
.jornada__formacao ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jornada__formacao li {
  position: relative;
  padding-left: 30px;
  color: #5f5748;
  font-size: 14.5px;
  line-height: 1.45;
}
.jornada__formacao li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(199, 154, 42, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9942f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
  border: 1px solid var(--gold-500);
}
.jornada__formacao strong { color: #fff; font-weight: 600; }

/* ============================================
   GOOGLE BADGE (testimonials)
   ============================================ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 12px 22px 12px 18px;
  box-shadow: var(--shadow-sm);
}
.google-badge__text { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.google-badge__text p { margin: 0; font-size: 13px; color: var(--muted); }
.google-badge__text strong { color: var(--navy-800); font-family: var(--serif); font-size: 16px; font-weight: 600; }
#test-title { text-wrap: balance; }

/* Testimonials carousel (fade, swipe, arrows) */
.auto-carousel--testi {
  max-width: 660px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.auto-carousel--testi .auto-carousel__track {
  position: relative;
  display: grid;
  height: auto;
  aspect-ratio: auto;
}
.auto-carousel--testi .auto-carousel__slide {
  position: relative;
  grid-area: 1 / 1;
  inset: auto;
  opacity: 0;
  transform: none;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.auto-carousel--testi .auto-carousel__slide.is-active {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.auto-carousel--testi .testimonial { height: 100%; box-sizing: border-box; }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.auto-carousel--testi .auto-carousel__arrow {
  position: static;
  transform: none;
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--navy-800);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
}
.auto-carousel--testi .auto-carousel__arrow:hover {
  background: var(--navy-800);
  color: var(--gold-300);
  border-color: var(--navy-800);
  transform: none;
}
.auto-carousel--testi .auto-carousel__dots {
  position: static;
  display: flex;
  gap: 8px;
}
.auto-carousel--testi .auto-carousel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.auto-carousel--testi .auto-carousel__dots span.is-active {
  width: 26px;
  border-radius: 4px;
  background: var(--gold-500);
}

/* Approach — standalone CTA (no navy box) */
.approach__cta { display: flex; justify-content: center; margin-top: 32px; }

/* Testimonials carousel is MOBILE-ONLY; desktop shows a 3-up grid */
@media (min-width: 720px) {
  .auto-carousel--testi { max-width: none; }
  .auto-carousel--testi .auto-carousel__track {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
  }
  .auto-carousel--testi .auto-carousel__slide {
    grid-area: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .auto-carousel--testi .testi-controls { display: none; }
}

/* Testimonials section — Patrícia (no-photo cards) */
.testimonials{background:var(--cream);padding:64px 0 76px}
.testimonials .section-title{margin-bottom:26px}
.testimonial--nophoto{display:flex;flex-direction:column;align-items:flex-start;gap:11px;text-align:left}
.testimonial--nophoto .testimonial__name{font-family:var(--serif);font-size:18px;font-weight:600;color:var(--navy-800);margin:0}
.testimonial--nophoto blockquote{margin:0}
@media (min-width:720px){
  .testimonials{padding:80px 0 88px}
  .testimonials .section-title{margin-bottom:34px}
  .testimonial--nophoto{gap:13px}
}

/* ============================================
   CARD — tall map + contact (single address CTA)
   ============================================ */
.card-map--tall { aspect-ratio: 16 / 9; }
@media (min-width: 880px) {
  .card-map--tall { aspect-ratio: 5 / 2; }
}
.card-contact { padding-top: 4px; }
.card-contact__line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7f2e7;
  font-size: 14.5px;
  margin: 0 0 10px;
}
.card-contact__line svg { color: var(--gold-300); flex-shrink: 0; }
.card-contact__crp {
  color: var(--gold-300);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-top: 6px;
  margin-top: 4px;
  border-top: 1px solid rgba(199, 154, 42, 0.2);
}


/* ============================================
   HERO — full-bleed image with dark gradient (Patrícia)
   ============================================ */
.hero.hero--img{position:relative;background:var(--navy-900);color:#fff;overflow:hidden;padding:0;min-height:clamp(560px,88vh,780px);display:flex;align-items:stretch}
.hero--img .hero__photo{position:absolute;top:0;right:0;left:auto;width:56%;height:100%;max-width:none;object-fit:cover;object-position:50% center;transform:none;z-index:0;-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 26%);mask-image:linear-gradient(90deg,transparent 0,#000 26%)}
.hero--img .hero__scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg, var(--navy-900) 0%, rgba(29,24,17,0.995) 14%, rgba(29,24,17,0.985) 22%, rgba(29,24,17,0.97) 30%, rgba(29,24,17,0.95) 37%, rgba(29,24,17,0.915) 43%, rgba(29,24,17,0.86) 47.5%, rgba(29,24,17,0.78) 50.5%, rgba(29,24,17,0.66) 53%, rgba(29,24,17,0.52) 55%, rgba(29,24,17,0.38) 56.7%, rgba(29,24,17,0.25) 58%, rgba(29,24,17,0.14) 59.2%, rgba(29,24,17,0.06) 60.2%, rgba(29,24,17,0) 61%)}
.hero--img .hero__inner{position:relative;z-index:2;display:flex;align-items:center;width:100%;max-width:1180px;margin:0 auto;padding:0 22px}
.hero--img .hero__copy{max-width:min(580px, 45vw);padding:60px 0}
@media (max-width:1180px) and (min-width:821px){
  .hero--img h1{font-size:clamp(30px,3.6vw,44px)}
}
.hero--img .eyebrow{color:var(--gold-300)}
.hero--img .eyebrow__line{background:var(--gold-300);opacity:.8}
.hero--img h1{color:#fff}
.hero--img h1 em{color:var(--gold-300)}
.hero--img .hero__lede{color:#6f6656;max-width:30em}
.hero__loc{display:inline-flex;align-items:center;gap:8px;margin:0 0 24px;font-size:13.5px;letter-spacing:.02em;color:var(--gold-300);font-weight:600}
.hero__loc svg{flex-shrink:0}
.hero__badge{display:inline-flex;flex-direction:column;gap:3px;margin-top:26px;padding:13px 20px;border-radius:var(--r-md);background:rgba(29,24,17,.5);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border:1px solid rgba(199,154,42,.4)}
.hero__badge strong{font-family:var(--serif);font-size:18px;font-weight:600;color:#fff;letter-spacing:.01em}
.hero__badge span{font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-300);font-weight:600}
@media (min-width:821px){
  .hero--img .hero__lede{font-size:19.5px;max-width:23em;text-wrap:balance}
}
.hero__mphoto{display:none}
.hero-br-m{display:none}
@media (max-width:820px){
  .hero.hero--img{min-height:0;display:block;background:var(--navy-900)}
  .hero--img .hero__photo{display:none}
  .hero--img > .hero__scrim{display:none}
  .hero--img .hero__inner{display:block;position:relative;overflow:hidden;padding:0;max-width:none;min-height:0;align-items:stretch}
  .hero--img .hero__copy{position:relative;z-index:2;max-width:none;padding:34px 22px 0}
  .hero-br-m{display:inline}
  .hero--img h1{font-size:29px}
  .hero__loc{display:none}
  .hero__mphoto{display:block;position:relative;z-index:1;width:100%;line-height:0;margin-top:-4%}
  .hero__photo--mobile{display:block;position:static;width:100%;height:auto;margin-top:0;-webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.08) 1.4%,rgba(0,0,0,.2) 2.6%,rgba(0,0,0,.36) 3.8%,rgba(0,0,0,.55) 5%,rgba(0,0,0,.72) 6%,rgba(0,0,0,.86) 6.9%,rgba(0,0,0,.95) 7.6%,#000 8.4%);mask-image:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.08) 1.4%,rgba(0,0,0,.2) 2.6%,rgba(0,0,0,.36) 3.8%,rgba(0,0,0,.55) 5%,rgba(0,0,0,.72) 6%,rgba(0,0,0,.86) 6.9%,rgba(0,0,0,.95) 7.6%,#000 8.4%)}
  .hero__mphoto-scrim{position:absolute;left:0;right:0;top:0;margin-top:-37%;height:auto;aspect-ratio:400/181;background:linear-gradient(180deg, var(--navy-900) 0%, rgba(29,24,17,.995) 10%, rgba(29,24,17,.98) 22%, rgba(29,24,17,.955) 34%, rgba(29,24,17,.92) 45%, rgba(29,24,17,.87) 55%, rgba(29,24,17,.80) 63%, rgba(29,24,17,.71) 70%, rgba(29,24,17,.60) 76%, rgba(29,24,17,.49) 81%, rgba(29,24,17,.38) 85.5%, rgba(29,24,17,.28) 89%, rgba(29,24,17,.19) 92%, rgba(29,24,17,.12) 94.5%, rgba(29,24,17,.065) 96.5%, rgba(29,24,17,.025) 98.5%, rgba(29,24,17,0) 100%)}
  .trust-card__metric--text{font-size:clamp(36px, 9vw, 45px)}
}
@media (max-width:400px){
  .hero--img h1{font-size:26px}
}

.card-phone{display:flex;align-items:center;gap:10px;margin:2px 0 0;padding-top:16px;border-top:1px solid rgba(199,154,42,.2);color:#fff;font-family:var(--serif);font-size:19px;font-weight:500}
.card-phone svg{color:var(--gold-300);flex-shrink:0}

/* Brand logo mark (header + footer) */
.brand__logo{width:42px;height:42px;object-fit:contain;background:var(--cream);border-radius:11px;padding:5px;display:block;box-shadow:0 0 0 1px rgba(199,154,42,.5)}

/* ============================================
   AMABI — wordmark, single photo, CTA note, estrutura
   ============================================ */
.brand__wordmark{height:46px;width:46px;object-fit:cover;border-radius:13px;display:block;flex-shrink:0;box-shadow:0 0 0 1px rgba(199,154,42,.35)}
.brand--wordmark{gap:14px}
.brand--wordmark .brand__text{padding-left:14px;border-left:1px solid rgba(199,154,42,.34)}
.footer__wordmark{height:74px;width:74px;object-fit:cover;border-radius:18px;display:block;margin:0 0 16px;box-shadow:0 0 0 1px rgba(199,154,42,.3)}
@media (max-width:520px){.brand__wordmark{height:40px;width:40px;border-radius:11px}.brand--wordmark .brand__text{padding-left:11px}.brand__tag{font-size:9.5px;letter-spacing:.13em}}
@media (max-width:380px){.brand--wordmark .brand__text{display:none}}

.single-photo{margin:0;border-radius:var(--r-md);overflow:hidden;border:1px solid rgba(199,154,42,.3);background:var(--navy-800);box-shadow:0 18px 44px rgba(29,24,17,.3)}
.single-photo img{display:block;width:100%;height:100%;object-fit:cover;object-position:center 12%;aspect-ratio:4/5}
@media (max-width:879px){.single-photo img{aspect-ratio:1/1;object-position:50% 50%}}

.cta-note{margin:14px 0 0;font-size:12.5px;letter-spacing:.02em;color:var(--muted);text-align:center}
.cta-note strong{color:var(--gold-700);font-weight:700;letter-spacing:.06em;text-transform:uppercase;font-size:11.5px}
.hero--img .cta-note{color:#5f5748;text-align:left}
.hero--img .cta-note strong{color:var(--gold-300)}
.promise .cta-note{color:#5f5748}
.promise .cta-note strong{color:var(--gold-300)}

.estrutura{background:var(--paper);padding:64px 0 76px}
.estrutura .section-title{margin-bottom:30px}
.estrutura .auto-carousel{max-width:1000px;margin:0 auto}
.estrutura .cta-row{margin-top:34px}
@media (min-width:720px){.estrutura{padding:84px 0 92px}}

/* Square gallery carousel — 1-up on mobile, 2-up on desktop, separate blocks */
.auto-carousel--pairs{border:0;background:transparent;border-radius:0;overflow:visible}
.auto-carousel--pairs .auto-carousel__track{display:grid;grid-template-columns:1fr;gap:0;aspect-ratio:auto;overflow:visible}
.auto-carousel--pairs .auto-carousel__slide{position:relative;inset:auto;grid-area:1/1;aspect-ratio:4/5;transform:none;border-radius:var(--r-md);overflow:hidden;border:1px solid var(--line);box-shadow:0 14px 34px rgba(29,24,17,.12)}
.auto-carousel--pairs .auto-carousel__slide.is-active{transform:none}
@media (min-width:820px){
  .auto-carousel--pairs .auto-carousel__track{grid-template-columns:1fr 1fr;gap:26px}
  .auto-carousel--pairs .auto-carousel__slide{grid-column:1;grid-row:1}
  .auto-carousel--pairs .auto-carousel__slide.is-active{grid-column:1}
  .auto-carousel--pairs .auto-carousel__slide.is-active+.auto-carousel__slide{grid-column:2;grid-row:1;opacity:1}
  .auto-carousel--pairs .auto-carousel__track:has(.auto-carousel__slide:last-child.is-active) .auto-carousel__slide:first-child{grid-column:2;grid-row:1;opacity:1}
}


.footer__sig{background:#171717;padding:20px 0}
.footer__sig .container{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px}
.footer__credit{margin:0;font-size:13.5px;font-weight:500;color:rgba(255,255,255,.72);text-align:center}
.footer__credit-link{display:inline-flex;line-height:0}
.footer__credit-logo{height:41px;width:auto;display:block;border-radius:0;box-shadow:none}
@media (min-width:821px){.footer__sig .container{gap:12px}.footer__credit{font-size:14.5px}.footer__credit-logo{height:46px}}

/* Trust band highlights — left-aligned on mobile */
@media (max-width:719px){
  .trust__highlights-inner{justify-items:stretch}
  .highlight{max-width:none;margin:0;justify-content:flex-start;text-align:left}
  .highlight p{text-align:left;margin-right:0}
}

@media (max-width:719px){
  .estrutura .section-title br{display:none}
  .estrutura .section-title{text-wrap:balance}
}

.jornada__creds--three .jornada__creds-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.jornada__creds--three .jornada__cred{background:#fff;border:1px solid rgba(255,255,255,.9);border-radius:var(--r-md);aspect-ratio:auto;height:92px;padding:9px 10px;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 26px rgba(29,24,17,.18)}
.jornada__creds--three .jornada__cred img{width:100%;height:100%;max-width:none;max-height:none;object-fit:contain;padding:0;transform:none}
@media (min-width:880px){
  .jornada__creds--three .jornada__creds-grid{gap:14px}
  .jornada__creds--three .jornada__cred{height:118px;padding:13px 15px}
}

.estrutura__addr{margin:-14px 0 26px;text-align:center;font-size:14px;color:var(--muted);letter-spacing:.01em}
@media (min-width:720px){.estrutura__addr{margin:-18px 0 30px;font-size:15px}}

/* Two credential logo blocks (Nove de Julho + Gent) */
.jornada__creds--two .jornada__creds-grid--two{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:420px}
.jornada__creds--two .jornada__cred{background:#fff;border:1px solid rgba(255,255,255,.9);border-radius:var(--r-md);aspect-ratio:auto;height:96px;padding:12px 14px;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 26px rgba(29,24,17,.18)}
.jornada__creds--two .jornada__cred img{width:100%;height:100%;max-width:none;max-height:none;object-fit:contain;padding:0;transform:none}
@media (min-width:880px){
  .jornada__creds--two .jornada__creds-grid--two{gap:16px;max-width:460px}
  .jornada__creds--two .jornada__cred{height:112px;padding:14px 18px}
}

/* Google rating header + per-card badge */
.g-rating{display:flex;flex-direction:column;align-items:center;gap:9px;margin:0 0 30px}
.g-rating__word{margin:0;font-size:14px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--ink)}
.g-rating .stars{gap:5px}
.g-rating .stars span{width:22px;height:22px}
.g-rating__brand{display:flex;align-items:center;gap:9px;margin:0;font-size:20px;font-weight:600;color:var(--ink)}
.g-logo{flex-shrink:0;display:block}
.testimonial--nophoto .testimonial__name{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%}
.testimonial__g{display:inline-flex;flex-shrink:0}
@media (min-width:720px){.g-rating{margin-bottom:38px}}

/* Desktop-only line breaks */
.br-d{display:none}
@media (min-width:880px){.br-d{display:inline}}

/* Approach note heading */
.approach__note-title{margin:0 0 10px;font-family:var(--serif);font-size:clamp(22px,2.4vw,28px);font-weight:600;line-height:1.2;color:#fff}

/* Testimonial cards: bold name, italic quoted body */
.testimonial--nophoto .testimonial__name{font-weight:700}
.testimonial--nophoto blockquote{font-style:italic}
.testimonial--nophoto blockquote::before{content:"\201C"}
.testimonial--nophoto blockquote::after{content:"\201D"}

/* ============================================
   MARCIA — monograma, formacao, rating
   ============================================ */
.brand__monogram{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:13px;flex-shrink:0;background:linear-gradient(158deg,var(--navy-700),var(--navy-900));box-shadow:0 0 0 1px rgba(199,154,42,.45);font-family:var(--serif);font-size:20px;font-weight:600;letter-spacing:.03em;color:var(--gold-300);line-height:1}
.footer__monogram{width:74px;height:74px;border-radius:18px;font-size:30px;margin:0 0 16px;box-shadow:0 0 0 1px rgba(199,154,42,.4)}
@media (max-width:520px){.brand__monogram{width:40px;height:40px;border-radius:11px;font-size:17px}}
.g-rating__count{margin:0;font-size:13px;color:var(--muted);letter-spacing:.01em}
.jornada__formacao li strong{display:block}
.jornada__formacao li span{color:#7a7061}
.approach-card__body p+p{margin-top:8px}
.forwhom__list p em{font-weight:600}

/* CTA dourado (identidade Marcia) — bolha flutuante segue verde WhatsApp */
.btn--cta{background:linear-gradient(170deg,#9c7619,#866415);color:#fff;box-shadow:0 4px 14px rgba(140,105,22,.30),inset 0 1px 0 rgba(255,255,255,.18)}
.btn--cta:hover{background:linear-gradient(170deg,#8c6916,#735510);box-shadow:0 6px 18px rgba(140,105,22,.38)}
.testimonial__verified{color:#7a6a1c}

/* ============================================
   TEMA CLARO DOURADO — sem blocos escuros
   ============================================ */
main p a:not(.btn){color:var(--gold-700);text-decoration:underline;text-underline-offset:2px}
main p a:not(.btn):hover{color:var(--gold-600)}

.site-header{background:rgba(253,252,248,.93);border-bottom:1px solid rgba(199,154,42,.4)}
.brand__name{color:var(--ink)}
.brand__monogram{background:#fff;color:var(--gold-700);box-shadow:0 0 0 1px rgba(199,154,42,.6)}
.brand--wordmark .brand__text{border-left-color:rgba(199,154,42,.4)}

.hero.hero--img{background:var(--white);color:var(--ink)}
.hero--img .hero__scrim{background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.995) 16%,rgba(255,255,255,.975) 26%,rgba(255,255,255,.94) 34%,rgba(255,255,255,.875) 41%,rgba(255,255,255,.76) 46%,rgba(255,255,255,.60) 50%,rgba(255,255,255,.42) 53.5%,rgba(255,255,255,.24) 56.5%,rgba(255,255,255,.09) 59%,rgba(255,255,255,0) 61%)}
.hero--img h1{color:var(--ink)}
.hero--img h1 em{color:var(--gold-600)}
.hero--img .hero__lede{color:var(--muted)}
.hero--img .eyebrow{color:var(--gold-700)}
.hero--img .eyebrow__line{background:var(--gold-500);opacity:1}
.hero__loc{color:var(--gold-700)}
.hero--img .cta-note{color:var(--muted)}
.hero--img .cta-note strong{color:var(--gold-700)}
@media (max-width:820px){
  .hero.hero--img{background:var(--white)}
  .hero__mphoto-scrim{background:linear-gradient(180deg,#fff 0%,rgba(255,255,255,.99) 12%,rgba(255,255,255,.97) 26%,rgba(255,255,255,.93) 40%,rgba(255,255,255,.86) 52%,rgba(255,255,255,.75) 62%,rgba(255,255,255,.60) 71%,rgba(255,255,255,.44) 79%,rgba(255,255,255,.28) 86%,rgba(255,255,255,.15) 92%,rgba(255,255,255,.06) 96.5%,rgba(255,255,255,0) 100%)}
}

.trust__highlights{background:linear-gradient(170deg,#fdf8ec,#f4e9cf);border-top:1px solid rgba(199,154,42,.45);border-bottom:1px solid rgba(199,154,42,.45)}
.highlight+.highlight{border-top-color:rgba(199,154,42,.35)}
.trust__highlights-inner::before{background:rgba(199,154,42,.42)}
.highlight p{color:var(--muted)}
.highlight strong{color:var(--navy-800)}
.highlight__icon{background:#fff;border-color:var(--gold-500);color:var(--gold-700)}

.trust-card--accent{background:linear-gradient(160deg,#fdf8ec,#f3e7ca);border-color:rgba(199,154,42,.5);color:var(--ink)}
.trust-card--accent .trust-card__title{color:var(--navy-800)}
.trust-card--accent .trust-card__body{color:var(--muted)}
.trust-card__metric,.trust-card__metric--text{color:var(--gold-700)}
.trust-card__icon{background:linear-gradient(160deg,var(--gold-500),var(--gold-700));color:#fff}

.forwhom__mark{background:linear-gradient(160deg,var(--gold-500),var(--gold-700));color:#fff}
.approach-card__icon{background:linear-gradient(160deg,var(--gold-500),var(--gold-700));color:#fff}
.approach__note{background:linear-gradient(160deg,#fdf8ec,#f3e7ca);border-color:rgba(199,154,42,.5)}
.approach__note-title{color:var(--navy-800)}
.approach__note p{color:var(--muted)}
.approach__note strong{color:var(--gold-700)}

.jornada{background:linear-gradient(170deg,#fdf8ec 0%,#f5ebd8 100%);color:var(--ink)}
.jornada::before{background:radial-gradient(circle at 100% 0%,rgba(199,154,42,.10),transparent 42%),radial-gradient(circle at 0% 100%,rgba(199,154,42,.14),transparent 52%)}
.jornada__copy .eyebrow{color:var(--gold-700)}
.jornada__copy .eyebrow__line{background:var(--gold-500);opacity:1}
.jornada__copy .section-title{color:var(--ink)}
.jornada__copy .section-title em{color:var(--gold-600)}
.jornada__text p{color:var(--muted)}
.jornada__text strong{color:var(--navy-800)}
.jornada__formacao{border-top-color:rgba(199,154,42,.42)}
.jornada__formacao-label{color:var(--gold-700)}
.jornada__formacao li{color:var(--muted)}
.jornada__formacao li span{color:var(--muted)}
.jornada__formacao li::before{background-color:rgba(199,154,42,.13);border-color:var(--gold-500)}
.jornada__formacao strong{color:var(--navy-800)}
.single-photo{background:var(--cream-2);border-color:rgba(199,154,42,.4);box-shadow:0 18px 44px rgba(42,35,24,.12)}

.testimonials{background:var(--white)}
.auto-carousel__arrow:hover{background:var(--gold-700);color:#fff}
.auto-carousel--testi .auto-carousel__arrow:hover{background:var(--gold-700);color:#fff;border-color:var(--gold-700)}

.final-cta{background:linear-gradient(170deg,#fdf8ec 0%,#f1e8d3 100%);color:var(--ink)}
.final-cta::before{background:radial-gradient(circle at 90% 100%,rgba(199,154,42,.20),transparent 52%)}
.final-cta__copy .display{color:var(--ink)}
.final-cta__copy .display em{color:var(--gold-600)}
.final-cta .eyebrow--light{color:var(--gold-700)}
.final-cta .eyebrow--light .eyebrow__line{background:var(--gold-500);opacity:1}
.final-cta__lede{color:var(--muted)}
.final-cta__pills li{color:var(--muted)}
.final-cta__pills li svg{color:var(--gold-600)}
.final-cta__card{background:rgba(255,255,255,.76);border-color:rgba(199,154,42,.5)}
.card-label{color:var(--gold-700)}
.card-addr,.card-hours{color:var(--navy-800)}
.card-hours-line{color:var(--gold-700);border-top-color:rgba(199,154,42,.35)}
.card-map{background:var(--cream-2);border-color:rgba(199,154,42,.42)}

.footer{background:var(--cream);color:var(--muted);border-top:1px solid rgba(199,154,42,.35)}
.footer__name{color:var(--ink)}
.footer__h{color:var(--gold-700)}
.footer__col a{color:var(--navy-800);text-decoration:underline;text-underline-offset:2px}
.footer__col a:hover{color:var(--gold-700)}
.footer__legal{background:var(--cream-2)}
.footer__legal p{color:var(--muted)}
.footer__privacy{color:var(--navy-800)}
.footer__privacy:hover{color:var(--gold-700)}
.footer__sig{background:#171717}
.footer__credit{color:rgba(255,255,255,.72)}

/* Hero desktop — desloca a doutora para a direita, fora do degrade */
@media (min-width:821px){
  .hero--img .hero__photo{width:60%;object-position:26% center}
  .hero--img .hero__photo{-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 22%);mask-image:linear-gradient(90deg,transparent 0,#000 22%)}
}

/* Hero desktop — mais para a direita ainda */
@media (min-width:821px){
  .hero--img .hero__photo{object-position:14% center}
}
/* Hero mobile — foto justa na doutora, degrade longo comecando no botao, nota acima do botao */
@media (max-width:820px){
  .hero--img .hero__copy{display:flex;flex-direction:column;padding:30px 22px 0}
  .hero--img .hero__copy>*{order:0}
  .hero--img .hero__copy .cta-note{order:1;margin:0 0 14px;text-align:left}
  .hero--img .hero__copy .hero__ctas{order:2;margin-bottom:0}
  .hero__mphoto{margin-top:-58px}
  .hero__mphoto-scrim{display:none}
  .hero__photo--mobile{-webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.04) 1.4%,rgba(0,0,0,.12) 2.8%,rgba(0,0,0,.25) 4%,rgba(0,0,0,.42) 5.2%,rgba(0,0,0,.60) 6.3%,rgba(0,0,0,.76) 7.3%,rgba(0,0,0,.89) 8.3%,rgba(0,0,0,.97) 9.2%,#000 10.2%);mask-image:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.04) 1.4%,rgba(0,0,0,.12) 2.8%,rgba(0,0,0,.25) 4%,rgba(0,0,0,.42) 5.2%,rgba(0,0,0,.60) 6.3%,rgba(0,0,0,.76) 7.3%,rgba(0,0,0,.89) 8.3%,rgba(0,0,0,.97) 9.2%,#000 10.2%)}
}

/* A faixa clara ja esta embutida na foto mobile — mascara curta so para nao deixar borda */
@media (max-width:820px){
  .hero__photo--mobile{-webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,0) 0%,#000 1.6%);mask-image:linear-gradient(180deg,rgba(0,0,0,0) 0%,#000 1.6%)}
}

/* Sobre a doutora — foto alinhada ao topo do texto */
@media (min-width:880px){
  .jornada__inner{align-items:start}
  .jornada__media{padding-top:6px}
}

/* nota "Presencial ou online" agora vive acima do botao em todas as larguras */
.hero--img .cta-note{margin:0 0 14px}
.hero--img .hero__ctas{margin-bottom:0}
@media (max-width:820px){
  .hero--img .hero__copy{display:block}
  .hero--img .hero__copy .cta-note{text-align:left}
}

/* respiro entre o botao do hero e a faixa de diferenciais */
@media (min-width:821px){
  .hero.hero--img{min-height:clamp(600px,90vh,820px);align-items:center}
  .hero--img .hero__inner{padding-bottom:26px}
  .hero--img .hero__copy{padding-top:60px;padding-bottom:72px}
}

/* Hero desktop — foto ampliada: cabeca proxima do menu, bottom preservado */
@media (min-width:821px){
  .hero--img .hero__photo{width:62%;height:100%;top:0;bottom:auto;object-position:62% center}
}

/* Assinatura Higuchi no mobile: 2 linhas a esquerda para o logo nao ficar sob o
   botao flutuante do WhatsApp (padrao de deploy de LP). */
@media (max-width:820px){.footer__sig .container{align-items:flex-start;gap:8px;padding-right:96px}.footer__credit{text-align:left}}

/* A v2 do handoff trouxe style="width:492px;height:563px" inline no .hero__copy.
   No desktop e a medida pretendida; no mobile estoura a tela (492px num viewport
   de 390px, cortando o texto) e a altura fixa abre um vao branco. Estilo inline
   vence CSS, entao neutraliza com !important apenas ate 820px. Desktop intacto. */
@media (max-width:820px){
  .hero--img .hero__copy{width:auto!important;height:auto!important}
}
