/* =========================================================
   BE RARE — Landing Page
   ========================================================= */

@font-face { font-family: "Sari"; src: url("../fonts/Sari-Light.otf") format("opentype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Sari"; src: url("../fonts/Sari-Medium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Sari"; src: url("../fonts/Sari-MediumItalic.otf") format("opentype"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "Sari"; src: url("../fonts/Sari-ExtraBoldItalic.otf") format("opentype"); font-weight: 800; font-style: italic; font-display: swap; }

:root {
  --navy: #0A2233;
  --navy-2: #0F3048;
  --blue: #0073AE;
  --blue-2: #1D93CF;
  --rose: #D2857D;
  --rose-soft: #F5E1DC;
  --rose-ink: #B8655D;   /* rosé para texto grande sobre fundo claro (contraste AA) */
  --rose-deep: #9E4F48;  /* rosé para texto pequeno sobre fundo claro */
  --cream: #FBF6EE;
  --ivory: #FFFDF8;
  --gold: #D6B06A;
  --gold-2: #F1DCAA;
  --ink: #14222D;
  --muted: #5D6D79;
  --line: rgba(20, 34, 45, .12);

  --f-body: "Sari", "Helvetica Neue", Arial, sans-serif;
  --f-display: "Cormorant Garamond", Georgia, serif;

  --pad: clamp(20px, 5vw, 80px);
  --max: 1320px;
  --radius: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 60px -30px rgba(10, 34, 51, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; height: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a[data-href] { cursor: pointer; }
strong { font-weight: 500; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
::selection { background: var(--rose); color: #fff; }

section { position: relative; padding: clamp(90px, 12vw, 170px) var(--pad); }

/* ---------- Logo (symbol + use) ---------- */
#logo .ltr, svg .ltr { fill: currentColor; }
#logo .gem, svg .gem { fill: var(--gem, #D2857D); }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  color: var(--blue);
  margin-bottom: 26px;
}
.eyebrow__line { width: 38px; height: 1px; background: currentColor; transform-origin: left; }
.eyebrow--light { color: var(--gold-2); }

.title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--navy);
  max-width: 14ch;
}
.title em { font-style: italic; color: var(--rose-ink); font-weight: 400; }
.title--light { color: var(--ivory); }
.title--light em { color: var(--gold-2); }
.title .word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }

.note { font-size: 13px; color: var(--muted); margin-top: 18px; }
.note--light { color: rgba(255, 253, 248, .6); }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--navy); --fg: var(--ivory);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 30px; border-radius: 100px; border: 0;
  background: var(--bg); color: var(--fg);
  font: 500 15px/1 var(--f-body); letter-spacing: .02em;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease);
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--navy); transform: translateY(101%); transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ivory); }
.btn__icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease); }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--gold { --bg: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%); --fg: var(--navy); background: var(--bg); background-size: 200% 100%; animation: shimmer 5s linear infinite; }
.btn--ghost { --bg: transparent; --fg: var(--navy); box-shadow: inset 0 0 0 1px rgba(10, 34, 51, .25); }
.btn--small { padding: 12px 22px; font-size: 14px; }
.btn--block { width: 100%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.chip { display: inline-block; padding: 7px 14px; border-radius: 100px; background: var(--gold-2); color: var(--navy); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.chip--rose { background: var(--rose-soft); color: #9A4E47; }

/* =========================================================
   PRELOADER
   ========================================================= */
.loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; pointer-events: none; }
.loader__panel { position: absolute; left: 0; right: 0; height: 50.5%; background: var(--navy); }
.loader__panel--top { top: 0; }
.loader__panel--bottom { bottom: 0; }
.loader__inner { position: relative; width: min(520px, 72vw); }
.loader__logo { width: 100%; overflow: visible; }
.loader__logo .ltr { fill: var(--ivory); }
.loader__logo .gem { fill: var(--rose); }
.loader__meta { display: flex; justify-content: space-between; margin-top: 28px; color: rgba(255, 253, 248, .55); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; }
.loader__count { font-variant-numeric: tabular-nums; color: var(--gold-2); }
.no-js .loader { display: none; }

/* =========================================================
   CURSOR
   ========================================================= */
.cursor { position: fixed; inset: 0; z-index: 999; pointer-events: none; display: none; }
.cursor__gem { position: fixed; top: 0; left: 0; width: 26px; height: 20px; margin: -10px 0 0 -13px; will-change: transform; }
.cursor__gem svg { width: 100%; height: 100%; overflow: visible; display: block; filter: drop-shadow(0 2px 6px rgba(10, 34, 51, .25)); }
.cursor__fill { fill: rgba(210, 133, 125, .18); transition: fill .35s; }
.cursor__edge { fill: none; stroke: var(--rose); stroke-width: 4; stroke-linejoin: round; transition: stroke .35s; }
.cursor__cut { fill: none; stroke: var(--rose); stroke-width: 2.5; stroke-linejoin: round; opacity: .55; transition: stroke .35s; }
.cursor.is-hot .cursor__fill { fill: rgba(241, 220, 170, .35); }
.cursor.is-hot .cursor__edge, .cursor.is-hot .cursor__cut { stroke: var(--gold); }
.cursor.is-text .cursor__gem { opacity: 0; }
.cursor__label { position: fixed; top: 0; left: 0; margin: -13px 0 0 26px; padding: 6px 12px; border-radius: 100px; background: var(--navy); color: var(--gold-2); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; opacity: 0; transition: opacity .3s; }
.cursor.is-drag .cursor__label { opacity: 1; }
.cursor__spark { position: fixed; top: 0; left: 0; width: 10px; height: 10px; margin: -5px 0 0 -5px; background: linear-gradient(135deg, var(--gold-2), var(--gold)); clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); opacity: 0; }
.cursor__spark:nth-child(3n) { background: var(--rose); }
.has-cursor, .has-cursor * { cursor: none !important; }
.has-cursor input:not([type=range]):not([type=radio]), .has-cursor textarea { cursor: text !important; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 16px; left: 50%; z-index: 100;
  width: min(calc(100% - 32px), 1180px); transform: translateX(-50%);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px 10px 10px 24px; border-radius: 100px;
  background: rgba(251, 246, 238, .72);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 12px 40px -18px rgba(10, 34, 51, .35);
  border: 1px solid rgba(10, 34, 51, .06);
}
.nav__brand { flex: none; display: block; line-height: 0; }
.nav__brand svg { height: 30px; width: 97px; display: block; }
.nav__brand { color: var(--blue); }
.nav__links { position: relative; display: flex; gap: 4px; }
.nav__links a { position: relative; z-index: 1; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--navy); border-radius: 100px; transition: color .3s; }
.nav__links a.is-active { color: var(--ivory); }
.nav__pill { position: absolute; top: 0; left: 0; height: 100%; width: 0; border-radius: 100px; background: var(--navy); opacity: 0; }
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--navy); cursor: pointer; position: relative; }
.nav__burger span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--ivory); transition: transform .5s var(--ease); }
.nav__burger span:first-child { top: 19px; }
.nav__burger span:last-child { top: 26px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 90; pointer-events: none; visibility: hidden; }
.menu__bg { position: absolute; inset: 0; background: var(--navy); clip-path: circle(0% at calc(100% - 50px) 40px); }
.menu__links { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 100px var(--pad) 40px; }
.menu__links a { font-family: var(--f-display); font-size: clamp(38px, 10vw, 64px); line-height: 1.1; color: var(--ivory); display: flex; align-items: baseline; gap: 16px; overflow: hidden; }
.menu__links a small { font-family: var(--f-body); font-size: 12px; letter-spacing: .2em; color: var(--gold-2); }
.menu__links .menu__cta { color: var(--gold-2); font-style: italic; margin-top: 16px; }
.menu.is-open { pointer-events: auto; visibility: visible; }

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh; display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(30px, 5vw, 80px);
  padding-top: 140px; padding-bottom: 80px; overflow: hidden;
  background: radial-gradient(120% 90% at 0% 0%, #fff 0%, var(--cream) 55%);
}
.hero__glow { position: absolute; width: 60vw; height: 60vw; right: -15vw; top: -10vw; border-radius: 50%; background: radial-gradient(circle, rgba(210,133,125,.22), transparent 65%); filter: blur(20px); pointer-events: none; }
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__title { font-family: var(--f-display); font-weight: 500; font-size: clamp(76px, 12.5vw, 210px); line-height: .86; letter-spacing: -.035em; color: var(--navy); margin-bottom: 30px; }
.hero__title .line { display: block; position: relative; }
.hero__title .line--italic { display: inline-block; font-style: italic; font-weight: 400; color: var(--blue); padding-left: .45em; }
.hero__dot { color: var(--rose); }
.hero__lottie { position: absolute; width: .62em; height: .62em; right: -.5em; top: -.2em; pointer-events: none; }
.hero__title .char { display: inline-block; will-change: transform; }
.hero__lead { font-size: clamp(17px, 1.3vw, 20px); max-width: 30em; color: var(--muted); margin-bottom: 38px; }
.hero__lead strong { color: var(--navy); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__stats { display: flex; gap: clamp(22px, 4vw, 54px); padding-top: 28px; border-top: 1px solid var(--line); }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--f-display); font-size: clamp(28px, 2.6vw, 40px); color: var(--navy); line-height: 1; font-weight: 500; }
.hero__stats span:not([data-count]) { font-size: 13px; color: var(--muted); letter-spacing: .04em; margin-top: 6px; }

.hero__visual { position: relative; height: min(78vh, 760px); min-height: 480px; }
.hero__img { position: absolute; overflow: hidden; border-radius: 300px 300px 24px 24px; box-shadow: var(--shadow); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--main { inset: 0 12% 0 14%; }
.hero__img--a { width: 34%; aspect-ratio: 3/4; left: -2%; bottom: 8%; border-radius: 24px; border: 6px solid var(--ivory); }
.hero__img--b { width: 30%; aspect-ratio: 3/4; right: 0; top: 10%; border-radius: 24px; border: 6px solid var(--ivory); }
.hero__badge { position: absolute; width: 150px; height: 150px; right: 4%; bottom: 4%; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold-2); box-shadow: var(--shadow); }
.hero__badge-text { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.hero__badge-text text { font: 500 15px var(--f-body); letter-spacing: .32em; fill: var(--gold-2); }
.hero__badge-gem { width: 46px; height: 36px; color: var(--rose); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll { position: absolute; left: 50%; transform: translateX(-50%); bottom: 22px; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 44px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%; background: var(--rose); animation: drip 2s var(--ease) infinite; }
@keyframes drip { to { top: 100%; } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero__visual { height: 116vw; max-height: 620px; min-height: 0; }
  .hero__badge { width: 110px; height: 110px; }
  .hero__badge-text text { font-size: 13px; }
  .hero__scroll { display: none; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { overflow: hidden; background: var(--navy); color: var(--ivory); padding: 26px 0; transform: rotate(-1.5deg) scale(1.03); margin: -10px 0; position: relative; z-index: 3; }
.marquee__track { display: flex; width: max-content; gap: 38px; align-items: center; font-family: var(--f-display); font-size: clamp(26px, 3vw, 44px); font-style: italic; white-space: nowrap; }
.marquee__track i { color: var(--rose); font-style: normal; font-size: .6em; }

/* =========================================================
   SOBRE
   ========================================================= */
.about { max-width: var(--max); margin: 0 auto; }
.about__gem { width: clamp(90px, 10vw, 140px); margin-bottom: 40px; }
.draw-gem { width: 100%; overflow: visible; }
.draw-gem path { fill: none; stroke: var(--rose); stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; }
.about__manifesto { font-family: var(--f-display); font-size: clamp(30px, 4.3vw, 66px); line-height: 1.12; letter-spacing: -.01em; color: var(--navy); max-width: 22ch; }
.about__manifesto em { color: var(--rose); }
.about__manifesto .w { opacity: .14; transition: none; }
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(60px, 9vw, 120px); }
.pillar { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 3vw, 44px); position: relative; overflow: hidden; }
.pillar::after { content: ""; position: absolute; width: 180px; height: 180px; right: -60px; top: -60px; border-radius: 50%; background: radial-gradient(circle, var(--rose-soft), transparent 70%); }
.pillar__num { font-family: var(--f-display); font-style: italic; font-size: 20px; color: var(--rose-deep); }
.pillar h3 { font-family: var(--f-display); font-size: clamp(32px, 3vw, 44px); margin: 14px 0 12px; color: var(--navy); }
.pillar p { color: var(--muted); }
.pillar__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pillar__tags li { padding: 7px 13px; border-radius: 100px; background: var(--cream); border: 1px solid var(--line); font-size: 13px; color: var(--navy); }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }

/* =========================================================
   QUALIDADE
   ========================================================= */
.quality { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px); align-items: center; max-width: var(--max); margin: 0 auto; padding-top: 40px; }
.quality__media { position: relative; }
.quality__media > figure:first-child { border-radius: 400px 400px 24px 24px; overflow: hidden; aspect-ratio: 4/5; }
.quality__media img { width: 100%; height: 118%; object-fit: cover; }
.quality__float { position: absolute; width: 42%; aspect-ratio: 3/4; right: -10%; bottom: -10%; border-radius: 22px; overflow: hidden; border: 7px solid var(--cream); box-shadow: var(--shadow); }
.features { display: grid; gap: 14px; margin-top: 40px; }
.feature { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: 18px; background: var(--ivory); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.feature:hover { transform: translateX(8px); box-shadow: var(--shadow); }
.feature__icon { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.feature__icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 17px; color: var(--navy); margin-bottom: 2px; }
.feature p { font-size: 15px; color: var(--muted); }
@media (max-width: 860px) {
  .quality { grid-template-columns: 1fr; }
  .quality__float { right: -4%; }
}

/* =========================================================
   COLEÇÃO (horizontal)
   ========================================================= */
.collection { padding: 0; background: var(--ivory); overflow: hidden; }
.collection__pin { height: 100svh; display: flex; align-items: center; }
.collection__track { display: flex; align-items: center; gap: 28px; padding-right: var(--pad); will-change: transform; }
.collection__head { flex: none; width: min(460px, 80vw); padding-left: var(--pad); padding-right: 40px; position: absolute; z-index: 0; }
.collection__hint { margin-top: 24px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.collection__hint span { display: inline-block; color: var(--rose); animation: nudge 1.6s var(--ease) infinite; }
@keyframes nudge { 50% { transform: translateX(8px); } }
.collection__track { margin-left: calc(min(460px, 80vw) + var(--pad)); }
.card-photo { flex: none; position: relative; width: clamp(260px, 27vw, 420px); box-shadow: 0 30px 50px -35px rgba(10,34,51,.45); aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; background: var(--cream); }
.card-photo--tall { width: clamp(230px, 22vw, 340px); aspect-ratio: 3/4.6; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); transition: transform 1.2s var(--ease); }
.card-photo:hover img { transform: scale(1.05); }
.card-photo figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 16px; border-radius: 100px; background: rgba(255, 253, 248, .85); backdrop-filter: blur(6px); font-family: var(--f-display); font-style: italic; font-size: 20px; color: var(--navy); }
.collection__end { flex: none; width: 320px; padding: 30px; text-align: center; }
.collection__end svg { width: 70px; height: 54px; color: var(--rose); margin: 0 auto 20px; }
.collection__end p { font-family: var(--f-display); font-size: 36px; line-height: 1.1; color: var(--navy); margin-bottom: 28px; }
.collection__end em { color: var(--rose); }

/* Celular/tablet: mesma rolagem horizontal fixada do desktop, com título em cima e fotos embaixo */
@media (max-width: 1024px) {
  .collection__pin { height: 100svh; flex-direction: column; align-items: stretch; justify-content: center; gap: clamp(20px, 4svh, 36px); }
  .collection__head { position: static; width: auto; padding: 0 var(--pad); }
  .collection__head .title { font-size: clamp(34px, 9vw, 56px); }
  .collection__hint { margin-top: 14px; }
  .collection__track { margin-left: 0; padding: 0 var(--pad); }
  .card-photo { width: min(62vw, 300px, 38svh); }
  .card-photo--tall { width: min(54vw, 260px, 33svh); }
  .card-photo figcaption { font-size: 17px; left: 12px; bottom: 12px; padding: 6px 13px; }
  .collection__end { width: min(70vw, 280px); padding: 20px; }
  .collection__end p { font-size: 28px; }
}
/* Sem animação (movimento reduzido ou sem JS): carrossel nativo de deslizar */
@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .collection__pin { height: auto; padding: 90px 0; }
  .collection__track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .card-photo { scroll-snap-align: center; }
}
.no-js .collection__pin { height: auto; padding: 90px 0; }
.no-js .collection__track { overflow-x: auto; }

/* =========================================================
   REVENDA (bento)
   ========================================================= */
.resell { background: var(--navy); color: var(--ivory); border-radius: 48px 48px 0 0; overflow: hidden; }
.resell::before { content: ""; position: absolute; width: 900px; height: 900px; left: -300px; top: -400px; border-radius: 50%; background: radial-gradient(circle, rgba(29, 147, 207, .28), transparent 60%); pointer-events: none; }
.resell__head { max-width: var(--max); margin: 0 auto 60px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; position: relative; }
.resell__head .eyebrow, .resell__head .title { grid-column: 1; }
.resell__lead { grid-column: 2; grid-row: 2; color: rgba(255, 253, 248, .72); font-size: 18px; }
.bento { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(220px, auto); gap: 16px; perspective: 1200px; }
.bento__item { position: relative; border-radius: var(--radius); padding: 28px; background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; transform-style: preserve-3d; }
.bento__item h3 { font-family: var(--f-display); font-size: 28px; line-height: 1.05; margin-bottom: 8px; color: var(--ivory); }
.bento__item p { color: rgba(255, 253, 248, .66); font-size: 15px; }
.bento__icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(241, 220, 170, .12); margin-bottom: auto; }
.bento__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.bento__item--hero { grid-column: span 2; grid-row: span 2; padding: 0; min-height: 520px; }
.bento__item--hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.bento__overlay { position: relative; margin-top: auto; padding: 34px; background: linear-gradient(to top, rgba(10,34,51,.95) 10%, transparent); padding-top: 120px; }
.bento__overlay .chip { margin-bottom: 14px; }
.bento__overlay h3 { font-size: clamp(32px, 3vw, 44px); }
.bento__item--wide { grid-column: span 3; flex-direction: row; align-items: stretch; gap: 26px; padding: 0 0 0 28px; }
.bento__item--wide > div { padding: 28px 0; display: flex; flex-direction: column; justify-content: flex-end; flex: 1; }
.bento__item--wide .chip { align-self: flex-start; margin-bottom: auto; }
.bento__item--wide { min-height: 260px; }
.bento__item--wide > div { padding-right: 50% !important; }
.bento__item--wide img { position: absolute; right: 0; top: 0; width: 46%; height: 100%; object-fit: cover; object-position: center 70%; }
.bento__item::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(241,220,170,.14), transparent 45%); opacity: 0; transition: opacity .4s; }
.bento__item:hover::after { opacity: 1; }

.deal { max-width: var(--max); margin: 60px auto 0; padding: clamp(30px, 4vw, 54px); border-radius: var(--radius); background: linear-gradient(120deg, var(--rose) 0%, #E3A79F 100%); color: var(--navy); display: grid; grid-template-columns: auto 1fr; gap: 6px 40px; align-items: center; }
.deal__label { grid-column: 1 / -1; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; }
.deal__value { font-family: var(--f-display); font-size: clamp(34px, 4.4vw, 64px); line-height: 1; }
.deal__note { max-width: 36em; }
.deal__note em { font-family: var(--f-display); font-size: 1.3em; }

@media (max-width: 1000px) {
  .resell__head { grid-template-columns: 1fr; }
  .resell__lead { grid-column: 1; grid-row: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .resell { border-radius: 30px 30px 0 0; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--hero, .bento__item--wide { grid-column: auto; }
  .bento__item--hero { min-height: 480px; }
  .bento__item--wide { flex-direction: column-reverse; padding: 0; }
  .bento__item--wide > div { padding: 0 24px 28px; }
  .bento__item--wide img { position: static; width: 100%; height: 200px; }
  .bento__item--wide > div { padding-right: 24px !important; }
  .bento__item { min-height: 200px; }
  .deal { grid-template-columns: 1fr; }
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.steps { max-width: var(--max); margin: 0 auto; }
.steps__list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 70px; }
.steps__line { list-style: none; position: absolute; top: 30px; left: 30px; right: 30px; height: 1px; background: var(--line); }
.steps__line i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue), var(--rose)); transform-origin: left; transform: scaleX(0); }
.step { position: relative; }
.step__n { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--ivory); border: 1px solid var(--line); font-family: var(--f-display); font-size: 26px; font-style: italic; color: var(--blue); margin-bottom: 26px; position: relative; z-index: 1; transition: background .4s, color .4s; }
.step.is-on .step__n { background: var(--navy); color: var(--gold-2); border-color: var(--navy); }
.step h3 { font-family: var(--f-display); font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) {
  .steps__list { grid-template-columns: 1fr; gap: 34px; padding-left: 84px; }
  .steps__line { top: 0; bottom: 0; left: 30px; right: auto; width: 1px; height: auto; }
  .steps__line i { transform-origin: top; transform: scaleY(0); }
  .step__n { position: absolute; left: -84px; top: -8px; margin: 0; }
}

/* =========================================================
   GANHOS / SIMULADOR
   ========================================================= */
.earn { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; padding-top: 40px; }
.tiers { margin-top: 44px; border-top: 1px solid var(--line); }
.tiers li { display: flex; justify-content: space-between; align-items: center; padding: 20px 6px; border-bottom: 1px solid var(--line); transition: padding .5s var(--ease), background .5s; border-radius: 12px; }
.tiers span { color: var(--muted); }
.tiers strong { font-family: var(--f-display); font-size: 34px; color: var(--navy); line-height: 1; transition: color .4s; }
.tiers li.is-active { background: var(--ivory); padding-left: 20px; padding-right: 20px; }
.tiers li.is-active strong { color: var(--rose-ink); }
.tiers li.is-active span { color: var(--navy); }

.sim { position: relative; overflow: hidden; border-radius: 30px; padding: clamp(28px, 4vw, 50px); background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 60%, #134566 100%); color: var(--ivory); box-shadow: 0 50px 80px -40px rgba(10, 34, 51, .6); }
.sim__shine { position: absolute; width: 380px; height: 380px; right: -140px; top: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(241, 220, 170, .3), transparent 65%); }
.sim__label { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.sim__sales { font-size: 18px; color: rgba(255, 253, 248, .75); margin-bottom: 22px; }
.sim__sales strong { color: var(--ivory); font-size: 1.2em; font-variant-numeric: tabular-nums; }
.sim__range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 10px; background: linear-gradient(90deg, var(--gold) var(--p, 20%), rgba(255,255,255,.15) var(--p, 20%)); outline: none; cursor: pointer; }
.sim__range::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--ivory); border: 6px solid var(--gold); box-shadow: 0 0 0 8px rgba(214, 176, 106, .2); transition: box-shadow .3s; }
.sim__range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--ivory); border: 6px solid var(--gold); }
.sim__range:active::-webkit-slider-thumb { box-shadow: 0 0 0 14px rgba(214, 176, 106, .25); }
.sim__range:focus-visible { box-shadow: 0 0 0 3px rgba(241, 220, 170, .5); }
.sim__scale { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255, 253, 248, .45); margin-top: 12px; }
.sim__result { margin: 36px 0 32px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.sim__result p:first-child { color: rgba(255, 253, 248, .6); font-size: 14px; }
.sim__value { font-family: var(--f-display); font-size: clamp(60px, 7vw, 104px); line-height: 1; color: var(--gold-2); font-variant-numeric: tabular-nums; margin: 6px 0; }
.sim__rate { color: rgba(255, 253, 248, .7); }
.sim__rate span { color: var(--rose); font-weight: 500; }
@media (max-width: 900px) { .earn { grid-template-columns: 1fr; } }

/* =========================================================
   DESAFIO
   ========================================================= */
.challenge { padding-top: 0; }
.challenge__card { max-width: var(--max); margin: 0 auto; border-radius: 36px; padding: clamp(32px, 5vw, 72px); background: linear-gradient(135deg, var(--blue) 0%, #075C8C 55%, var(--navy) 100%); color: var(--ivory); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; position: relative; overflow: hidden; }
.challenge__card::after { content: ""; position: absolute; right: -8%; bottom: -30%; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.03), 0 0 0 120px rgba(255,255,255,.02); }
.challenge__intro > p { color: rgba(255, 253, 248, .8); margin-top: 20px; }
.challenge__prize { font-family: var(--f-display); font-size: clamp(26px, 2.6vw, 38px); color: var(--ivory) !important; line-height: 1.2; }
.challenge__prize strong { color: var(--gold-2); font-weight: 500; }
.challenge__prize span { color: var(--rose); padding: 0 6px; }
.weeks { position: relative; z-index: 1; display: grid; gap: 16px; background: rgba(10, 34, 51, .35); padding: 30px; border-radius: 24px; border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(6px); }
.week { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: center; font-size: 14px; }
.week span { color: rgba(255, 253, 248, .6); }
.week strong { font-size: 14px; }
.week__bar { height: 8px; border-radius: 8px; background: rgba(255,255,255,.1); overflow: hidden; }
.week__bar i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform-origin: left; transform: scaleX(0); border-radius: inherit; }
.weeks__total { display: flex; justify-content: space-between; padding-top: 16px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,.12); }
.weeks__total strong { font-family: var(--f-display); font-size: 26px; color: var(--gold-2); }
@media (max-width: 900px) { .challenge__card { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .week { grid-template-columns: 1fr auto; } .week__bar { grid-column: 1 / -1; grid-row: 2; } .weeks { padding: 22px; } }

/* =========================================================
   CARREIRA
   ========================================================= */
.career { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.career__head { position: sticky; top: 130px; }
.career__lead { color: var(--muted); margin-top: 26px; max-width: 30em; }
.career__ladder { position: relative; display: grid; gap: 18px; padding-left: 40px; }
.career__rail { position: absolute; left: 11px; top: 30px; bottom: 30px; width: 2px; background: var(--line); border-radius: 2px; }
.career__rail i { position: absolute; inset: 0; background: linear-gradient(to bottom, #B98252, #D9B25F, var(--blue), #5AA9D6, var(--rose)); transform-origin: top; transform: scaleY(0); border-radius: inherit; }
.level { position: relative; display: flex; gap: 22px; align-items: flex-start; padding: 26px; border-radius: 20px; background: var(--ivory); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.level::before { content: ""; position: absolute; left: -35px; top: 38px; width: 14px; height: 14px; border-radius: 50%; background: var(--cream); border: 2px solid var(--c); transition: background .4s; }
.level.is-on::before { background: var(--c); box-shadow: 0 0 0 6px color-mix(in srgb, var(--c) 25%, transparent); }
.level:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--c) 45%, transparent); }
.level__gem { flex: none; width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 16%, #fff); color: var(--c); }
.level__gem svg { width: 34px; height: 26px; }
.level__gem--double { grid-auto-flow: column; gap: 0; }
.level__gem--double svg { width: 22px; height: 18px; }
.level h3 { font-family: var(--f-display); font-size: 32px; line-height: 1; color: var(--navy); }
.level__goal { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: color-mix(in srgb, var(--c) 45%, var(--ink)); font-weight: 500; margin: 8px 0 12px; }
.level ul { display: grid; gap: 4px; }
.level li { font-size: 15px; color: var(--muted); padding-left: 18px; position: relative; }
.level li::before { content: "✦"; position: absolute; left: 0; font-size: 10px; top: 5px; color: var(--c); }
.level--top { background: linear-gradient(135deg, #FFF 0%, var(--rose-soft) 100%); border-color: rgba(210, 133, 125, .4); }
@media (max-width: 900px) { .career { grid-template-columns: 1fr; } .career__head { position: static; } }
@media (max-width: 480px) { .level { flex-direction: column; gap: 14px; padding: 22px; } .level::before { top: 30px; } }

/* =========================================================
   PRÊMIOS
   ========================================================= */
.prizes { background: radial-gradient(120% 100% at 50% 0%, #133B57 0%, var(--navy) 60%); color: var(--ivory); overflow: hidden; }
.prizes__head { max-width: var(--max); margin: 0 auto 60px; }
.prizes__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; perspective: 1200px; }
.prize { position: relative; min-height: 340px; padding: 30px; border-radius: 26px; display: flex; flex-direction: column; background: linear-gradient(170deg, rgba(255,255,255,.1), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); overflow: hidden; transform-style: preserve-3d; }
.prize__goal { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,253,248,.6); }
.prize__goal strong { display: block; font-family: var(--f-display); font-size: 40px; letter-spacing: 0; text-transform: none; color: var(--gold-2); font-weight: 500; margin-top: 6px; font-variant-numeric: tabular-nums; }
.prize h3 { font-family: var(--f-display); font-size: 30px; line-height: 1.05; margin-top: auto; }
.prize p { color: rgba(255,253,248,.6); font-size: 14px; margin-top: 8px; }
.prize__icon { position: absolute; right: 22px; top: 26px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: rgba(241,220,170,.1); transform: translateZ(40px); }
.prize__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-2); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.prize--top { background: linear-gradient(160deg, var(--gold-2) 0%, var(--gold) 100%); color: var(--navy); border: 0; }
.prize--top .prize__goal { color: rgba(10,34,51,.6); }
.prize--top .prize__goal strong { color: var(--navy); }
.prize--top .prize__icon { background: rgba(10,34,51,.1); }
.prize--top .prize__icon svg { stroke: var(--navy); }
.prizes__note { max-width: var(--max); margin: 30px auto 0; }
@media (max-width: 1000px) { .prizes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prizes__grid { grid-template-columns: 1fr; } .prize { min-height: 240px; } }

/* =========================================================
   COMUNIDADE
   ========================================================= */
.community { overflow: hidden; }
.community__head { max-width: var(--max); margin: 0 auto 60px; }
.mosaic { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 8vw; gap: 16px; }
.mosaic__item { border-radius: 20px; overflow: hidden; }
.mosaic__item img { width: 100%; height: 120%; object-fit: cover; }
.mosaic__item--1 { grid-column: 1 / 6; grid-row: span 5; }
.mosaic__item--2 { grid-column: 6 / 9; grid-row: span 3; }
.mosaic__item--3 { grid-column: 9 / 13; grid-row: span 4; }
.mosaic__item--4 { grid-column: 6 / 9; grid-row: span 3; }
.mosaic__item--5 { grid-column: 9 / 13; grid-row: span 2; }
.mosaic__item--6 { grid-column: 1 / 6; grid-row: span 1; display: none; }
@media (max-width: 760px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 44vw; gap: 10px; }
  .mosaic__item--1 { grid-column: 1 / -1; grid-row: span 2; }
  .mosaic__item--2, .mosaic__item--3, .mosaic__item--4, .mosaic__item--5 { grid-column: auto; grid-row: span 1; }
  .mosaic__item img { height: 100%; }
}

.wall { margin: clamp(60px, 8vw, 110px) calc(var(--pad) * -1) 0; overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; }
.wall:active { cursor: grabbing; }
.wall__track { display: flex; gap: 16px; width: max-content; }
.wall__track img { width: clamp(200px, 20vw, 280px); aspect-ratio: 3/4; object-fit: cover; border-radius: 18px; pointer-events: none; -webkit-user-drag: none; }
.wall__track img:nth-child(even) { transform: translateY(30px); }

.quotes { max-width: var(--max); margin: clamp(80px, 10vw, 140px) auto 0; columns: 2; column-gap: 20px; }
.quote { break-inside: avoid; margin: 0 0 20px; padding: clamp(28px, 3vw, 44px); border-radius: var(--radius); background: var(--ivory); border: 1px solid var(--line); position: relative; }
.quote::before { content: "“"; position: absolute; right: 26px; top: -6px; font-family: var(--f-display); font-size: 140px; line-height: 1; color: var(--rose-soft); }
.quote p { position: relative; font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); line-height: 1.3; color: var(--navy); }
.quote cite { display: block; margin-top: 20px; font-style: normal; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; }
.quote--rose { background: var(--rose-soft); border-color: transparent; }
.quote--rose::before { color: #fff; }
.quote--blue { background: var(--navy); border-color: transparent; }
.quote--blue p { color: var(--ivory); }
.quote--blue::before { color: rgba(255,255,255,.08); }
.quote--blue cite { color: var(--gold-2); }
@media (max-width: 760px) { .quotes { columns: 1; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 100px); padding-top: 40px; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); color: var(--navy); line-height: 1.2; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { flex: none; position: relative; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); transition: background .4s, transform .5s var(--ease); }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: var(--navy); transform: translate(-50%, -50%); transition: transform .5s var(--ease), background .4s; }
.qa summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[open] summary i { background: var(--navy); transform: rotate(180deg); }
.qa[open] summary i::before, .qa[open] summary i::after { background: var(--ivory); }
.qa[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.qa__body { overflow: hidden; }
.qa__body p { padding: 0 60px 26px 0; color: var(--muted); }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } .qa__body p { padding-right: 0; } }

/* =========================================================
   CADASTRO
   ========================================================= */
.signup { overflow: hidden; background: var(--navy); color: var(--ivory); border-radius: 48px 48px 0 0; }
.signup__bg { position: absolute; inset: 0; opacity: .22; }
.signup__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: grayscale(.3); }
.signup__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 25%, rgba(10,34,51,.6)); }
.signup__inner { position: relative; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.signup__logo { width: 180px; height: auto; margin-bottom: 36px; }
.signup__logo { color: var(--ivory); }
.signup__text > p { color: rgba(255,253,248,.75); margin-top: 26px; max-width: 30em; font-size: 18px; }
.signup__checks { display: grid; gap: 12px; margin-top: 30px; }
.signup__checks li { display: flex; align-items: center; gap: 12px; }
.signup__checks li::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2233' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 13px no-repeat; }

.form { position: relative; padding: clamp(28px, 4vw, 48px); border-radius: 30px; background: var(--ivory); color: var(--ink); display: grid; gap: 16px; box-shadow: 0 50px 90px -40px rgba(0,0,0,.6); overflow: hidden; }
.field { position: relative; }
.field input { width: 100%; padding: 26px 20px 10px; border-radius: 14px; border: 1px solid var(--line); background: var(--cream); font: 400 16px var(--f-body); color: var(--ink); outline: none; transition: border-color .3s, box-shadow .3s, background .3s; }
.field label { position: absolute; left: 20px; top: 18px; color: var(--muted); pointer-events: none; transition: transform .35s var(--ease), color .3s; transform-origin: left; }
.field input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(0, 115, 174, .12); }
.field input:focus + label, .field input:not(:placeholder-shown) + label { transform: translateY(-11px) scale(.76); color: var(--blue); }
.field.is-invalid input { border-color: #C2554B; box-shadow: 0 0 0 4px rgba(194, 85, 75, .12); }
.choice { border: 0; padding: 4px 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.choice legend { width: 100%; font-size: 14px; color: var(--muted); margin-bottom: 10px; padding: 0; }
.choice label { cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: inline-block; padding: 11px 18px; border-radius: 100px; border: 1px solid var(--line); font-size: 14px; transition: all .3s var(--ease); }
.choice input:checked + span { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(0,115,174,.3); }
.form .btn { margin-top: 8px; }
.form__legal { font-size: 12px; color: var(--muted); text-align: center; }
.form__success { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: var(--ivory); visibility: hidden; opacity: 0; }
.form__success-lottie { width: 150px; height: 150px; }
.form__success h3 { font-family: var(--f-display); font-size: 38px; color: var(--navy); margin: 8px 0 8px; }
.form__success p { color: var(--muted); }
@media (max-width: 900px) { .signup__inner { grid-template-columns: 1fr; } .signup { border-radius: 30px 30px 0 0; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,253,248,.6); padding: 0 var(--pad) 40px; overflow: hidden; }
.footer__big { font-family: var(--f-display); font-style: italic; font-size: clamp(90px, 21vw, 360px); line-height: .9; letter-spacing: -.04em; color: rgba(241, 220, 170, .09); text-align: center; white-space: nowrap; padding: 40px 0 30px; }
.footer__row { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__logo { width: 120px; height: auto; }
.footer__logo { color: var(--ivory); }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: 14px; }
.footer__links a:hover { color: var(--gold-2); }
.footer__copy { font-size: 13px; }

.wpp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25D366; box-shadow: 0 16px 30px -10px rgba(37, 211, 102, .6); transform: scale(0); }
.wpp-float svg { width: 30px; height: 30px; fill: #fff; }
.wpp-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Estado inicial p/ animações (somente com JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(40px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Ajustes: diamante do manifesto ao lado do texto (desktop) ---------- */
@media (min-width: 961px) {
  .about { position: relative; }
  .about__gem { position: absolute; right: var(--pad); top: clamp(120px, 14vw, 200px); width: clamp(220px, 26vw, 380px); margin: 0; }
  .draw-gem path { stroke-width: .6; }
}

/* ---------- Evita overflow horizontal causado por elementos animados ---------- */
main, .footer { overflow-x: clip; }

/* ---------- Acessibilidade / SEO ---------- */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
h2.eyebrow { font-family: var(--f-body); line-height: 1.6; }
.footer__nap { width: 100%; order: 3; font-style: normal; font-size: 13px; line-height: 1.8; color: rgba(255, 253, 248, .6); }
.footer__nap strong { color: var(--ivory); font-weight: 500; }
.footer__nap a:hover { color: var(--gold-2); }
.footer__copy { order: 4; }

/* ---------- Crédito do desenvolvedor ---------- */
.footer__troven { font-weight: 600; letter-spacing: .06em; color: var(--ivory); }
.footer__troven:hover { color: var(--gold-2); }
.footer { padding-bottom: 40px; }

/* =========================================================
   RESPONSIVO — ajustes finos para celular e tablet
   ========================================================= */
.btn { white-space: nowrap; }
.week span { white-space: nowrap; }
.weeks__total { align-items: baseline; gap: 12px; }

/* alvos de toque (mín. ~40px) */
.nav__brand { padding: 5px 0; }
.footer__links a { display: inline-block; padding: 10px 0; }
.sim__range { height: 28px; padding: 11px 0; background-clip: content-box; box-sizing: border-box; }

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
@media (max-width: 400px) {
  .btn { padding: 16px 22px; font-size: 14px; gap: 10px; }
  .choice span { padding: 10px 14px; }
  .weeks { padding: 20px 18px; }
  .weeks__total { flex-wrap: wrap; }
  .weeks__total strong { font-size: 22px; }
  .sim { padding: 26px 22px; }
}
