/* ==========================================================================
   NUMI — Landing page (código puro, otimizada)
   Reconstrução da página usenumi.com.br sem dependências de WordPress/Elementor
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --red: #d93446;
  --red-dark: #c11f31;
  --red-soft: #e8556a;
  --navy: #14162b;
  --indigo: #2e2fa6;
  --indigo-deep: #0c1340;
  --ink: #1b1d33;
  --body: #45454f;
  --muted: #71717c;

  --cream: #fbf4ef;
  --cream-2: #fdf8f3;
  --card: #fdf8f3;
  --periwinkle: #e7e9fb;
  --pink-band: #f9c9d0;
  --pink-soft: #fdecef;
  --line: #efe6df;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px -20px rgba(20, 22, 43, .18);
  --shadow-soft: 0 10px 30px -16px rgba(20, 22, 43, .16);
  --maxw: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
strong { font-weight: 700; color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(120deg, var(--indigo), #4a49d6);
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 999px; text-transform: uppercase;
}
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 17px; line-height: 1;
  padding: 18px 34px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px -12px rgba(217, 52, 70, .7); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(217, 52, 70, .8); }
.btn--ghost { background: #fff; color: var(--navy); box-shadow: var(--shadow-soft); }
.btn--ghost:hover { transform: translateY(-2px); }
.btn--lg { padding: 20px 42px; font-size: 18px; }
.btn--block { width: 100%; }

/* ==========================================================================
   Announcement marquee
   ========================================================================== */
.topbar { background: var(--red); color: #fff; overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track { display: flex; align-items: center; flex-shrink: 0; }
.ico { display: inline-block; flex-shrink: 0; vertical-align: -0.18em; }
.ico--red { color: var(--red); }
.marquee__track span { padding: 11px 28px; font-size: 14px; font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; gap: 9px; }
.marquee__track span .ico { width: 17px; height: 17px; }
.topbar:hover .marquee { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 244, 239, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 22, 43, .06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.logo { font-size: 30px; font-weight: 800; letter-spacing: .06em; color: var(--navy); }
.nav { display: flex; align-items: center; gap: 38px; }
.nav a { font-weight: 600; color: var(--navy); font-size: 16px; transition: color .2s; }
.nav a:hover { color: var(--red); }
.header__cta { display: flex; align-items: center; gap: 16px; }
.header__cta .btn { padding: 14px 28px; font-size: 16px; }
.header__truck { display: inline-flex; align-items: center; color: var(--red); }
.header__truck .ico { width: 28px; height: 28px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center 22%;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
/* Slide 2 (tênis): a modelo é central na foto; no desktop damos zoom ancorado à esquerda
   pra deslocá-la à direita e o texto não tampar o rosto/produto */
@media (min-width: 981px) {
  .hero__slide:nth-child(2) { background-size: 132% auto; background-position: 10% 20%; }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(251, 244, 239, .96) 0%, rgba(251, 244, 239, .82) 30%, rgba(251, 244, 239, .28) 52%, rgba(251, 244, 239, 0) 70%);
}
.hero__inner { position: relative; z-index: 2; padding: 60px 0; width: 100%; }
.hero__content { max-width: 640px; display: grid; }
.hero__text { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero__text.is-active { opacity: 1; visibility: visible; transform: none; }
.hero h1 { font-size: clamp(40px, 5.8vw, 72px); font-weight: 700; color: var(--navy); }
.hero p { font-size: clamp(18px, 2.1vw, 24px); color: #3a3a46; margin-top: 22px; max-width: 520px; line-height: 1.4; }
.hero .btn { margin-top: 34px; }
.hero__dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(217, 52, 70, .35); cursor: pointer; transition: .3s; padding: 0; }
.hero__dots button.is-active { background: var(--red); width: 26px; border-radius: 999px; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust { background: var(--cream); padding: 40px 0 8px; }
.trust__bar {
  background: var(--periwinkle); border-radius: var(--radius-lg);
  padding: 26px 30px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
.trust__item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.trust__item .ico { width: 27px; height: 27px; color: var(--red); flex-shrink: 0; }
.trust__item .bar { width: 1px; align-self: stretch; min-height: 30px; background: rgba(46, 47, 166, .2); flex-shrink: 0; }
.trust__item p { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.25; min-width: 0; }

/* ==========================================================================
   CTA band (Queima enquanto dorme & Ativa enquanto treina)
   ========================================================================== */
.band {
  text-align: center;
  background:
    radial-gradient(60% 90% at 20% 0%, rgba(233, 228, 251, .9), transparent 60%),
    radial-gradient(70% 90% at 90% 100%, rgba(251, 214, 222, .8), transparent 60%),
    var(--cream);
  padding: 88px 0;
}
.band .eyebrow { margin-bottom: 26px; }
.band h2 { font-size: clamp(34px, 5vw, 58px); max-width: 900px; margin-inline: auto; }
.band p { font-size: clamp(17px, 2vw, 21px); color: var(--body); max-width: 620px; margin: 22px auto 0; }
.band .btn { margin-top: 34px; }

/* ==========================================================================
   Problemas (pink) section
   ========================================================================== */
.problems { background: linear-gradient(180deg, var(--pink-band) 0%, #f6b8c2 100%); padding: 70px 0; }
.problems__card {
  background: var(--cream-2); border-radius: var(--radius-lg); padding: 56px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center;
  box-shadow: var(--shadow);
}
.problems__head h2 { font-size: clamp(32px, 4.4vw, 50px); }
.problems__head p { margin-top: 18px; color: var(--body); font-size: 16.5px; }
.problems__list { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.pill-card {
  display: flex; align-items: center; gap: 16px; background: #fff;
  border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-soft);
}
.pill-card img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.pill-card h3 { font-size: 18px; }
.pill-card p { margin: 2px 0 0; font-size: 14.5px; font-style: italic; color: var(--muted); }

.collage { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; aspect-ratio: 1 / 1; }
.collage img:nth-child(1) { aspect-ratio: 3 / 4; }
.collage img:nth-child(4) { aspect-ratio: 3 / 4; }

/* ==========================================================================
   Fórmula perfeita (2x2 features + product)
   ========================================================================== */
.formula { background: var(--cream); }
.formula h2.section-title { text-align: center; font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 60px; }
.formula__grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center;
}
.formula__col { display: flex; flex-direction: column; gap: 46px; }
.feature { text-align: center; }
.feature .chev { color: var(--red); font-size: 22px; font-weight: 800; display: block; margin-bottom: 10px; }
.feature h3 { font-size: 21px; margin-bottom: 8px; }
.feature p { font-size: 15.5px; color: var(--muted); max-width: 320px; margin-inline: auto; }
.formula__product { display: flex; justify-content: center; align-items: flex-end; }
.formula__bottle { height: clamp(280px, 32vw, 380px); width: auto; filter: drop-shadow(0 22px 26px rgba(217, 52, 70, .26)); transform-origin: bottom center; will-change: transform; }
/* Frascos inclinados (leque) e flutuando para cima/baixo em sincronia */
.formula__bottle--back { z-index: 1; animation: floatBottle 4.5s ease-in-out infinite; --tilt: -9deg; }
.formula__bottle--front { margin-left: -50px; margin-bottom: -8px; z-index: 2; animation: floatBottle 4.5s ease-in-out infinite; --tilt: 9deg; }
@keyframes floatBottle {
  0%, 100% { transform: translateY(0) rotate(var(--tilt)); }
  50%      { transform: translateY(-16px) rotate(var(--tilt)); }
}

/* ==========================================================================
   Testimonials carousel (whatsapp)
   ========================================================================== */
.testi { background: var(--cream); text-align: center; }
.testi h2 { font-size: clamp(30px, 4.4vw, 48px); max-width: 820px; margin: 0 auto 12px; }
.testi .sub { color: var(--body); font-size: 18px; margin-bottom: 44px; }
.wa-track { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.wa-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow); overflow: hidden;
  width: 300px; max-width: 84vw;
}
.wa-card img { width: 100%; }

/* ==========================================================================
   Rituais (noite / dia)
   ========================================================================== */
.rituals { background: var(--cream); overflow: hidden; }
.rituals__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; padding: 30px 0; }
.ritual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.ritual--night { transform: rotate(-2.6deg); transform-origin: center; }
.ritual--day { transform: rotate(2.6deg) translateY(-26px); transform-origin: center; z-index: 2; }
.rituals__grid { column-gap: 8px; }
.ritual__head { padding: 34px 38px; }
.ritual--night .ritual__head { background: linear-gradient(120deg, #10197a, #3b45d6); }
.ritual--day .ritual__head { background: linear-gradient(120deg, #d93446, #e8556a); }
.ritual__head h2 { color: #fff; font-size: 32px; }
.ritual__body { padding: 34px 38px 40px; }
.ritual--night .ritual__body { background: #eceefb; }
.ritual--day .ritual__body { background: #fbe7ea; }
.ritual__body > p { font-size: 17px; color: var(--ink); }
.ritual__body > p strong { color: var(--navy); }
.ritual__body hr { border: none; border-top: 1px solid rgba(20, 22, 43, .12); margin: 24px 0; }
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--ink); }
.check-list li::before {
  content: "✓"; font-weight: 800; flex-shrink: 0; margin-top: 1px;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
}
.ritual--night .check-list li::before { color: #3b45d6; }
.ritual--day .check-list li::before { color: var(--red); }

/* ==========================================================================
   9 ativos
   ========================================================================== */
.actives { background: var(--cream); }
.actives h2 { text-align: center; font-size: clamp(30px, 4.6vw, 52px); margin: 0 auto 56px; max-width: 640px; }
.actives__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.actives__col { display: flex; flex-direction: column; gap: 18px; }
.actives__col--right { margin-top: 40px; }
/* arco: os cards do meio (2º e 3º) curvam em direção ao frasco */
.actives__col > .active-card:nth-child(2) { margin-left: 20px; }
.actives__col > .active-card:nth-child(3) { margin-left: 46px; }
.actives__col--right > .active-card:nth-child(2) { margin-right: 20px; }
.actives__col--right > .active-card:nth-child(3) { margin-right: 46px; }
.active-card {
  display: flex; gap: 16px; align-items: center; background: var(--card);
  border-radius: 18px; padding: 16px 20px; box-shadow: var(--shadow-soft);
}
.active-card img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.active-card h3 { font-size: 19px; margin-bottom: 3px; }
.active-card p { font-size: 14.5px; color: var(--muted); line-height: 1.35; }
.actives__product {
  position: relative; align-self: center;
  width: min(340px, 34vw); aspect-ratio: 300 / 360;
  background: linear-gradient(150deg, #e8556a 0%, #c34a86 55%, #a24bd0 100%);
  border-radius: 28px;
}
.actives__product img {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 118%; width: auto; filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .3));
}

/* Melatonina exclusive card */
.melatonin { max-width: 520px; margin: 44px auto 0; }
.melatonin__badge { text-align: center; margin-bottom: -18px; position: relative; z-index: 2; }
.melatonin__badge span {
  background: linear-gradient(120deg, #4a49d6, #6b6bf0); color: #fff; font-weight: 700;
  font-size: 13px; letter-spacing: .04em; padding: 8px 20px; border-radius: 999px; text-transform: uppercase;
}
.melatonin__card {
  background: linear-gradient(150deg, #0c1340, #1a2570); border-radius: var(--radius);
  padding: 34px 30px 30px; display: flex; gap: 18px; align-items: center; box-shadow: var(--shadow);
}
.melatonin__card img { width: 76px; height: 76px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.melatonin__card h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.melatonin__card p { color: rgba(255, 255, 255, .82); font-size: 15.5px; }

/* ==========================================================================
   O que acontece no corpo
   ========================================================================== */
.body-effect { background: var(--cream); }
.body-effect__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.body-effect__photo img { border-radius: var(--radius); width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.body-effect h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 30px; }
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { background: var(--card); border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow-soft); }
.step strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 17px; }
.step span { color: var(--red); }
.step p { font-size: 15.5px; color: var(--body); }

/* ==========================================================================
   É para você se
   ========================================================================== */
.foryou { background: linear-gradient(180deg, var(--cream) 0%, #eceefb 100%); }
.foryou__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.foryou h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 34px; }
.reasons { display: flex; flex-direction: column; gap: 18px; }
.reason { display: flex; gap: 16px; background: var(--card); border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow-soft); }
.reason .ico { width: 25px; height: 25px; flex-shrink: 0; margin-top: 1px; }
.reason p { font-size: 16px; color: var(--body); }
.foryou__collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.foryou__collage img { width: 100%; height: auto; object-fit: cover; border-radius: 16px; display: block; }
/* linha de cima retrato (360x440), linha de baixo paisagem (360x320) — proporção nativa, sem corte lateral */
.foryou__collage img:nth-child(1), .foryou__collage img:nth-child(2) { aspect-ratio: 360 / 440; }
.foryou__collage img:nth-child(3), .foryou__collage img:nth-child(4) { aspect-ratio: 360 / 320; }

/* ==========================================================================
   Pricing / kits
   ========================================================================== */
.kits { background: linear-gradient(180deg, #eceefb 0%, #e6e8fa 100%); }
.kits__head { text-align: center; margin-bottom: 60px; }
.kits__head h2 { font-size: clamp(32px, 4.8vw, 54px); }
.kits__head p { color: var(--body); font-size: 18px; margin-top: 14px; }
.kits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: end; }
.kit {
  background: var(--cream-2); border-radius: var(--radius); padding: 30px 26px 34px;
  box-shadow: var(--shadow); text-align: center; position: relative;
}
.kit--featured { border: 2px solid var(--red); transform: translateY(-14px); }
.kit__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  color: #fff; font-weight: 700; font-size: 12.5px; letter-spacing: .03em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; white-space: nowrap; z-index: 2;
}
.kit__flag--blue { background: linear-gradient(120deg, #4a49d6, #6b6bf0); }
.kit__flag--gold { background: linear-gradient(120deg, #c98a3c, #e0a45a); }
.kit__media {
  background: linear-gradient(150deg, #e8556a, #b4499f); border-radius: 16px;
  padding: 20px; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; min-height: 220px;
}
.kit__media img { max-height: 200px; width: auto; filter: drop-shadow(0 14px 20px rgba(0,0,0,.25)); }
.kit__title { font-size: 30px; }
.kit hr { border: none; border-top: 1px solid var(--line); margin: 20px 0; }
.kit__price { color: var(--red); font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.kit__installment { color: var(--ink); font-weight: 600; font-size: 16px; margin-top: 4px; }
.kit__installment strong { color: var(--ink); }
.kit__unit { color: var(--muted); font-size: 14px; font-style: italic; margin-top: 6px; }
.kit .btn { margin-top: 22px; }
.kit__ship { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.kit__ship .ico { width: 18px; height: 18px; color: var(--red); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq__intro { position: sticky; top: 100px; }
.faq__intro h2 { font-size: clamp(34px, 4.6vw, 54px); }
.faq__intro p { color: var(--muted); margin-top: 22px; font-size: 16.5px; max-width: 380px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.acc { background: var(--card); border-radius: 16px; box-shadow: var(--shadow-soft); overflow: hidden; }
.acc__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 26px; font-family: inherit; font-size: 17.5px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.acc__q .arrow { color: var(--red); font-size: 20px; transition: transform .3s var(--ease); flex-shrink: 0; }
.acc.is-open .acc__q .arrow { transform: rotate(90deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a-inner { padding: 0 26px 24px; color: var(--body); font-size: 15.5px; }
.acc__a-inner strong { color: var(--navy); }

/* ==========================================================================
   Páginas de política (legal)
   ========================================================================== */
.legal { background: var(--cream); padding: 66px 0 88px; }
.legal__wrap { max-width: 820px; margin-inline: auto; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 600; font-size: 15px; margin-bottom: 22px; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 10px; }
.legal__updated { color: var(--muted); font-size: 14px; margin-bottom: 34px; }
.legal__body h2 { font-size: 20px; margin: 32px 0 12px; color: var(--navy); }
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { color: var(--body); font-size: 16px; margin-bottom: 12px; line-height: 1.7; }
.legal__body ul { margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.legal__body li { color: var(--body); font-size: 16px; line-height: 1.6; padding-left: 20px; position: relative; }
.legal__body li::before { content: "•"; color: var(--red); position: absolute; left: 4px; font-weight: 700; }
.legal__body ol { margin: 0 0 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal__body ol li { padding-left: 0; }
.legal__body ol li::before { content: none; }
.legal__body a { color: var(--red); font-weight: 600; }
.legal__body a:hover { text-decoration: underline; }
.legal__card { background: var(--card); border-radius: var(--radius-sm); padding: 24px 26px; margin-top: 30px; box-shadow: var(--shadow-soft); }
.legal__card p { margin-bottom: 6px; font-size: 15px; }
.legal__notice { background: #fdf0e8; border: 1px solid #f3d9c6; border-radius: var(--radius-sm); padding: 26px 28px; color: var(--ink); line-height: 1.7; }
.legal__notice strong { color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-marquee { background: var(--pink-soft); color: var(--red); overflow: hidden; padding: 4px 0; }
.footer-marquee .marquee__track span { font-weight: 700; font-size: 17px; }

.footer { background: var(--red); color: #fff; padding: 66px 0 0; }
.footer a { color: rgba(255, 255, 255, .9); transition: opacity .2s; }
.footer a:hover { opacity: .7; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; }
.footer__logo { font-size: 46px; font-weight: 800; letter-spacing: .05em; }
.footer__tag { font-style: italic; margin-top: 10px; opacity: .9; }
.footer__sep { border: none; border-top: 1px solid rgba(255, 255, 255, .25); margin: 22px 0; max-width: 230px; }
.footer h4 { color: #fff; text-transform: uppercase; font-size: 13.5px; letter-spacing: .05em; margin-bottom: 20px; opacity: .85; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; }
.footer__hours { font-size: 15px; opacity: .92; display: flex; flex-direction: column; gap: 4px; }
.footer__news p { font-size: 15px; opacity: .92; margin-bottom: 20px; line-height: 1.5; }
.footer__news form { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.footer__news input {
  border: none; border-radius: 999px; padding: 15px 22px; font-family: inherit; font-size: 15px; color: var(--navy);
}
.footer__news .btn { background: #f7b6bf; color: var(--red-dark); }
.footer__news .btn:hover { background: #fff; }
.social { display: flex; gap: 14px; justify-content: center; margin-top: 8px; }
.social a {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.social a svg { display: block; }
.social a:hover { background: #fff; color: var(--red); opacity: 1; }
.footer__socialwrap { text-align: center; margin-top: 30px; }
.footer__socialwrap h4 { margin-bottom: 14px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .22); margin-top: 50px; padding: 26px 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; align-items: center;
}
.footer__bottom h4 { margin-bottom: 12px; }
.ship-badge {
  background: #fff; border-radius: 12px; padding: 11px 18px; display: inline-flex; gap: 16px; align-items: center;
}
.ship-badge img { height: 20px; width: auto; display: block; }
.pay-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-icons .pay { background: #fff; border-radius: 6px; padding: 6px 9px; height: 34px; width: auto; box-sizing: border-box; box-shadow: 0 2px 6px rgba(0, 0, 0, .12); object-fit: contain; }
.copyright { font-size: 14px; opacity: .92; line-height: 1.7; }
.copyright strong { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .section { padding: 60px 0; }
  .trust__bar { grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }
  .problems__card { grid-template-columns: 1fr; gap: 34px; padding: 36px; }
  .formula__grid { grid-template-columns: 1fr; gap: 34px; }
  .formula__product { grid-row: 1; order: -1; width: min(320px, 82vw); margin-inline: auto; }
  .actives__grid { grid-template-columns: 1fr; gap: 20px; }
  .actives__col--right { margin-top: 0; }
  /* reseta o arco dos cards no mobile (evita desalinhamento) */
  .actives__col > .active-card { margin-left: 0; margin-right: 0; }
  .actives__product { order: -1; margin: 0 auto 16px; width: min(300px, 74vw); }
  .body-effect__grid, .foryou__grid, .faq__grid { grid-template-columns: 1fr; gap: 34px; }
  .faq__intro { position: static; }
  /* empilha os rituais retos no mobile (sem rotação/deslocamento) */
  .rituals__grid { grid-template-columns: 1fr; padding: 0; column-gap: 0; row-gap: 24px; }
  .ritual--night, .ritual--day { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__bottom { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .header__truck .ico { width: 25px; height: 25px; }
  .nav-toggle { display: block; }
  .header.nav-open .nav {
    display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: var(--cream-2); border-bottom: 1px solid var(--line); padding: 10px 22px 20px;
  }
  .header.nav-open .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .header__cta { gap: 11px; }
  .header__cta .btn { padding: 11px 16px; font-size: 14.5px; }
  .kits__grid { grid-template-columns: 1fr; gap: 40px; }
  .kit--featured { transform: none; }
  .trust__bar { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; padding: 22px 16px; }
  .trust__item { gap: 10px; }
  .trust__item .ico { width: 22px; height: 22px; }
  .trust__item .bar { min-height: 26px; }
  .trust__item p { font-size: 12.5px; }
  .collage, .foryou__collage { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero::after { background: linear-gradient(180deg, rgba(251,244,239,.9) 0%, rgba(251,244,239,.55) 45%, rgba(251,244,239,.15) 100%); }
  .hero { min-height: 78vh; }
  .hero__inner { padding-inline: 26px; }
  .hero h1 { font-size: clamp(33px, 8.2vw, 44px); }
  .hero p { font-size: clamp(16px, 4.4vw, 19px); }
  .hero .btn { margin-top: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; scroll-behavior: auto; }
  .hero__slide { transition: none; }
}
