/* ==================================================================
   Michelle Martins — Saúde Integrativa
   style.css · organizado por seções
   ================================================================== */

/* ---------- 1. Tokens / variáveis ---------- */
:root {
  /* cores da identidade (lavanda / lilás / roxo + dourado suave) */
  --plum-900: #3b2456;
  --purple-700: #5b3a85;
  --purple-500: #7c5ba6;
  --lilac-400: #a98fd0;
  --lavender-200: #e7dbf5;
  --lavender-100: #f2ecfa;
  --lavender-50: #f8f4fd;
  --mist: #fbfaff;
  --white: #ffffff;
  --gold: #c6a15b;
  --gold-soft: #e3cf9f;

  --ink: #40354e;      /* texto corpo */
  --ink-soft: #6d6480; /* texto secundário */

  /* superfícies / efeitos */
  --shadow-sm: 0 4px 14px rgba(75, 46, 111, .08);
  --shadow-md: 0 14px 40px rgba(75, 46, 111, .12);
  --shadow-lg: 0 30px 70px rgba(75, 46, 111, .18);
  --ring: 0 0 0 4px rgba(124, 91, 166, .18);

  --grad-brand: linear-gradient(135deg, #6a45a0 0%, #8c63c6 55%, #b79bd4 100%);
  --grad-soft: linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --container: 1160px;
  --wa-green: #25d366;
  --wa-green-dark: #1da851;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  color: var(--plum-900);
  letter-spacing: .2px;
}

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

::selection { background: var(--lilac-400); color: #fff; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ---------- 3. Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-500);
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 22px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center .eyebrow__dot { width: 30px; background: linear-gradient(90deg, transparent, var(--gold)); }

.section { padding: clamp(64px, 9vw, 128px) 0; }

.section__head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 6vw, 66px); }
.section__title { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
.section__lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: 16px; }

.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 500;
  font-size: .98rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(124, 91, 166, .34);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(124, 91, 166, .44); }

.btn--ghost {
  background: rgba(255, 255, 255, .6);
  border-color: var(--lavender-200);
  color: var(--purple-700);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--lilac-400); box-shadow: var(--shadow-sm); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, .34);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(37, 211, 102, .46); }
.ico-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .4s var(--ease), box-shadow .4s var(--ease);
}
/* O blur fica num pseudo-elemento (e não no .site-header) para não criar um
   containing block para os descendentes fixed (o menu mobile), o que fazia
   o painel do menu colapsar quando o header estava com backdrop-filter. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 250, 255, .82);
  backdrop-filter: blur(16px) saturate(160%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(75, 46, 111, .08);
  border-bottom: 1px solid rgba(167, 143, 208, .18);
}
.site-header.is-scrolled::before { opacity: 1; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header__logo img { height: 46px; width: auto; transition: height .4s var(--ease); }
.site-header.is-scrolled .header__logo img { height: 40px; }

.nav__list { display: flex; gap: 6px; }
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: .96rem;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--purple-700); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__cta { padding: 11px 20px; font-size: .92rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--lavender-200);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--purple-700);
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(130px, 17vh, 190px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(1100px 620px at 78% -8%, var(--lavender-200) 0%, transparent 60%),
    radial-gradient(900px 560px at 0% 100%, var(--lavender-100) 0%, transparent 55%),
    var(--mist);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(560px 560px at 72% 34%, rgba(179, 145, 214, .30), transparent 62%);
  animation: breathe 9s var(--ease) infinite;
  pointer-events: none;
}
@keyframes breathe { 0%, 100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--purple-500), var(--lilac-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text { font-size: 1.16rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(167, 143, 208, .3);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.hero__badge .stars { font-size: 1rem; }
.hero__badge strong { display: block; color: var(--plum-900); font-size: .98rem; font-weight: 600; }
.hero__badge span { font-size: .82rem; color: var(--ink-soft); }

/* mídia do hero */
.hero__media { position: relative; justify-self: center; }
.hero__photo-frame {
  position: relative;
  width: min(400px, 82vw);
  border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
  padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(231,219,245,.6));
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.hero__photo-frame img {
  width: 100%;
  border-radius: 250px 250px var(--radius) var(--radius);
  object-fit: cover;
  aspect-ratio: 396 / 440;
}
.hero__float-card {
  position: absolute;
  left: -26px; bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.hero__float-card svg { width: 30px; height: 30px; color: var(--purple-500); flex: none; }
.hero__float-card strong { display: block; font-size: .92rem; color: var(--plum-900); font-weight: 600; }
.hero__float-card span { font-size: .78rem; color: var(--ink-soft); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ornamentos flutuantes */
.lotus, .leaf { position: absolute; color: var(--lilac-400); pointer-events: none; z-index: 1; }
.lotus--1 { width: 150px; top: 16%; left: 4%; opacity: .5; animation: floaty 8s ease-in-out infinite; }
.leaf { color: var(--lavender-200); }
.leaf--1 { width: 90px; top: 8%; right: 6%; transform: rotate(20deg); opacity: .8; }
.leaf--2 { width: 70px; bottom: 6%; left: 12%; transform: rotate(-30deg); opacity: .7; }
.lotus--soft { width: 130px; bottom: -20px; right: -14px; opacity: .4; z-index: 0; }
.lotus--cta { width: 220px; right: 3%; bottom: -30px; color: rgba(255,255,255,.14); }

/* ---------- 7. Sobre ---------- */
.sobre { background: var(--grad-soft); }
.sobre__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.sobre__media { position: relative; justify-self: center; }
.sobre__photo-frame {
  position: relative; z-index: 2;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform .5s var(--ease);
}
.sobre__media:hover .sobre__photo-frame { transform: rotate(0); }
.sobre__photo-frame img { border-radius: var(--radius); aspect-ratio: 452 / 540; object-fit: cover; }
.sobre__content p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.06rem; }
.sobre__pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.sobre__pills li {
  padding: 8px 16px;
  font-size: .88rem; font-weight: 500;
  color: var(--purple-700);
  background: var(--lavender-100);
  border: 1px solid var(--lavender-200);
  border-radius: var(--radius-pill);
}

/* ---------- 8. Tratamentos ---------- */
.tratamentos { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 26px;
}
.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--lavender-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--lilac-400); }
.card__media { aspect-ratio: 1 / 1; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }

.card__media--brand {
  display: grid; place-items: center;
  position: relative;
  background:
    radial-gradient(140% 120% at 20% 0%, #8c63c6 0%, #6a45a0 55%, #4a2e70 100%);
}
.card__art { width: 108px; color: rgba(255, 255, 255, .82); }
.card__art-label {
  position: absolute; bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem; font-style: italic; color: rgba(255, 255, 255, .9);
}

.card__icon {
  position: relative;
  margin-top: -28px;
  margin-left: 22px;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.card__icon svg { width: 26px; height: 26px; color: var(--purple-500); }
.card__body { padding: 34px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.7rem; margin-bottom: 8px; }
.card__desc { color: var(--ink-soft); font-size: .98rem; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.chips li {
  font-size: .76rem; font-weight: 500;
  padding: 5px 11px;
  color: var(--purple-700);
  background: var(--lavender-50);
  border: 1px solid var(--lavender-200);
  border-radius: var(--radius-pill);
}
.card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--wa-green-dark);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.card__cta span { transition: transform .3s var(--ease); }
.card__cta:hover { color: var(--purple-700); }
.card__cta:hover span { transform: translateX(5px); }

/* ---------- 9. Benefícios ---------- */
.beneficios { background: var(--grad-soft); }
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.benefit {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--lavender-200);
  border-radius: var(--radius);
  font-weight: 500; color: var(--plum-900);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit__ico {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-brand);
}
.benefit__ico svg { width: 24px; height: 24px; color: #fff; }

/* ---------- 10. Como funciona (timeline) ---------- */
.como { background: var(--white); }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute; top: 27px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--lavender-200), var(--lilac-400), var(--lavender-200));
  z-index: 0;
}
.step { position: relative; text-align: center; padding-top: 4px; z-index: 1; }
.step__num {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem; font-weight: 600; color: #fff;
  background: var(--grad-brand);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(124, 91, 166, .34);
  border: 4px solid var(--white);
}
.step h3 { font-size: 1.45rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- 11. Depoimentos ---------- */
.depoimentos { background: var(--grad-soft); }
.google-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--lavender-200);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.google-rating strong { color: var(--plum-900); }
.google-rating__count { color: var(--ink-soft); font-size: .9rem; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--lavender-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial .stars { font-size: 1.05rem; margin-bottom: 14px; }
.testimonial blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; line-height: 1.4; color: var(--plum-900);
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.avatar {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff; font-weight: 600;
  font-family: "Cormorant Garamond", serif; font-size: 1.2rem;
}

/* ---------- 12. Faixa CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.cta-band__glow {
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 20% 20%, rgba(255,255,255,.22), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .9); font-size: 1.1rem; margin-bottom: 32px; }

/* ---------- 13. Contato ---------- */
.contato { background: var(--white); }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.contato__list { margin: 30px 0 32px; display: grid; gap: 20px; }
.contato__list li { display: flex; align-items: flex-start; gap: 16px; }
.contato__ico {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--lavender-100);
  border: 1px solid var(--lavender-200);
}
.contato__ico svg { width: 24px; height: 24px; color: var(--purple-500); }
.contato__list strong { display: block; color: var(--plum-900); font-weight: 600; }
.contato__list a:hover { color: var(--purple-700); }
.contato__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contato__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  min-height: 380px;
}
.contato__map iframe { width: 100%; height: 100%; min-height: 366px; border: 0; display: block; }

/* ---------- 14. Rodapé ---------- */
.footer { background: var(--plum-900); color: rgba(255, 255, 255, .72); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand img { height: 54px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { max-width: 30ch; font-size: .95rem; }
.footer h4 { color: #fff; font-size: 1.3rem; margin-bottom: 16px; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__contact a, .footer__contact span { color: rgba(255, 255, 255, .72); font-size: .95rem; transition: color .3s var(--ease); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; }
.footer__bottom p { font-size: .85rem; text-align: center; color: rgba(255, 255, 255, .55); }

/* ---------- 15. Flutuantes (WhatsApp + topo) ---------- */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .35s var(--ease);
  animation: pulse-wa 2.6s infinite;
}
.fab-whatsapp svg { width: 32px; height: 32px; fill: #fff; }
.fab-whatsapp:hover { transform: scale(1.09); }
@keyframes pulse-wa {
  0% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

.to-top {
  position: fixed; right: 24px; bottom: 92px; z-index: 90;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--lavender-200);
  border-radius: 50%;
  color: var(--purple-700);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; fill: currentColor; }
.to-top:hover { background: var(--purple-700); color: #fff; }

/* ---------- 16. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 17. Responsivo ---------- */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    background: rgba(251, 250, 255, .97);
    backdrop-filter: blur(18px);
    box-shadow: -20px 0 60px rgba(75, 46, 111, .16);
    transform: translateX(105%);
    transition: transform .45s var(--ease);
    display: flex; align-items: center;
    padding: 90px 30px 30px;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 6px; width: 100%; }
  .nav__link { display: block; padding: 12px 16px; font-size: 1.05rem; }
  .nav-toggle { display: flex; order: 3; }
  .header__cta { display: none; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__media { order: 1; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .eyebrow { justify-content: center; }
  .hero__float-card { left: auto; right: -10px; }

  .sobre__inner { grid-template-columns: 1fr; text-align: center; }
  .sobre__pills, .sobre__content .eyebrow { justify-content: center; }
  .sobre__media { order: -1; }

  .contato__inner { grid-template-columns: 1fr; }
  .contato__actions { justify-content: center; }

  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}

@media (max-width: 620px) {
  .timeline { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; text-align: left; }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 6px 18px; align-items: center; text-align: left; }
  .step__num { margin: 0; }
  .step h3 { grid-column: 2; }
  .step p { grid-column: 2; }

  .footer__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer__nav, .footer__contact { align-items: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__brand img { margin-inline: auto; }

  .btn--lg { width: 100%; }
  .hero__actions .btn, .contato__actions .btn, .cta-band .btn { width: 100%; }
}

/* ---------- 18. Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
