/* ============================================================
   Exclusivity — landing page
   Paleta: branco #ffffff · vermelho #e01f27 · tinta #221418
   ============================================================ */

:root {
  --red: #e01f27;
  --red-dark: #b3141b;
  --red-soft: #fdeeef;
  --ink: #221418;
  --ink-soft: #6d5f63;
  --bg: #ffffff;
  --tint: #faf6f7;
  --line: #eee0e2;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(34, 20, 24, 0.22);
  --header-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container-narrow { max-width: 720px; }

/* ---------- Tipografia ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.18rem; line-height: 1.3; }

h1 em, h2 em {
  font-style: italic;
  color: var(--red);
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 34em;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 0.85rem;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.6rem 1.35rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(224, 31, 39, 0.65);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

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

.btn-lg { padding: 0.85rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }

/* ---------- Aviso +18 ---------- */

.age-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: 6px;
  padding: 0.1rem 0.45rem;
  letter-spacing: 0.03em;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(34, 20, 24, 0.35);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--red);
  border-radius: 9px;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-copy .lead { margin-bottom: 2rem; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Cartão de conteúdo bloqueado (assinatura visual) */

.hero-visual {
  position: relative;
  max-width: 400px;
  margin-inline: auto;
  width: 100%;
}

.post-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.post-card-back {
  position: absolute;
  inset: 0;
  transform: rotate(4deg) translate(14px, -12px);
  background: var(--red-soft);
  border-color: #f7d4d6;
  box-shadow: none;
  z-index: 0;
}

.post-chip {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red-dark);
  background: #fff;
  border: 1px solid #f7d4d6;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.post-card:not(.post-card-back) { z-index: 1; }

.post-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.1rem;
}

.post-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.post-meta { display: flex; flex-direction: column; line-height: 1.3; }
.post-meta strong { font-size: 0.92rem; }
.post-meta small { color: var(--ink-soft); font-size: 0.76rem; }

.post-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.post-blur {
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(circle at 30% 30%, #f5b8bb 0%, transparent 55%),
    radial-gradient(circle at 75% 25%, #e8858b 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, #d4626b 0%, transparent 55%),
    linear-gradient(160deg, #fbe3e4 0%, #e9a3a8 45%, #c04a52 100%);
  filter: blur(22px) saturate(1.05);
}

.post-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  text-align: center;
  padding: 1rem;
  background: rgba(34, 20, 24, 0.28);
}

.post-lock span {
  font-size: 0.82rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(34, 20, 24, 0.5);
  max-width: 16em;
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-top: 1px solid var(--line);
}

.post-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}

.post-price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- Seções ---------- */

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.section-tint {
  background: var(--tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}

/* Como funciona */

.steps {
  list-style: none;
  display: grid;
  gap: 1.4rem;
  counter-reset: passo;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: #f2c9cc;
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* Para criadores */

.split {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.split-copy h2 { margin-bottom: 1rem; }
.split-copy .lead { margin-bottom: 1.8rem; }

.revenue-bar {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  max-width: 420px;
}

.revenue-creator {
  flex: 0 0 80%;
  background: var(--red);
  color: #fff;
  padding: 0.55rem 1rem;
}

.revenue-platform {
  flex: 1;
  background: #fff;
  color: var(--ink-soft);
  padding: 0.55rem 0.6rem;
  text-align: center;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
}

.feature {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: #f2c9cc;
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  flex-shrink: 0;
}

.feature h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.feature p { color: var(--ink-soft); font-size: 0.92rem; }

/* Para fãs */

.cards {
  display: grid;
  gap: 1.4rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #f2c9cc;
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 0.55rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

.card-highlight {
  background: var(--red);
  border-color: var(--red);
}

.card-highlight h3 { color: #fff; }
.card-highlight p { color: rgba(255, 255, 255, 0.88); }
.card-highlight strong { color: #fff; }

/* FAQ */

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.3rem;
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq details[open] summary { color: var(--red); }
.faq details[open] summary::after { transform: rotate(45deg); }

.faq summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.faq details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* CTA final */

.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 0.9rem; }
.cta-final .lead { margin-inline: auto; margin-bottom: 1.8rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--tint);
  padding: 2.8rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand { max-width: 420px; }

.footer-adult {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-links a:hover { color: var(--red); }

.footer-copy {
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Páginas legais ---------- */

.legal-main {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.legal-main h1 { margin-bottom: 0.5rem; }

.legal-updated {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 2.2rem;
}

.legal-main h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}

.legal-main h3 {
  font-size: 1.05rem;
  margin: 1.4rem 0 0.5rem;
}

.legal-main p, .legal-main li {
  color: #443a3d;
  font-size: 0.97rem;
  margin-bottom: 0.7rem;
}

.legal-main ul, .legal-main ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.legal-main a { color: var(--red); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
  transition: color 0.2s ease;
}

.legal-back:hover { color: var(--red); }

/* ---------- Animações ---------- */

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsivo (mobile-first: acima é a base) ---------- */

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
  .hero-visual { margin-inline: 0 0.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .footer-links {
    flex-direction: row;
    gap: 1.6rem;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .btn { padding: 0.55rem 1rem; font-size: 0.88rem; }
  .btn-lg { padding: 0.75rem 1.4rem; font-size: 0.95rem; }
  .brand-name { font-size: 1.15rem; }
}
