/* ============================================
   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(40px, 9vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--gold-600); font-weight: 500; }
.display--sm { font-size: clamp(32px, 6vw, 48px); }

.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.01em;
  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
   ============================================ */
.topbar {
  background: var(--navy-900);
  color: var(--gold-300);
  font-size: 12px;
  padding: 8px 0;
}
.topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__sep { opacity: 0.4; }
@media (max-width: 520px) {
  .topbar__sep, .topbar__item:nth-child(3) { display: none; }
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.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(--navy-800);
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
}
.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(--navy-800);
  letter-spacing: 0.005em;
}
.brand__tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  margin-top: 2px;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--navy-800) 0%, var(--navy-900) 95%);
  color: white;
  overflow: hidden;
  padding: 56px 0 0;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.16), transparent 50%),
    radial-gradient(circle at 0% 90%, rgba(30, 68, 128, 0.32), transparent 55%);
}
.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: white; }
.hero h1 em { color: var(--gold-500); }

.hero__lede {
  font-size: 17px;
  line-height: 1.55;
  color: #d8dde6;
  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: #c8d0dc;
  line-height: 1.4;
}
.hero__pills li svg {
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 1px;
}

/* Portrait */
.hero__portrait {
  position: relative;
  margin: 0;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__portrait-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}
.hero__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold-500);
  border-radius: var(--r-md);
  z-index: 0;
}
.hero__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 37, 69, 0.85) 100%);
  border-radius: var(--r-md);
  z-index: 2;
  pointer-events: none;
}
.hero__portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #e7e1d3 0%, #cdc4ad 100%);
}

.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: 72px; }
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    padding-bottom: 64px;
    align-items: center;
  }
  .hero__copy { padding-top: 24px; padding-bottom: 24px; }
  .hero__portrait-frame { max-width: 440px; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  background: var(--cream);
  padding: 56px 0;
  position: relative;
}
.trust::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold-500);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.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; }

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

/* ============================================
   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: 14px;
  align-items: center;
}
.jornada__cred {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--r-md);
  padding: 16px 14px;
  min-height: 78px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.jornada__cred img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 880px) {
  .jornada__creds-grid { gap: 18px; }
  .jornada__cred { min-height: 96px; padding: 18px; }
  .jornada__cred img { max-height: 62px; }
}

@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__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px;
  text-align: center;
}
.testimonials__rating p { color: var(--muted); margin: 0; font-size: 14px; }
.testimonials__rating strong { color: var(--navy-800); font-size: 18px; font-family: var(--serif); font-weight: 600; }

.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; gap: 18px; }
}

/* ============================================
   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: 26px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.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: 18px;
  line-height: 1.3;
  margin: 0 0 18px;
  font-weight: 500;
}
/* Map card replaces the credentials grid in final CTA */
.card-map {
  position: relative;
  display: block;
  margin-top: 18px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.32);
  background: var(--navy-700);
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-map:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.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(--navy-700); }
.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__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; }
}
