:root {
  --accent: #F4761C;
  --accent-hover: #FF8F3D;
  --bg: #0D0C0B;
  --fg: #FAF8F4;
  --bg-light: #FAF8F4;
  --fg-light: #141311;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

em { font-style: italic; }

.accent-text { color: var(--accent); }

h1, h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

.section, .section-light > .wrap, .cta-final > .wrap { }

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 48px);
}

.section-light {
  background: var(--bg-light);
  color: var(--fg-light);
}

.section-light > .wrap {
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(56px, 9vw, 110px);
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- splash ---------- */
@keyframes splash-logo { 0% { opacity: 0; transform: scale(0.9); } 55% { opacity: 1; transform: scale(1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes splash-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes splash-out { to { opacity: 0; visibility: hidden; filter: blur(6px); } }

.splash {
  position: fixed; inset: 0; z-index: 999; background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 34px;
  animation: splash-out 0.75s cubic-bezier(0.4, 0, 0.2, 1) 1.15s forwards;
}
.splash img { width: min(58vw, 340px); border-radius: 12px; animation: splash-logo 0.65s cubic-bezier(0.22,1,0.36,1) both; }
.splash__bar { width: min(46vw, 220px); height: 2px; background: rgba(244,118,28,0.25); overflow: hidden; }
.splash__bar span { display: block; height: 100%; background: var(--accent); transform-origin: left; animation: splash-bar 1.05s cubic-bezier(0.5,0,0.2,1) 0.1s both; }
@media (prefers-reduced-motion: reduce) {
  .splash, .splash img, .splash__bar span { animation-duration: 0.01s; animation-delay: 0.3s; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px clamp(16px, 5vw, 48px);
  background: rgba(13,12,11,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250,248,244,0.1);
}
.nav__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  letter-spacing: -0.5px;
}
.logo .accent-text { font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: 0.05em;
  padding: 15px 26px; border-radius: 999px; min-height: 44px;
  white-space: nowrap; flex-shrink: 0; border: none; cursor: pointer;
  transition: box-shadow 0.32s ease, transform 0.38s cubic-bezier(0.22,1,0.36,1), filter 0.32s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.30) 50%, transparent 62%);
  transform: translateX(-100%); transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(0,0,0,0.06));
  opacity: 0; transition: opacity 0.4s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 8px 22px -8px rgba(244,118,28,0.55); color: #fff; }
.btn:hover::before { transform: translateX(100%); }
.btn:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .btn, .btn::before, .btn::after { transition: none; }
}
.btn--nav { font-size: 13px; padding: 12px 20px; }
.btn--lg { font-size: 15px; padding: 18px 34px; }
.btn--block { margin-top: auto; width: 100%; }

/* ---------- hero ---------- */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px) clamp(40px, 6vw, 72px);
  display: flex; flex-wrap: wrap-reverse; align-items: center; justify-content: center;
  gap: clamp(32px, 5vw, 56px);
}
.hero__copy { flex: 1 1 320px; min-width: min(100%, 280px); }
.hero h1 { font-size: clamp(44px, 10vw, 84px); line-height: 1.02; margin: 0 0 18px; text-wrap: balance; }
.hero__lead { font-weight: 800; font-size: clamp(19px, 5vw, 24px); line-height: 1.25; margin: 0 0 18px; }
.hero__body { font-size: clamp(15px, 4vw, 17px); line-height: 1.65; color: rgba(250,248,244,0.7); max-width: 480px; margin: 0 0 30px; text-wrap: pretty; }
.hero__art { flex: 1 1 280px; min-width: min(100%, 260px); display: flex; justify-content: center; }

.hero-art { position: relative; width: min(360px, 86vw); aspect-ratio: 4 / 5; }
.hero-art__glow {
  position: absolute;
  inset: -14% -10%;
  border-radius: 32px;
  background:
    radial-gradient(58% 52% at 26% 20%, rgba(244,118,28,0.95) 0%, rgba(244,118,28,0.55) 42%, rgba(244,118,28,0) 72%),
    radial-gradient(42% 38% at 88% 66%, rgba(255,175,92,0.6) 0%, rgba(255,175,92,0) 68%),
    #0D0C0B;
  filter: blur(30px);
}
.hero-art__frame { position: absolute; inset: 0; border-radius: 24px; overflow: hidden; }
.hero-art__frame img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .hero__copy { text-align: center; }
  .hero__copy p { margin-left: auto; margin-right: auto; }
  .hero { padding-bottom: 84px; }
}

/* ---------- section titles ---------- */
.section__title {
  font-size: clamp(32px, 7.5vw, 56px); line-height: 1.15;
  margin: 0 auto 14px; max-width: 820px; text-align: center; text-wrap: balance;
}
.section__title--center { font-size: clamp(36px, 9vw, 68px); line-height: 1.05; margin: 0 auto 8px; }
.section__kicker { font-weight: 900; font-size: clamp(21px, 5.5vw, 30px); text-align: center; margin: 0 0 44px; }
#como-funciona .section__kicker { font-size: clamp(19px, 5.5vw, 28px); margin: 0 0 48px; }

/* ---------- card rows (dores / como funciona) ---------- */
.card-row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { flex: 1 1 calc((760px - 100%) * 999); max-width: 100%; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.card__glyph {
  width: 88px; height: 88px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-size: 40px; color: #fff; flex-shrink: 0;
}
#como-funciona .card__glyph { width: 84px; height: 84px; }
.card__body {
  border: 1px solid var(--accent); border-radius: 14px; padding: 18px 20px;
  width: 100%; box-sizing: border-box; flex: 1;
}
.card__title { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.card__text { font-size: 14px; line-height: 1.55; color: rgba(250,248,244,0.75); text-wrap: pretty; }

.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.pill {
  border: 1px solid var(--accent); border-radius: 999px; padding: 14px 26px;
  font-family: 'Instrument Serif', serif; font-size: clamp(18px, 4.5vw, 24px);
}

@media (max-width: 760px) {
  .pill-row { flex-direction: column; align-items: center; }
}

/* ---------- split (solução) ---------- */
.split { max-width: 1100px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 48px); display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px, 5vw, 64px); }
.split__copy { flex: 1 1 340px; min-width: min(100%, 280px); }
.split__copy h2 { font-size: clamp(34px, 8vw, 60px); line-height: 1.12; margin: 0 0 20px; text-wrap: balance; }
.ideias__title { font-size: clamp(34px, 8vw, 60px); line-height: 1.12; margin: 0 0 20px; text-wrap: balance; }
.split__lead { font-weight: 900; font-size: clamp(19px, 5vw, 24px); line-height: 1.3; margin: 0 0 20px; }
.split__body { font-size: clamp(15px, 4vw, 17px); line-height: 1.7; color: rgba(20,19,17,0.68); margin: 0; text-wrap: pretty; }
.split__art { flex: 1 1 260px; min-width: min(100%, 240px); display: flex; justify-content: center; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone {
  width: min(280px, 74vw); aspect-ratio: 9 / 18; border-radius: 36px;
  border: 8px solid var(--fg-light); background: var(--fg-light);
  box-shadow: 0 30px 60px -20px rgba(20,19,17,0.4);
  animation: float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 28px; overflow: hidden; background: #1E1C1A; }
.phone__video { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }

/* ---------- marquee band ---------- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.marquee-band {
  background: var(--accent); color: #fff; overflow: hidden; padding: 13px 0;
  transform: rotate(-1.2deg); margin: -6px -12px; width: calc(100% + 24px);
  position: relative; z-index: 2;
}
.marquee-band__track {
  display: flex; align-items: center; gap: 40px; width: max-content;
  animation: marquee 22s linear infinite;
  font-weight: 800; font-size: 15px; letter-spacing: 0.14em; white-space: nowrap;
}
.marquee-band__icon { width: 14px; height: 14px; flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .marquee-band__track { animation-duration: 60s; } }

/* ---------- coverflow ---------- */
.coverflow {
  position: relative; height: clamp(400px, 66vw, 500px); perspective: 1400px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.coverflow__card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(150px, 26vw, 195px); aspect-ratio: 9 / 18;
  margin-top: calc(clamp(150px, 26vw, 195px) * -1);
  margin-left: calc(clamp(150px, 26vw, 195px) / -2);
  border-radius: 22px; border: 5px solid var(--fg-light); background: var(--fg-light);
  box-shadow: 0 24px 48px -18px rgba(20,19,17,0.55);
  overflow: hidden;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s ease;
}
.coverflow__card img { width: 100%; height: 100%; object-fit: cover; }
.coverflow__hint { text-align: center; font-size: 13px; color: rgba(20,19,17,0.45); margin: 10px 0 0; }

/* ---------- benefícios ---------- */
.benefits__title { font-weight: 900; font-size: clamp(28px, 7vw, 46px); line-height: 1.2; margin: 0 0 44px; text-align: center; text-wrap: balance; }
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 28px 40px; max-width: 860px; margin: 0 auto; }
.benefit { display: flex; flex-direction: column; gap: 6px; }
.benefit__head { display: flex; align-items: center; gap: 10px; }
.benefit__icon { width: 20px; height: 20px; flex-shrink: 0; }
.benefit__head span:last-child { font-weight: 900; font-size: clamp(20px, 5vw, 26px); }
.benefit__text { font-size: 15px; line-height: 1.55; color: rgba(20,19,17,0.65); padding-left: 34px; text-wrap: pretty; }

/* ---------- depoimentos ---------- */
.testimonials__title {
  font-size: clamp(34px, 8vw, 62px); line-height: 1.12;
  margin: 0 auto 44px; max-width: 700px; text-align: center; text-wrap: balance;
}
.testimonials { columns: 2 300px; column-gap: 16px; max-width: 760px; margin: 0 auto; }
.testimonial {
  break-inside: avoid; margin: 0 0 16px; border-radius: 18px;
  border: 1px solid rgba(250,248,244,0.15); background: #1E1C1A; overflow: hidden;
}
.testimonial img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- categorias marquee ---------- */
.categories__title { font-weight: 900; font-size: clamp(28px, 7vw, 44px); line-height: 1.2; margin: 0 0 36px; text-align: center; text-wrap: balance; }
.cat-marquee {
  display: flex; flex-direction: column; gap: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cat-marquee__row { overflow: hidden; }
.cat-marquee__track { display: flex; gap: 12px; width: max-content; }
.cat-marquee__track--fwd { animation-name: marquee; }
.cat-marquee__track--rev { animation-name: marquee-rev; }
.cat-marquee__track--slow { animation-duration: 38s; animation-timing-function: linear; animation-iteration-count: infinite; }
.cat-marquee__track--med { animation-duration: 44s; animation-timing-function: linear; animation-iteration-count: infinite; }
.cat-marquee__track--fast { animation-duration: 50s; animation-timing-function: linear; animation-iteration-count: infinite; }
@media (prefers-reduced-motion: reduce) {
  .cat-marquee__track--slow, .cat-marquee__track--med, .cat-marquee__track--fast { animation-duration: 120s; }
}
.tag {
  border: 1px solid rgba(20,19,17,0.25); border-radius: 999px; padding: 10px 18px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
}
.tag--accent { border-color: var(--accent); color: var(--accent); }

/* ---------- planos ---------- */
.plans { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: stretch; }
.plan {
  flex: 1 1 calc((860px - 100%) * 999); max-width: 100%; min-width: 0;
  border: 1px solid var(--accent); border-radius: 20px; padding: 30px clamp(18px, 4vw, 26px);
  display: flex; flex-direction: column; gap: 14px; text-align: center; position: relative;
}
.plan--featured { border: 2px solid var(--accent); background: #161412; }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bg-light); color: var(--fg-light); font-size: 12px; font-weight: 900;
  letter-spacing: 0.08em; padding: 7px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-weight: 900; font-size: clamp(22px, 5vw, 26px); }
.plan__desc { font-size: 14px; color: rgba(250,248,244,0.65); }
.plan__price { margin-top: 8px; }
.plan__amount { font-weight: 900; font-size: 34px; }
.plan__unit { font-size: 14px; color: rgba(250,248,244,0.65); }
.plan__cash { font-size: 14px; color: rgba(250,248,244,0.65); }
.plan__cash strong { color: var(--fg); }
.plan__note { font-size: 12px; color: rgba(250,248,244,0.5); }
.plan__save {
  position: absolute; bottom: -14px; right: 18px; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 900; letter-spacing: 0.06em; padding: 7px 16px; border-radius: 999px;
}

.trial { margin-top: clamp(56px, 9vw, 90px); text-align: center; }
.trial__title { font-weight: 900; font-size: clamp(22px, 6vw, 34px); margin: 0 0 10px; }
.trial__lead { font-family: 'Instrument Serif', serif; font-size: clamp(19px, 5vw, 26px); margin: 0 auto 32px; max-width: 560px; text-wrap: balance; }
.trial__row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(250,248,244,0.3); border-radius: 14px;
  padding: 10px 20px; min-height: 56px; color: var(--fg);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.store-badge:hover { border-color: var(--accent); color: var(--accent-hover); transform: translateY(-2px); }
.store-badge svg { width: 28px; height: 28px; flex-shrink: 0; fill: currentColor; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-badge__text small { font-size: 11px; color: rgba(250,248,244,0.6); }
.store-badge:hover .store-badge__text small { color: inherit; }
.store-badge__text strong { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 48px); }
.faq__title { font-weight: 900; font-size: clamp(32px, 8vw, 52px); margin: 0 0 36px; text-align: center; }
.faq { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid rgba(20,19,17,0.15); }
.faq__q {
  all: unset; box-sizing: border-box; cursor: pointer; width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; min-height: 44px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px;
}
.faq__icon { color: var(--accent); font-size: 24px; line-height: 1; flex-shrink: 0; transition: transform 0.25s ease; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.32s ease, opacity 0.32s ease; overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; opacity: 1; }
.faq__a > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 4px 22px; font-size: 15px; line-height: 1.6; color: rgba(20,19,17,0.65); text-wrap: pretty; }

/* ---------- cta final ---------- */
.cta-final { padding: clamp(72px, 12vw, 130px) clamp(20px, 5vw, 48px); }
.cta-final h2 { font-size: clamp(42px, 10vw, 80px); line-height: 1.05; margin: 0 0 24px; max-width: 720px; text-wrap: balance; }
.cta-final__lead { font-size: clamp(15px, 4vw, 18px); line-height: 1.6; color: rgba(250,248,244,0.7); max-width: 480px; margin: 0 0 36px; text-wrap: pretty; }

.footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 72px; border-top: 1px solid rgba(250,248,244,0.15); padding-top: 28px;
}
.footer__links {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 12px;
  max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.footer__buttons { display: flex; flex-wrap: nowrap; gap: 12px; flex-shrink: 0; }
.footer__label { font-weight: 800; font-size: 15px; margin-right: 4px; flex-shrink: 0; }
.footer__link {
  border: 1px solid rgba(250,248,244,0.3); color: var(--fg); border-radius: 999px; padding: 10px 18px;
  font-size: 14px; font-weight: 600; min-height: 44px; display: inline-flex; align-items: center;
  flex-shrink: 0; white-space: nowrap;
}
.footer__link:hover { border-color: var(--accent); color: var(--accent-hover); }

/* ---------- cookie consent banner ---------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: rgba(13,12,11,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(250,248,244,0.15);
  padding: 18px clamp(16px, 5vw, 48px);
}
.consent-banner__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.consent-banner__text { margin: 0; font-size: 14px; line-height: 1.5; color: var(--fg); max-width: 640px; }
.consent-banner__text a { text-decoration: underline; }
.consent-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.consent-banner__actions .btn { font-size: 13px; padding: 12px 22px; }
.btn--ghost { background: transparent; color: var(--fg); border: 1.5px solid rgba(250,248,244,0.45); }
.btn--ghost:hover { color: var(--fg); border-color: var(--fg); background: rgba(250,248,244,0.08); }

@media (max-width: 640px) {
  .consent-banner__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .consent-banner__actions { justify-content: center; }
}

@media (max-width: 760px) {
  .footer { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer__links { flex-wrap: wrap; }
  .footer__label { flex-basis: 100%; margin-right: 0; margin-bottom: 4px; }
}
