/* =========================================
   DRA. MÔNICA DANTAS — Landing Page
   Paleta oficial extraída de paleta.png
   Tipografia: Aotten (display) + Mulish (corpo)
   ========================================= */

@font-face {
  font-family: "Aotten";
  src: url("../assets/fonts/Aotten.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../assets/fonts/Mulish.ttf") format("truetype-variations");
  font-weight: 200 900;
  font-display: swap;
}

:root {
  /* Paleta oficial */
  --mauve-deep: #5D5572;
  --mauve: #7C7193;
  --mauve-soft: #9E94B0;
  --lavender: #D1C5DE;
  --lavender-pale: #E4DDEC;
  --nude: #E8DDD8;
  --nude-soft: #F5EDE9;
  --nude-bg: #FAF5F2;
  --rose: #C5A99C;
  --rose-soft: #E6C8CE;
  --brown-mauve: #8A7575;
  --ink: #3B3340;
  --white: #FFFFFF;

  /* Tipografia */
  --font-display: "Aotten", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max: 1480px;
  --max-narrow: 1080px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 26px;
  --radius-sm: 16px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =========== Reset =========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--nude-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { padding: 0; margin: 0; list-style: none; }

/* =========== Helpers =========== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.container.narrow { max-width: var(--max-narrow); }
.container.wide { max-width: 1640px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1.5px solid var(--lavender);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}
.eyebrow.centered { text-align: center; display: inline-block; }
.eyebrow.light {
  color: var(--lavender);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--mauve-deep);
  line-height: 1.05;
  letter-spacing: -0.6px;
  font-size: clamp(38px, 5.4vw, 68px);
  margin: 0 0 28px;
}
.display.lg { font-size: clamp(42px, 6.4vw, 78px); }
.display em {
  font-style: italic;
  color: var(--brown-mauve);
}

.section-head { text-align: center; max-width: 880px; margin: 0 auto 72px; }
.section-sub { color: var(--ink); opacity: .8; font-size: 18px; max-width: 680px; margin: 16px auto 0; }
.center-cta { text-align: center; margin-top: 60px; }
.emphasis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3em;
  color: var(--mauve);
  line-height: 1.4;
}

/* =========== Botões =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
  transition: all .4s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn.lg { padding: 22px 44px; font-size: 15px; }
.btn-primary {
  background: var(--mauve);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(124,113,147,.6);
}
.btn-primary:hover {
  background: var(--mauve-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(93,85,114,.7);
}
.btn-ghost {
  background: transparent;
  color: var(--mauve-deep);
  border-color: var(--mauve);
}
.btn-ghost:hover {
  background: var(--mauve);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost.light {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost.light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--mauve);
  border-color: var(--lavender);
}
.btn-outline:hover {
  background: var(--lavender-pale);
  border-color: var(--mauve);
}
.btn-whats {
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  padding: 14px 24px;
  width: 100%;
}
.btn-whats:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
  background: rgba(250,245,242,0);
  backdrop-filter: blur(0);
}
.nav.scrolled {
  background: rgba(250,245,242,.85);
  backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 4px 30px -10px rgba(124,113,147,.18);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo img { height: 38px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mauve-deep);
}
.nav-links a { position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--mauve); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--mauve);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 12px 22px;
  background: var(--mauve);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--mauve-deep); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--mauve);
  border-radius: 14px;
  box-shadow: 0 8px 20px -8px rgba(93,85,114,.4);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-toggle:hover { background: var(--mauve-deep); transform: scale(1.05); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s var(--ease);
}

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 110px;
  background: linear-gradient(170deg, var(--nude-soft) 0%, var(--nude-bg) 60%, var(--lavender-pale) 130%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text { max-width: 700px; }
.hero-text .display em { display: inline-block; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink);
  opacity: .85;
  margin: 34px 0 44px;
  max-width: 580px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--mauve-deep); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}
.hero-image-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 320px 320px 32px 32px;
  overflow: hidden;
  box-shadow: 0 50px 100px -30px rgba(93,85,114,.45);
  background: var(--lavender-pale);
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.hero-floating-icon {
  position: absolute;
  width: 130px; height: auto;
  bottom: -30px; left: -50px;
  opacity: .85;
  transform: rotate(-12deg);
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}

/* Hero ornaments */
.hero-ornament {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.hero-ornament-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 65%);
  top: -120px; right: -80px;
  opacity: .55;
}
.hero-ornament-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  opacity: .45;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--mauve);
  opacity: .85;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint .mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--mauve);
  border-radius: 14px;
  position: relative;
  display: block;
}
.hero-scroll-hint .mouse::before {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  background: var(--mauve);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouseWheel 1.8s ease-in-out infinite;
}
.hero-scroll-hint .arrow {
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--mauve);
  border-bottom: 1.5px solid var(--mauve);
  transform: rotate(45deg);
  margin-top: -2px;
  animation: arrowBounce 1.8s ease-in-out infinite;
}
@keyframes mouseWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .5; }
  50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

/* =========== PROMESSA =========== */
.promessa {
  padding: clamp(110px, 14vw, 200px) 0;
  background-image:
    linear-gradient(180deg, rgba(250,245,242,.82) 0%, rgba(228,221,236,.82) 100%),
    url("../assets/img/flor_lilas_web.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promessa::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.promessa .container { position: relative; z-index: 2; text-align: center; }
.promessa .display { max-width: 1100px; margin: 0 auto 56px; color: var(--mauve-deep); }

.promessa-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}
.promessa-box {
  border-radius: var(--radius);
  padding: 44px 44px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.promessa-box:hover { transform: translateY(-4px); }
.box-problema {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(124,113,147,.12);
  box-shadow: 0 18px 50px -25px rgba(124,113,147,.3);
}
.box-solucao {
  background: linear-gradient(135deg, var(--mauve-deep), var(--mauve));
  color: var(--white);
  box-shadow: 0 24px 50px -25px rgba(93,85,114,.55);
}
.box-solucao::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  border-radius: 50%;
  top: -100px; right: -80px;
  pointer-events: none;
}
.box-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.box-problema .box-tag {
  background: var(--lavender-pale);
  color: var(--mauve);
}
.box-solucao .box-tag {
  background: rgba(255,255,255,.18);
  color: var(--lavender-pale);
}
.promessa-box p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.75;
  text-align: justify;
  position: relative; z-index: 2;
}
.box-solucao p { color: rgba(255,255,255,.92); }

.promessa-final {
  margin: 64px auto 0;
  font-size: clamp(22px, 2.2vw, 30px);
  max-width: 900px;
  text-align: center;
}

.single-cta { text-align: center; margin-top: 48px; }

/* =========== ENSAIO / GALERIA MARQUEE =========== */
.ensaio {
  padding: clamp(80px, 11vw, 140px) 0;
  background: linear-gradient(180deg, var(--nude-bg) 0%, var(--lavender-pale) 100%);
  overflow: hidden;
}
.marquee {
  position: relative;
  margin: 64px 0 80px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marqueeSlide 60s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(124,113,147,.4);
  transition: transform .5s var(--ease);
}
.marquee-item:nth-child(odd) {
  transform: translateY(14px);
}
.marquee-item:hover {
  transform: translateY(-4px) scale(1.02);
}
.marquee-item:nth-child(odd):hover {
  transform: translateY(10px) scale(1.02);
}
.marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pilares-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  text-align: center;
  color: var(--mauve-deep);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
}
.pilares-quote .quote-mark {
  font-size: 80px;
  color: var(--lavender);
  line-height: 0;
  vertical-align: -25px;
  margin-right: 8px;
  font-family: serif;
}

/* ----- Agendamento bar ----- */
.agendamento-bar {
  margin: 64px auto 0;
  max-width: 1180px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px clamp(28px, 4vw, 56px);
  box-shadow: 0 30px 70px -30px rgba(124,113,147,.4);
  border: 1px solid rgba(124,113,147,.08);
  position: relative;
  overflow: hidden;
}
.agendamento-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mauve), var(--lavender), var(--rose-soft));
}
.agendamento-head {
  text-align: center;
  margin-bottom: 36px;
}
.agendamento-head .eyebrow { margin-bottom: 14px; }
.agendamento-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--mauve-deep);
  margin: 0 0 12px;
  font-weight: 400;
}
.agendamento-head p {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  opacity: .78;
  max-width: 540px;
  margin: 0 auto;
}
/* Chip direto destacado */
.chip-direct {
  display: block;
  position: relative;
  background: linear-gradient(135deg, var(--mauve-deep), var(--mauve));
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 28px;
  color: var(--white);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 20px 40px -22px rgba(93,85,114,.65);
  overflow: hidden;
}
.chip-direct::before {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  border-radius: 50%;
  top: -80px; right: -60px;
  pointer-events: none;
}
.chip-direct:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -22px rgba(93,85,114,.8);
}
.chip-direct-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.18);
  color: var(--lavender-pale);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.chip-direct-content {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.chip-direct-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
}
.chip-direct-text { flex: 1; line-height: 1.4; }
.chip-direct-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
}
.chip-direct-text span {
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
}
.chip-direct-arrow {
  font-size: 28px;
  color: var(--lavender-pale);
  transition: transform .3s var(--ease);
}
.chip-direct:hover .chip-direct-arrow { transform: translateX(6px); }

.agendamento-or {
  text-align: center;
  font-family: var(--font-body);
  color: var(--brown-mauve);
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 500;
}

.agendamento-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.chip-clinica {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--nude-soft);
  border-radius: 99px;
  border: 1.5px solid transparent;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.chip-clinica:hover {
  background: var(--white);
  border-color: var(--lavender);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(124,113,147,.35);
}
.chip-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
}
.chip-text { display: flex; flex-direction: column; line-height: 1.2; }
.chip-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--mauve-deep);
}
.chip-text span {
  font-size: 12px;
  color: var(--brown-mauve);
  opacity: .9;
}
.agendamento-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========== ATUAÇÃO =========== */
.atuacao {
  padding: clamp(90px, 13vw, 170px) 0;
  background-image:
    linear-gradient(180deg, rgba(228,221,236,.86) 0%, rgba(250,245,242,.78) 100%),
    url("../assets/img/flor_pernas_web.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.atuacao::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.atuacao .container { position: relative; z-index: 2; }
.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.card-atuacao {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 34px 44px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(124,113,147,.08);
}
.card-atuacao:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(124,113,147,.4);
}
.card-icon {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  background: var(--nude-soft);
  border-radius: 50%;
  color: var(--mauve);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.card-atuacao:hover .card-icon {
  background: var(--lavender-pale);
  transform: scale(1.08);
}
.card-icon svg { width: 42px; height: 42px; }
.card-atuacao h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--mauve-deep);
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: -.2px;
}
.card-atuacao p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  opacity: .8;
  line-height: 1.65;
}

/* =========== HISTÓRIA =========== */
.historia {
  padding: clamp(90px, 13vw, 170px) 0;
  background: var(--nude-bg);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}
.historia-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  width: 100%;
}
.photo-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(93,85,114,.4);
  z-index: 2;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.photo-deco {
  position: absolute;
  top: 30px; left: -30px;
  width: 100%; height: 100%;
  border: 2px solid var(--lavender);
  border-radius: 24px;
  z-index: 1;
}
.historia-text .display { margin-bottom: 28px; }
.historia-text p {
  font-size: 16.5px;
  color: var(--ink);
  opacity: .85;
  margin: 0 0 18px;
}
.historia-text strong { color: var(--mauve-deep); font-weight: 700; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--lavender);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 56px);
  color: var(--mauve);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform .4s var(--ease);
}
.stat:hover .stat-num {
  transform: scale(1.06);
  color: var(--mauve-deep);
}
.stat {
  position: relative;
  padding: 8px 0;
  transition: transform .4s var(--ease);
}
.stat::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--mauve), var(--lavender));
  border-radius: 2px;
  transition: width .9s var(--ease);
}
.stat.in-view::after { width: 48px; }
.stat.in-view .stat-num {
  animation: statPop .9s var(--ease);
}
@keyframes statPop {
  0%   { transform: translateY(14px) scale(.9); opacity: 0; }
  60%  { transform: translateY(-4px) scale(1.04); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brown-mauve);
  margin-top: 8px;
}

/* =========== CICLO MD =========== */
.ciclo {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  background-image:
    linear-gradient(135deg, rgba(74,67,92,.94) 0%, rgba(102,92,124,.92) 55%, rgba(130,118,154,.9) 130%),
    url("../assets/img/fundo_ciclo_md.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}
.ciclo-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(230,200,206,.22) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(209,197,222,.28) 0%, transparent 45%);
  pointer-events: none;
}
.ciclo .container { position: relative; z-index: 2; }
.ciclo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.ciclo-text .display { color: var(--white); }
.ciclo-text .display em { color: var(--lavender); }
.ciclo-md-name {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  font-size: .5em;
  color: var(--lavender);
  text-transform: none;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  margin-bottom: 14px;
}
.ciclo-text p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin: 0 0 18px;
}
.ciclo-text p.emphasis {
  color: var(--lavender);
  margin: 28px 0;
}
.ciclo-text strong { color: var(--white); font-weight: 700; }
.ciclo-features {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ciclo-features li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}
.ciclo-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 18px; height: 1px;
  background: var(--lavender);
}
.ciclo .btn-primary {
  background: var(--white);
  color: var(--mauve-deep);
  box-shadow: 0 14px 36px -10px rgba(0,0,0,.35);
}
.ciclo .btn-primary:hover { background: var(--lavender-pale); color: var(--mauve-deep); }

/* Phone mockup */
.ciclo-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19;
  background: #161020;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,.6),
    0 0 0 2px rgba(255,255,255,.05);
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #0a0612;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--nude-soft) 0%, var(--lavender-pale) 100%);
  border-radius: 32px;
  padding: 44px 20px 24px;
  overflow: hidden;
  color: var(--mauve-deep);
}
.phone-eyebrow {
  font-size: 10px;
  letter-spacing: 0;
  color: var(--mauve);
  font-weight: 700;
}
.phone-screen h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 4px 0 2px;
  color: var(--mauve-deep);
  font-weight: 400;
}
.phone-screen p {
  margin: 0 0 18px;
  font-size: 11px;
  color: var(--brown-mauve);
}
.phone-wheel {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 18px;
}
.wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--rose-soft) 0%, var(--mauve) 30%, var(--lavender) 60%, var(--rose-soft) 100%);
  padding: 4px;
  mask: radial-gradient(circle, transparent 56%, #000 57%);
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 57%);
  animation: wheelSpin 30s linear infinite;
}
@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}
.wheel-dot {
  position: absolute;
  top: -4px; left: 50%;
  width: 14px; height: 14px;
  background: var(--white);
  border: 2px solid var(--mauve);
  border-radius: 50%;
  transform: translateX(-50%) rotate(120deg) translateY(86px) rotate(-120deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
.wheel-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}
.wheel-center span {
  display: block;
  font-size: 9px;
  letter-spacing: 0;
  color: var(--brown-mauve);
}
.wheel-center strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--mauve-deep);
  margin: 2px 0;
  font-weight: 400;
}
.wheel-center small {
  font-size: 10px;
  color: var(--rose);
}
.phone-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
}
.phone-pill {
  font-size: 9px;
  padding: 5px 10px;
  background: var(--white);
  border-radius: 99px;
  color: var(--mauve);
  font-weight: 600;
}
.phone-card {
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  padding: 10px 12px;
}
.phone-card strong {
  display: block;
  font-size: 11px;
  color: var(--mauve-deep);
}
.phone-card span {
  font-size: 9.5px;
  color: var(--brown-mauve);
  line-height: 1.4;
}
.phone-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 60%);
  filter: blur(50px);
  z-index: 1;
  opacity: .5;
}

/* =========== CONTEÚDOS / REELS =========== */
.conteudos {
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--nude-bg);
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mauve);
  box-shadow: 0 14px 40px -20px rgba(124,113,147,.4);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 0;
  padding: 0;
  font-family: inherit;
}
.reel:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -20px rgba(124,113,147,.6);
}
.reel video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, transparent 40%, rgba(40,30,55,.85) 100%);
  color: var(--white);
}
.reel-play {
  align-self: flex-start;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.92);
  color: var(--mauve);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  padding-left: 3px;
  transition: transform .3s var(--ease);
}
.reel:hover .reel-play { transform: scale(1.1); }
.reel-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* =========== FAQ =========== */
.faq {
  padding: clamp(70px, 9vw, 120px) 0 clamp(90px, 12vw, 150px);
  background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--nude-soft) 100%);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--lavender-pale) 0%, transparent 60%);
  border-radius: 50%;
  top: 30%; right: -180px;
  filter: blur(80px);
  pointer-events: none;
  opacity: .7;
}
.faq .container { position: relative; z-index: 2; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(124,113,147,.1);
  overflow: hidden;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.faq-item[open] {
  box-shadow: 0 24px 50px -22px rgba(124,113,147,.3);
  border-color: var(--lavender);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--nude-soft); }
.faq-q {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--mauve-deep);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.2px;
}
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lavender-pale);
  transition: background .35s var(--ease), transform .4s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--mauve);
  border-radius: 2px;
  transition: transform .35s var(--ease);
}
.faq-icon::before {
  width: 14px; height: 1.8px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.8px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
  background: var(--mauve);
  transform: rotate(90deg);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--white);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-a {
  padding: 0 32px 28px;
  animation: faqOpen .4s var(--ease);
}
.faq-a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  opacity: .82;
  max-width: 760px;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq-cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--mauve);
  margin: 0 0 22px;
}

/* =========== WHATSAPP FLUTUANTE =========== */
.fab-whats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px 8px 8px;
  background: linear-gradient(135deg, var(--mauve), var(--mauve-deep));
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 38px -10px rgba(93,85,114,.6), 0 0 0 6px rgba(209,197,222,.25);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.fab-whats:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 50px -10px rgba(93,85,114,.75), 0 0 0 8px rgba(209,197,222,.35);
}
.fab-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
}
.fab-icon svg { display: block; }
.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: rgba(209,197,222,.45);
  z-index: 0;
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.fab-label {
  position: relative; z-index: 2;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .fab-whats {
    bottom: 16px;
    right: 16px;
    padding: 6px;
    gap: 0;
  }
  .fab-icon { width: 44px; height: 44px; }
  .fab-icon svg { width: 24px; height: 24px; }
  .fab-label { display: none; }
}

/* =========== VIDEO MODAL =========== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.video-modal.open {
  display: flex;
  opacity: 1;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 45, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.video-modal-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 420px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: modalIn .4s var(--ease);
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.video-modal-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.5);
}
.video-modal-player video {
  width: 100%;
  height: 100%;
  display: block;
}
.video-modal-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  text-align: center;
  margin: 0;
}
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.video-modal-close:hover {
  background: rgba(255,255,255,.25);
  transform: rotate(90deg);
}
@media (max-width: 760px) {
  .video-modal-content { width: 100%; }
  .video-modal-close { top: -46px; right: 4px; }
  .video-modal-title { font-size: 18px; }
}

/* =========== CLÍNICAS =========== */
.clinicas {
  padding: clamp(90px, 13vw, 170px) 0;
  background: linear-gradient(180deg, var(--nude-bg) 0%, var(--lavender-pale) 100%);
}
.clinica-direta {
  display: block;
  max-width: 880px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, var(--mauve-deep), var(--mauve));
  color: var(--white);
  padding: 52px 48px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(93,85,114,.65);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.clinica-direta:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -28px rgba(93,85,114,.85);
}
.direta-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 2;
  transition: background .3s var(--ease);
}
.clinica-direta:hover .direta-action { background: #128C7E; }
.clinica-direta::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  border-radius: 50%;
  top: -160px; right: -120px;
  pointer-events: none;
}
.clinica-direta::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(230,200,206,.18), transparent 70%);
  border-radius: 50%;
  bottom: -140px; left: -100px;
  pointer-events: none;
}
.direta-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.18);
  color: var(--lavender-pale);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 18px;
  text-transform: none;
}
.clinica-direta h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--white);
  margin: 0 0 6px;
  font-weight: 400;
  position: relative; z-index: 2;
}
.direta-phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--lavender-pale);
  margin: 0 0 14px;
  position: relative; z-index: 2;
}
.direta-text {
  font-size: 15.5px;
  color: rgba(255,255,255,.85);
  margin: 0 auto 28px;
  max-width: 540px;
  position: relative; z-index: 2;
}
.direta-benefits {
  list-style: none;
  padding: 24px 0;
  margin: 8px auto 32px;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.direta-benefits li {
  position: relative;
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
}
.direta-benefits li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-55%);
  color: var(--lavender);
  font-size: 22px;
  line-height: 0;
  opacity: .6;
}
.direta-action {
  display: inline-flex !important;
  width: auto;
}
.btn-whats-lg {
  display: inline-flex !important;
  width: auto !important;
  padding: 18px 36px !important;
  font-size: 14px !important;
}
.clinicas-or {
  text-align: center;
  font-family: var(--font-body);
  color: var(--brown-mauve);
  margin: 0 0 32px;
  font-size: 15px;
  font-weight: 500;
}
.clinicas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.clinica {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(124,113,147,.08);
  color: var(--ink);
}
.clinica:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(124,113,147,.45);
  border-color: var(--lavender);
}
.clinica-logo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--nude-soft);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.clinica:hover .clinica-logo-wrap { background: var(--lavender-pale); }
.clinica-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.clinica-logo-text {
  background: linear-gradient(135deg, var(--mauve), var(--mauve-soft));
  display: grid;
  place-items: center;
}
.clinica-logo-text span {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  text-align: center;
  font-weight: 400;
}
.clinica:hover .clinica-logo-text { background: linear-gradient(135deg, var(--mauve-deep), var(--mauve)); }
.clinica h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--mauve-deep);
  margin: 0 0 6px;
  font-weight: 400;
}
.clinica-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nude-soft);
  color: var(--mauve);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: all .3s var(--ease);
  margin-top: 8px;
}
.clinica:hover .clinica-action {
  background: #25D366;
  color: var(--white);
}
.clinica-num { display: none; }
.clinica h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--mauve-deep);
  margin: 0 0 8px;
  font-weight: 400;
}
.clinica-local {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brown-mauve);
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 26px;
  flex: 1;
}
.tele-note {
  margin: 56px auto 0;
  text-align: center;
  color: var(--mauve-deep);
  font-size: 16px;
}
.tele-note strong { color: var(--mauve); }
.linktree-note {
  margin: 32px auto 0;
  text-align: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========== CTA FINAL =========== */
.cta-final {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.2);
  z-index: 1;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93,85,114,.92), rgba(124,113,147,.85));
  z-index: 2;
}
.cta-final .container { position: relative; z-index: 3; }
.cta-final .display { color: var(--white); margin-bottom: 24px; }
.cta-final .display em { color: var(--lavender); }
.cta-final p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,.9);
  max-width: 620px;
  margin: 0 auto 40px;
}
.cta-final .hero-ctas { justify-content: center; }
.cta-final .btn-primary {
  background: var(--white);
  color: var(--mauve-deep);
}
.cta-final .btn-primary:hover {
  background: var(--lavender-pale);
}

/* =========== FOOTER =========== */
.footer {
  background: var(--mauve-deep);
  color: rgba(255,255,255,.8);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img {
  margin-bottom: 24px;
}
.footer-brand .footer-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: none;
  opacity: 1;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 0 20px;
}
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lavender);
  transition: color .3s;
}
.footer-ig:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-col ul li a { transition: color .3s; }
.footer-col ul li a:hover { color: var(--lavender); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0;
}
.footer-primary {
  color: var(--lavender) !important;
  font-weight: 600;
}
.footer-primary:hover { color: var(--white) !important; }
.footer-bottom a { color: var(--lavender); transition: color .3s; }
.footer-bottom a:hover { color: var(--white); }

/* =========== REVEAL =========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1080px) {
  .nav-links { gap: 22px; font-size: 13px; }
  .atuacao-grid, .clinicas-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  :root { --gutter: 22px; }

  /* ---------- ESPAÇAMENTO GERAL ENTRE SEÇÕES (mais apertado no mobile) ---------- */
  .promessa,
  .ensaio,
  .atuacao,
  .historia,
  .ciclo,
  .conteudos,
  .faq,
  .clinicas {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .cta-final { padding: 70px 0 !important; }
  .section-head { margin-bottom: 36px; }
  .single-cta { margin-top: 32px; }
  .pilares-quote { margin-top: 4px; }

  /* ---------- NAV ---------- */
  .nav { padding: 12px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.active { background: var(--mauve-deep); }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
  .nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 30px var(--gutter) 26px;
    gap: 20px;
    box-shadow: 0 16px 40px -10px rgba(124,113,147,.25);
    border-radius: 0 0 28px 28px;
    font-size: 16px;
  }

  /* ---------- BOTÕES (compactos, ajustados ao texto) ---------- */
  .btn {
    padding: 13px 22px;
    font-size: 14px;
    width: auto !important;
    max-width: none !important;
    display: inline-flex !important;
  }
  .btn.lg { padding: 14px 26px; font-size: 14.5px; }

  /* ---------- HERO ---------- */
  .hero { padding: 110px 0 80px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-text .eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin: 26px auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-image {
    max-width: 360px;
    width: 86%;
    margin: 0 auto;
  }
  .hero-image-frame { border-radius: 200px 200px 24px 24px; }
  .hero-floating-icon {
    width: 80px;
    left: 8px;
    bottom: -18px;
  }
  .hero-scroll-hint { display: none; }

  /* ---------- PROMESSA ---------- */
  .promessa {
    background-image:
      linear-gradient(180deg, rgba(250,245,242,.84) 0%, rgba(228,221,236,.84) 100%),
      url("../assets/img/flor_lilas_mobile.png");
    background-attachment: scroll;
  }
  .promessa .container { text-align: center; }
  .promessa-boxes { grid-template-columns: 1fr; gap: 16px; }
  .promessa-box { padding: 30px 22px; text-align: left; }
  .promessa-box p { font-size: 15.5px; }
  .promessa-final { font-size: 21px; }

  /* ---------- ENSAIO + MARQUEE ---------- */
  .ensaio .container { text-align: center; }
  .marquee-item { width: 200px; }
  .marquee { margin: 44px 0 56px; }
  .pilares-quote { font-size: 22px; padding: 0 var(--gutter); }
  .single-cta .btn { width: 100%; max-width: 320px; }

  /* ---------- ATUAÇÃO ---------- */
  .atuacao {
    background-image:
      linear-gradient(180deg, rgba(228,221,236,.88) 0%, rgba(250,245,242,.82) 100%),
      url("../assets/img/flor_pernas_mobile.png");
    background-attachment: scroll;
  }
  .atuacao .container { text-align: center; }
  .atuacao-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card-atuacao { padding: 32px 18px; }
  .card-atuacao h3 { font-size: 20px; }
  .card-atuacao p { font-size: 14px; }

  /* ---------- HISTÓRIA ---------- */
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .historia-photo { max-width: 360px; margin: 0 auto; }
  .photo-deco { left: -10px; top: 12px; }
  .historia-text { text-align: center; }
  .historia-text .eyebrow { margin-left: auto; margin-right: auto; }

  /* STATS — 3 em uma linha, centrais */
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 32px auto 0;
    padding-top: 28px;
    max-width: 440px;
    justify-items: center;
    text-align: center;
  }
  .stat { text-align: center; padding: 6px 0; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 10.5px; line-height: 1.3; }
  .stat::after { left: 50%; transform: translateX(-50%); }

  /* ---------- CICLO MD ---------- */
  .ciclo { padding: 80px 0 90px; }
  .ciclo-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .ciclo-text { text-align: center; }
  .ciclo-text .eyebrow { margin-left: auto; margin-right: auto; }
  .ciclo-features {
    align-items: flex-start;
    text-align: left;
    max-width: 360px;
    margin: 24px auto 32px;
  }
  .phone { width: 240px; }

  /* ---------- CONTEÚDOS ---------- */
  .conteudos .container { text-align: center; }
  .reels-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  /* Último reel solitário, centralizar */
  .reels-grid .reel:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 7px);
  }

  /* ---------- FAQ ---------- */
  .faq .container { text-align: center; }
  .faq-list { text-align: left; }
  .faq-item summary { padding: 20px 20px; gap: 14px; }
  .faq-a { padding: 0 20px 22px; }
  .faq-q { font-size: 17px; }
  .faq-icon { width: 32px; height: 32px; }
  .faq-icon::before { width: 11px; }
  .faq-icon::after { height: 11px; }

  /* ---------- CLÍNICAS ---------- */
  .clinicas .container { text-align: center; }
  .clinica-direta { padding: 38px 22px; }
  .direta-phone { font-size: 26px; }
  .direta-benefits {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
    max-width: 360px;
  }
  .direta-benefits li { font-size: 14px; }
  .direta-benefits li:not(:last-child)::after { display: none; }
  .clinicas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .clinica { padding: 22px 16px; }
  .clinica h3 { font-size: 18px; }
  .linktree-note { flex-direction: column; gap: 12px; align-items: center; }
  .linktree-note .btn { width: 100%; max-width: 320px; }

  /* ---------- CTA FINAL ---------- */
  .cta-final .hero-ctas { flex-direction: column; align-items: center; }
  .cta-final .btn { width: 100%; max-width: 320px; }

  /* ---------- FOOTER ---------- */
  .footer { padding: 60px 0 26px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .footer-brand { grid-column: auto; text-align: left; }
  .footer-brand p, .footer-brand .footer-logo { margin-left: 0; margin-right: 0; display: block; }
  .footer-col h4 { text-align: left; margin-bottom: 14px; }
  .footer-col ul { display: block; text-align: left; }
  .footer-col ul li { font-size: 14.5px; line-height: 1.5; }
  .footer-ig { display: inline-flex; }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .display { font-size: 32px; line-height: 1.1; }
  .display.lg { font-size: 34px; }
  .hero-ctas { flex-direction: column; align-items: center; width: auto; }
  .btn { padding: 12px 22px; font-size: 13.5px; }
  .marquee-item { width: 170px; }
  .reel { aspect-ratio: 9 / 14; }
  .reels-grid { gap: 12px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; }
}

/* =========== ANIMAÇÕES EXTRAS NO MOBILE =========== */
@media (max-width: 760px) {
  /* Reveal com slide mais marcante */
  .reveal {
    transform: translateY(40px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  }

  /* Stagger automático nos cards (sem precisar de --delay manual) */
  .atuacao-grid .card-atuacao:nth-child(1) { transition-delay: 0ms; }
  .atuacao-grid .card-atuacao:nth-child(2) { transition-delay: 100ms; }
  .atuacao-grid .card-atuacao:nth-child(3) { transition-delay: 200ms; }
  .atuacao-grid .card-atuacao:nth-child(4) { transition-delay: 300ms; }
  .clinicas-grid .clinica:nth-child(1) { transition-delay: 0ms; }
  .clinicas-grid .clinica:nth-child(2) { transition-delay: 100ms; }
  .clinicas-grid .clinica:nth-child(3) { transition-delay: 200ms; }
  .clinicas-grid .clinica:nth-child(4) { transition-delay: 300ms; }
  .reels-grid .reel:nth-child(1) { transition-delay: 0ms; }
  .reels-grid .reel:nth-child(2) { transition-delay: 80ms; }
  .reels-grid .reel:nth-child(3) { transition-delay: 160ms; }
  .reels-grid .reel:nth-child(4) { transition-delay: 240ms; }
  .reels-grid .reel:nth-child(5) { transition-delay: 320ms; }

  /* Float sutil nas caixinhas da Promessa */
  .promessa-box {
    animation: boxFloat 8s ease-in-out infinite;
  }
  .box-solucao { animation-delay: -4s; }
  @keyframes boxFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }

  /* Tap feedback no mobile — botões e cards ficam menores quando tocados */
  .btn:active { transform: scale(.96); transition: transform .15s var(--ease); }
  .clinica:active,
  .card-atuacao:active,
  .reel:active,
  .faq-item:active { transform: scale(.98); transition: transform .15s var(--ease); }

  /* Ícone do hero flutuando mais marcado no mobile */
  .hero-floating-icon {
    animation: floaty 6s ease-in-out infinite, fadeInUp 1.2s var(--ease) .4s both;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px) rotate(-12deg); }
    to   { opacity: .85; transform: rotate(-12deg); }
  }

  /* Foto da Dra. com leve entrada no hero */
  .hero-image-frame {
    animation: heroImageIn 1.4s var(--ease) .2s both;
  }
  @keyframes heroImageIn {
    from { opacity: 0; transform: scale(.94) translateY(20px); }
    to   { opacity: 1; transform: none; }
  }

  /* Foto da Histórica sobe entrando */
  .historia-photo {
    animation: photoSlide 1.2s var(--ease) .3s both;
  }
  @keyframes photoSlide {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
  }

  /* Phone do CICLO MD gira de leve ao entrar */
  .phone {
    animation: phoneIn 1.4s var(--ease) .4s both;
  }
  @keyframes phoneIn {
    from { opacity: 0; transform: rotate(-6deg) translateY(20px) scale(.95); }
    to   { opacity: 1; transform: none; }
  }

  /* WhatsApp flutuante com leve "tchan" no carregamento */
  .fab-whats {
    animation: fabIn .8s var(--ease) 1.2s both;
  }
  @keyframes fabIn {
    from { transform: translateY(100px) scale(.6); opacity: 0; }
    to   { transform: none; opacity: 1; }
  }

  /* Cards de clínica com lift quando em foco */
  .clinica { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }

  /* FAQ item: efeito de "abertura" mais marcado */
  .faq-item[open] {
    animation: faqGlow .5s var(--ease);
  }
  @keyframes faqGlow {
    0%   { box-shadow: 0 0 0 0 rgba(124,113,147,.3); }
    50%  { box-shadow: 0 24px 50px -22px rgba(124,113,147,.5); }
    100% { box-shadow: 0 24px 50px -22px rgba(124,113,147,.3); }
  }
}
