/* ============================================================
   DESIGN SYSTEM — Dra. Bruna Borges Levy Shayeb
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --teal-dark:      #123B37;
  --teal-text:      #0F3733;
  --gold:           #CBA25C;
  --cream-bg:       #FCEADC;
  --tan-button:     #D9C4A8;
  --white:          #FFFFFF;
  --gray-light:     #B9C7C3;
  --whatsapp-green: #25D366;
  --pastel-icon-bg: #F5DCC5;

  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Fraunces', serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--teal-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--font-sans); }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ── Labels (SOBRE / INSTAGRAM / etc.) ──────────────────── */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.label-gold  { color: var(--gold); }
.label-teal  { color: var(--teal-text); }
.label-white { color: rgba(255,255,255,.70); }

/* ── Decorative lines ────────────────────────────────────── */
.gold-bar {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 32px;
}
.tan-bar {
  width: 48px; height: 3px;
  background: var(--tan-button);
  border-radius: 2px;
  margin: 10px 0 22px;
}
hr.divider {
  border: none;
  border-top: 1px solid rgba(15,55,51,.12);
  margin: 36px 0;
}
hr.divider-dark {
  border: none;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* ── Fraunces italic helper ──────────────────────────────── */
.fraunces { font-family: var(--font-serif); font-style: italic; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }

/* primary — sólido teal */
.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(18,59,55,.28);
}
.btn-primary:hover {
  background: #0d2e2a;
  box-shadow: 0 6px 24px rgba(18,59,55,.38);
}

/* secondary — bege/tan */
.btn-secondary {
  background: var(--tan-button);
  color: var(--teal-text);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.btn-secondary:hover {
  background: #c9b394;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

/* ghost — sobre fundo escuro/hero */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.10);
}

/* white — sobre fundo escuro */
.btn-white {
  background: var(--white);
  color: var(--teal-text);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { box-shadow: 0 6px 28px rgba(0,0,0,.22); }

/* instagram badge */
.btn-insta {
  background: var(--tan-button);
  color: var(--teal-text);
  font-size: .875rem;
}
.btn-insta:hover { background: #c9b394; }

/* ============================================================
   ICON CIRCLES
   ============================================================ */
.icon-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--pastel-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; color: var(--teal-dark); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim,
.anim-left,
.anim-right {
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.anim       { transform: translateY(28px); }
.anim-left  { transform: translateX(-32px); }
.anim-right { transform: translateX(32px); }

.anim.visible,
.anim-left.visible,
.anim-right.visible {
  opacity: 1;
  transform: none;
}

/* stagger delays */
[data-delay="0"] { transition-delay:   0ms; }
[data-delay="1"] { transition-delay: 120ms; }
[data-delay="2"] { transition-delay: 240ms; }
[data-delay="3"] { transition-delay: 360ms; }

/* hero load animations */
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  animation: heroUp .85s var(--ease-out) forwards;
}
.hero-in[data-delay="0"] { animation-delay: .10s; }
.hero-in[data-delay="1"] { animation-delay: .26s; }
.hero-in[data-delay="2"] { animation-delay: .42s; }
.hero-in[data-delay="3"] { animation-delay: .58s; }

@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 6px 30px rgba(37,211,102,.55);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; }

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 132px;
  background: rgba(18,59,55,.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .32s ease, box-shadow .32s ease, padding .32s ease;
}
#site-header.scrolled {
  background: var(--teal-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding .32s ease;
}
#site-header.scrolled .header-inner { padding-top: 0; padding-bottom: 0; }

@media (min-width: 1024px) {
  .header-inner { padding-left: 48px; padding-right: 48px; padding-top: 0; padding-bottom: 0; }
  #site-header.scrolled .header-inner { padding-left: 48px; padding-right: 48px; padding-top: 0; padding-bottom: 0; }
}

.logo-link { flex-shrink: 0; }
/* mobile first: logo menor mas legível */
.logo-img   { height: 145px; width: auto; display: block; }
/* desktop: logo em tamanho confortável no header */
@media (min-width: 1024px) { .logo-img { height: 165px; } }

/* nav links (desktop) */
.main-nav {
  display: none;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) { .main-nav { display: flex; } }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

/* agendar btn (desktop) */
.btn-agendar-header {
  display: none;
  margin-left: auto;
}
@media (min-width: 1024px) { .btn-agendar-header { display: inline-flex; } }

/* hamburger */
.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* ── Mobile Drawer ─────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; max-width: 86vw;
  height: 100vh;
  background: var(--teal-dark);
  z-index: 1001;
  padding: 80px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.drawer-close:hover { color: #fff; }

.mobile-drawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-drawer nav a:hover { color: var(--gold); }
.mobile-drawer nav li:last-child a { border-bottom: none; }

.btn-drawer-cta { width: 100%; justify-content: center; margin-top: auto; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}
.overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18,59,55,.92)  0%,
    rgba(18,59,55,.76) 45%,
    rgba(18,59,55,.18) 100%
  );
}
@media (max-width: 639px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(18,59,55,.88) 0%,
      rgba(18,59,55,.68) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero-label {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .18em;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-bottom: 22px;
}

.hero-para {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255,255,255,.82);
  line-height: 1.68;
  margin-bottom: 40px;
  max-width: 510px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sec-sobre {
  background: var(--cream-bg);
  padding: 100px 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 55fr 45fr;
    gap: 72px;
  }
}

/* text col */
.sobre-h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--teal-text);
  line-height: 1.18;
}
.sobre-h2 em {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

/* stats row */
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0 32px;
}
@media (min-width: 768px) {
  .sobre-stats {
    display: flex;
    gap: 0;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,55,51,.10);
}
.stat-item:nth-child(odd) { padding-right: 12px; }
.stat-item:last-child,
.stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

@media (min-width: 768px) {
  .stat-item {
    padding: 0 22px;
    border-bottom: none;
    border-right: 1px solid rgba(15,55,51,.14);
    flex: 1;
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child  { border-right: none; }
  .stat-item:nth-child(odd) { padding-right: 22px; }
}

.stat-texts { display: flex; flex-direction: column; gap: 2px; }
.stat-lbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-text);
  opacity: .6;
}
.stat-val {
  font-size: .875rem;
  font-weight: 700;
  color: var(--teal-text);
  line-height: 1.3;
}

.sobre-p {
  font-size: .96rem;
  line-height: 1.72;
  color: var(--teal-text);
  margin-bottom: 16px;
}
.sobre-p-italic {
  font-size: .935rem;
  line-height: 1.72;
  color: var(--teal-text);
  opacity: .82;
  font-style: italic;
  margin-bottom: 32px;
}

/* image col */
.sobre-img-wrap {
  /* on mobile: after text (natural DOM order) */
}
@media (min-width: 1024px) {
  .sobre-img-wrap { order: 1; } /* push right on desktop */
}

.sobre-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(18,59,55,.18);
  object-fit: cover;
  object-position: center top;   /* preserva cabeça/laço no topo */
  aspect-ratio: 4/5;
  transform: scale(1.04);
  transition: transform var(--transition);
}
.sobre-img-wrap.visible .sobre-img { transform: scale(1); }

/* ============================================================
   FILOSOFIA
   ============================================================ */
.sec-filosofia {
  background: var(--teal-dark);
  padding: 110px 0;
}

.sec-filosofia .label { color: var(--gold); }

.filosofia-h2 {
  font-size: clamp(26px, 3.3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 60px;
}
.filosofia-h2 .gold { color: var(--gold); }

/* numbered items */
.filosofia-list { margin-bottom: 60px; }

.fil-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 0;
}

.fil-num {
  width: 54px; height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.fil-icon {
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4px;
  flex-shrink: 0;
  color: var(--gray-light);
}
.fil-icon svg { width: 26px; height: 26px; }

.fil-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.fil-body p {
  font-size: .925rem;
  color: var(--gray-light);
  line-height: 1.72;
}

/* quote */
.filosofia-quote {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.quote-mark {
  font-size: 3.5rem;
  line-height: .8;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  font-family: Georgia, serif;
}
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--gold);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.sec-areas {
  background: var(--cream-bg);
  padding: 100px 0;
}

.areas-h2 {
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 52px;
}

/* each specialty block */
.area-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 48px 0;
  align-items: center;
}
@media (min-width: 1024px) {
  .area-block {
    grid-template-columns: 45fr 55fr;
    gap: 64px;
  }
}

/* image column */
.area-img-wrap { overflow: hidden; border-radius: 20px; }
.area-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(18,59,55,.16);
  object-fit: cover;
  object-position: center top;   /* mantém cabeça/rosto sempre visíveis no topo */
  aspect-ratio: 3 / 4;           /* portrait: Onco=100% visível, Pediatria=75% visível */
  transform: scale(1.05);
  transition: transform var(--transition);
}
.area-block.visible .area-img-wrap img { transform: scale(1); }

/* content column */
.area-content .label { color: var(--teal-text); opacity: .65; margin-bottom: 6px; }

.area-icon { margin-bottom: 18px; }

.area-h3 {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--teal-text);
}
.area-p {
  font-size: .94rem;
  color: var(--teal-text);
  line-height: 1.72;
  opacity: .84;
  margin-bottom: 28px;
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.sec-instagram {
  background: var(--cream-bg);
  padding: 80px 0 64px;
  border-top: 1px solid rgba(15,55,51,.08);
}

.insta-h2 {
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 700;
  color: var(--teal-text);
  line-height: 1.25;
  margin-bottom: 20px;
}
.insta-h2 .light { font-weight: 300; }

.insta-desc {
  font-size: .95rem;
  color: var(--teal-text);
  opacity: .8;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 22px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}
@media (min-width: 640px)  { .insta-grid { grid-template-columns: repeat(4, 1fr); } }

.insta-card {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;           /* portrait — exatamente como no exemplo */
}
.insta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;   /* mantém rostos visíveis, corta fundo na base */
  transition: transform .55s var(--ease-out);
}
.insta-card:hover img { transform: scale(1.07); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.sec-cta-outer {
  background: var(--cream-bg);
  padding: 60px 24px 80px;
}
@media (min-width: 1024px) { .sec-cta-outer { padding: 60px 48px 100px; } }

.sec-cta-inner {
  background: var(--teal-dark);
  border-radius: 28px;
  border: none;               /* garante zero borda/ticket */
  outline: none;
  max-width: 1104px;
  margin: 0 auto;
  padding: 80px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* sombra discreta — elevação sem peso */
  box-shadow:
    0 2px 0 rgba(255,255,255,.04) inset,
    0 24px 80px rgba(0,0,0,.20),
    0 4px 16px rgba(0,0,0,.10);
}
@media (min-width: 768px) { .sec-cta-inner { padding: 100px 80px 88px; } }

/* Brilho radial central — textura sutil, não invasiva */
.sec-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 420px;
  background: radial-gradient(
    ellipse at center,
    rgba(203,162,92,.09) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
/* Círculo decorativo canto inferior-direito */
.sec-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -90px;
  right: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(203,162,92,.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
/* Todo conteúdo interno fica acima das pseudo-decorações */
.sec-cta-inner > * { position: relative; z-index: 1; }

/* Label dentro do CTA com mais respiro */
.sec-cta-inner .label { margin-bottom: 22px; }

.cta-h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
}
.cta-h2 em {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

.cta-p {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 44px;
}

.cta-phone {
  margin-top: 22px;
  font-size: .875rem;
  color: var(--gray-light);
  opacity: .8;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--teal-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
}

/* col 1 */
.footer-logo { height: 140px; width: auto; margin-bottom: 18px; }
.footer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-sub {
  font-size: .825rem;
  color: var(--gray-light);
  margin-bottom: 20px;
}
.footer-details { display: flex; flex-direction: column; gap: 7px; }
.footer-details span { font-size: .825rem; }
.footer-details .lbl { color: var(--gray-light); margin-right: 5px; }
.footer-details .val { color: rgba(255,255,255,.9); }

/* col 2 & 3 */
.footer-col-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
  display: inline-block;
}
.footer-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.footer-nav-list a:hover { color: #fff; }
.footer-nav-list a:hover::after { width: 100%; }

.footer-contacts { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.footer-contact-a svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-contact-a:hover { color: #fff; }

/* bottom bar */
.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-bottom: 28px;
}
.footer-bottom { text-align: center; }
.footer-bottom p {
  font-size: .775rem;
  color: rgba(185,199,195,.65);
  line-height: 1.7;
}
.footer-bottom .credit {
  margin-top: 10px;
  color: var(--gold);
  font-weight: 400;         /* discreto, não compete com o restante */
  font-size: 9.5px;         /* bem pequeno — crédito técnico sutil */
  opacity: .75;
}
.footer-bottom .credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-bottom .credit a:hover { opacity: 1; text-decoration: underline; }

/* ============================================================
   NOVO — delay stagger extra para FAQ item 5
   ============================================================ */
[data-delay="4"] { transition-delay: 480ms; }

/* ============================================================
   NOVO — POR QUE ESCOLHER A DRA. BRUNA
   ============================================================ */
.sec-porque {
  background: var(--cream-bg);
  padding: 100px 0;
  border-top: 1px solid rgba(15,55,51,.08);
}

.porque-h2 {
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 0;
  line-height: 1.2;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .porque-grid { grid-template-columns: 1fr 1fr; gap: 28px 40px; }
}

.porque-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(18,59,55,.07);
  transition: box-shadow .25s ease, transform .25s ease;
}

.porque-item:hover {
  box-shadow: 0 6px 28px rgba(18,59,55,.12);
  transform: translateY(-3px);
}

.porque-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 38px;
  font-family: var(--font-sans);
}

.porque-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.porque-body p {
  font-size: .9rem;
  color: var(--teal-text);
  opacity: .78;
  line-height: 1.72;
}

/* ============================================================
   NOVO — COMO FUNCIONA O AGENDAMENTO
   ============================================================ */
.sec-agendar-outer {
  background: var(--cream-bg);
  padding: 60px 24px;
}

@media (min-width: 1024px) { .sec-agendar-outer { padding: 60px 48px; } }

.sec-agendar-inner {
  background: var(--teal-dark);
  border-radius: 28px;
  border: none;
  max-width: 1104px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.20), 0 4px 16px rgba(0,0,0,.10);
}

.agendar-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .agendar-grid { grid-template-columns: 40fr 60fr; }
}

.agendar-img {
  overflow: hidden;
  min-height: 260px;
}

.agendar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 260px;
}

.agendar-content {
  padding: 44px 32px 44px;
}

@media (min-width: 1024px) { .agendar-content { padding: 56px 52px; } }

.agendar-h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.agendar-sub {
  font-size: .94rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 32px;
}

.agendar-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.agendar-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.agendar-step-num {
  width: 36px; height: 36px;
  background: rgba(203,162,92,.15);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-sans);
}

.agendar-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 5px;
}

.agendar-step-body strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.agendar-step-body span {
  font-size: .875rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.agendar-step-body em {
  font-style: normal;
  color: var(--gold);
  opacity: .85;
}

.agendar-wa-link {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity .2s;
}

.agendar-wa-link:hover { opacity: .75; }

/* ============================================================
   NOVO — FAQ PERGUNTAS FREQUENTES
   ============================================================ */
.sec-faq {
  background: var(--cream-bg);
  padding: 100px 0;
  border-top: 1px solid rgba(15,55,51,.08);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-h2 {
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 700;
  color: var(--teal-text);
  margin-top: 8px;
  line-height: 1.25;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15,55,51,.12);
}

.faq-item:first-child { border-top: 1px solid rgba(15,55,51,.12); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 600;
  color: var(--teal-text);
  line-height: 1.45;
  transition: color .2s;
}

.faq-question:hover                     { color: var(--gold); }
.faq-question[aria-expanded="true"]     { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .35s var(--ease-out);
  font-family: var(--font-sans);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* accordion panel — animado com max-height */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .42s var(--ease-out);
}

.faq-answer.faq-open { max-height: 500px; }

.faq-answer p {
  padding: 4px 0 24px;
  font-size: .935rem;
  color: var(--teal-text);
  opacity: .82;
  line-height: 1.72;
}

.faq-answer a {
  color: var(--teal-text);
  text-decoration: underline;
  transition: color .2s;
}

.faq-answer a:hover { color: var(--gold); }

.faq-btn-wa {
  display: inline-flex;
  margin-bottom: 24px;
}

/* ── PATCH — Agendamento: responsive fix ──────────────────
   Adicionado ao FINAL — zero alteração nas regras existentes.

   Problema: .agendar-img tinha apenas min-height:260px sem
   height explícita. Nos layouts empilhados (mobile/tablet),
   o filho img {height:100%} não conseguia resolver a altura
   do pai, colapsando ou desalinhando em certos browsers.

   Solução: aspect-ratio 16/9 dá altura proporcional garantida
   ao container em qualquer largura de viewport.
   ─────────────────────────────────────────────────────── */

/* Mobile / tablet empilhado (< 1024px) */
@media (max-width: 1023px) {
  .agendar-img {
    aspect-ratio: 16 / 9;   /* altura sempre proporcional à largura */
    min-height: unset;      /* remove conflito com min-height fixo */
  }
  .agendar-img img {
    height: 100%;
    min-height: unset;
  }
}

/* Telefones muito pequenos (≤ 480px):
   reduz padding para não transbordar o card */
@media (max-width: 480px) {
  .agendar-content        { padding: 28px 20px 32px; }
  .agendar-sub            { margin-bottom: 22px; }
  .agendar-h2             { font-size: clamp(20px, 5.2vw, 26px); }
}

/* ── PATCH — Folgas laterais: overflow-x hidden ───────────
   Causa: .mobile-drawer usa transform:translateX(110%) quando
   fechado. Em alguns browsers isso gera overflow horizontal
   visível, criando espaço em branco nas laterais.
   Solução: overflow-x hidden em html+body elimina o scroll
   horizontal sem afetar layout, fixed, nem scroll vertical.
   Zero risco: nenhum elemento do site precisa de scroll-x.
   ─────────────────────────────────────────────────────── */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ── PATCH — Logo header mobile: 110px → 145px ─────────────
   Apenas no breakpoint mobile (< 1024px).
   Desktop permanece 165px (regra existente inalterada).
   Barra mobile fixa em 126px (mesma altura de antes).
   ─────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  #site-header { height: 126px; }
  .logo-img { height: 145px; }
}
