/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
  --purple:        rgba(70, 44, 90, 1.00);   /* #462C5A */
  --purple-deep:   rgba(48, 28, 64, 1.00);
  --purple-mid:    rgba(70, 44, 90, 0.70);
  --purple-soft:   rgba(70, 44, 90, 0.28);
  --purple-ghost:  rgba(70, 44, 90, 0.20);
  --purple-border: rgba(197, 174, 221, 0.32);
  --lavender:      #C5AEDD;
  --lilac:         #2A2034;
  --bg:            #0F0B14;
  --surface:       #171220;
  --card:          #20182B;
  --text:          #F4EEFB;
  --muted:         #BAA9CB;
  --divider:       #342A44;
  --text-soft:     #D6C8E5;
  --font-disp:     'Fraunces', Georgia, serif;
  --font-body:     'Outfit', sans-serif;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  color-scheme: dark;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem;
  background: rgba(15, 11, 20, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--purple);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.nav-cta:hover {
  background: var(--purple-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(70, 44, 90, 0.3);
}

/* ── PAGE HEADER (privacidade, exclusao) ── */
.page-header {
  background: var(--purple);
  padding: 9rem 5rem 5rem;
  text-align: center;
  color: #fff;
}

.page-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.page-header-meta {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.page-header-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── CONTENT LAYOUT (privacidade, exclusao) ── */
.content-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 5rem 6rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── TOC ── */
.toc {
  position: sticky;
  top: 100px;
}

.toc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--divider);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toc-list a {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.toc-list a:hover {
  color: var(--purple);
  border-left-color: var(--purple);
  background: var(--purple-ghost);
}

.toc-list a.active {
  color: var(--purple);
  border-left-color: var(--purple);
  background: var(--purple-ghost);
  font-weight: 500;
}

/* ── ARTICLE / POLICY SECTIONS ── */
article {
  min-width: 0;
}

.policy-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--divider);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  scroll-margin-top: 100px;
}

.policy-section h2 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--lilac);
  font-size: 1.1rem;
}

.policy-section h3 {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 1.6rem 0 0.6rem;
}

.policy-section p {
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  margin: 0.6rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.7;
}

.policy-section ul li::before {
  content: '♥';
  color: var(--lavender);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* ── CALLOUT ── */
.callout {
  background: var(--surface);
  border: 1.5px solid var(--purple-border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.callout strong {
  color: var(--lavender);
  font-weight: 600;
}

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 16px;
  padding: 1.6rem;
  margin-top: 1.2rem;
}

.contact-card .cc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-card .cc-val {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--lavender);
}

.contact-card a {
  color: var(--lavender);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ── NOTE BOX (exclusao) ── */
.note-box {
  background: rgba(197, 174, 221, 0.08);
  border: 1px solid var(--purple-border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}

.note-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

/* ── STEPS GRID (exclusao) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.step-item {
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.step-num {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 0.4rem;
}

.step-item .step-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.step-item .step-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RIGHTS GRID (privacidade) ── */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.right-item {
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.right-item:hover {
  border-color: var(--purple-border);
  box-shadow: 0 4px 16px rgba(70, 44, 90, 0.07);
}

.right-icon {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.right-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.right-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

/* ── HERO (index) ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 75vw;
  height: 75vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-soft) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.4rem;
  background: var(--purple-ghost);
  border: 1px solid var(--purple-border);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--purple);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: var(--purple);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(70, 44, 90, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--purple);
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--purple-border);
  text-decoration: none;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: var(--purple-ghost);
  border-color: var(--purple);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--divider);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-num {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-img {
  width: min(420px, 100%);
  filter: drop-shadow(0 24px 48px rgba(70, 44, 90, 0.25));
  animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Floating chips */
.chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  box-shadow: 0 4px 20px rgba(70, 44, 90, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
}

.chip .ci { font-size: 1.1rem; }

.chip-rating { top: 12%; right: -5%;  animation: chipFloat 4s 0s   ease-in-out infinite; }
.chip-pix    { bottom: 22%; left: -8%; animation: chipFloat 4s -2s  ease-in-out infinite; }
.chip-live   { top: 38%; left: -10%;  animation: chipFloat 4s -1s  ease-in-out infinite; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

/* ── MARQUEE (index) ── */
.marquee-strip {
  background: var(--purple);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.marquee-item .sep { color: var(--lavender); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS (index) ── */
section { padding: 7rem 5rem; }
.container { max-width: 1160px; margin: 0 auto; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.sec-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
}

.sec-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.sec-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 460px;
}

/* ── FEATURES (index) ── */
#features { background: var(--bg); }

.features-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feat-card:hover {
  border-color: var(--purple-border);
  box-shadow: 0 8px 32px rgba(70, 44, 90, 0.1);
  transform: translateY(-4px);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lilac);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
}

.feat-title {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feat-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HOW IT WORKS (index) ── */
#how { background: var(--surface); }

.how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.how-step {
  position: relative;
  padding: 0 2.5rem 0 0;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.2rem; right: 0;
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, var(--purple-border), transparent);
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.how-step .step-title {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.how-step .step-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PAYMENT (index) ── */
#payment { background: var(--bg); }

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.pay-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pay-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}

.pay-item:hover {
  border-color: var(--purple-border);
  box-shadow: 0 4px 16px rgba(70, 44, 90, 0.08);
}

.pay-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.pay-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.pay-detail {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
}

.pay-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  background: var(--lilac);
  color: var(--purple);
}

/* Phone mock */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone {
  width: 240px;
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 32px;
  padding: 1.2rem 0.9rem 1.5rem;
  box-shadow: 0 32px 64px rgba(70, 44, 90, 0.15), 0 0 0 1px rgba(70, 44, 90, 0.06);
  position: relative;
  z-index: 2;
}

.phone-bar {
  width: 72px;
  height: 5px;
  background: var(--divider);
  border-radius: 3px;
  margin: 0 auto 1rem;
}

.phone-map {
  height: 150px;
  background: var(--surface);
  border-radius: 14px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--divider) 1px, transparent 1px),
    linear-gradient(90deg, var(--divider) 1px, transparent 1px);
  background-size: 18px 18px;
}

.map-line {
  position: absolute;
  left: 38px; top: 25px;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--purple), var(--lavender));
  border-radius: 1px;
}

.map-a {
  position: absolute;
  left: 33px; top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}

.map-b {
  position: absolute;
  left: 33px; top: 107px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 0 3px rgba(197, 174, 221, 0.3);
}

.map-car {
  position: absolute;
  left: 32px; top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--purple);
  animation: carMove 3.5s ease-in-out infinite;
}

@keyframes carMove {
  0%, 100% { top: 20px; }
  50%       { top: 107px; }
}

.phone-dest {
  background: var(--surface);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.75rem;
}

.phone-dest-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.phone-dest-val {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
}

.phone-pills {
  display: flex;
  gap: 0.4rem;
}

.ppill {
  flex: 1;
  text-align: center;
  padding: 0.45rem 0;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
}

.ppill.on {
  background: var(--lilac);
  color: var(--purple);
}

.pchip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(70, 44, 90, 0.09);
  white-space: nowrap;
}

.pchip-left  { left: -70px; top: 30%;    animation: chipFloat 4s      ease-in-out infinite; }
.pchip-right { right: -70px; bottom: 30%; animation: chipFloat 4s -2s  ease-in-out infinite; }

/* ── RATING (index) ── */
#rating { background: var(--surface); }

.rating-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.rating-score {
  background: var(--purple);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}

.score-big {
  font-family: var(--font-disp);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.score-stars {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.score-label {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.06em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.review-card {
  background: var(--card);
  border: 1.5px solid var(--divider);
  border-radius: 16px;
  padding: 1.4rem;
  transition: box-shadow 0.25s;
}

.review-card:hover {
  box-shadow: 0 4px 20px rgba(70, 44, 90, 0.08);
}

.r-stars {
  color: var(--purple);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.r-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.r-author {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
}

/* ── DOWNLOAD (index) ── */
#download {
  background: var(--purple);
  color: #fff;
  text-align: center;
}

.dl-inner {
  max-width: 620px;
  margin: 0 auto;
}

.dl-logo {
  height: 80px;
  filter: brightness(0) invert(1);
  margin-bottom: 2rem;
}

.dl-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.dl-sub {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 3rem;
}

.store-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-icon { font-size: 1.9rem; }

.store-small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.1rem;
}

.store-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
footer {
  background: var(--purple-deep);
  padding: 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  /* index */
  section { padding: 5rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; text-align: center; }
  .hero-desc, .hero-stats { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .chip { display: none; }
  .features-head { grid-template-columns: 1fr; gap: 1rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .how-head { grid-template-columns: 1fr; gap: 1rem; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .how-step::after { display: none; }
  .payment-layout { grid-template-columns: 1fr; gap: 3rem; }
  .pchip { display: none; }
  .rating-layout { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* privacidade, exclusao */
  .page-header { padding: 8rem 1.5rem 4rem; }
  .content-wrap { grid-template-columns: 1fr; padding: 3rem 1.5rem 5rem; gap: 2.5rem; }
  .toc { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}
