/* ============================================
   QUERO MANGÁ — v2 Premium
   Aesthetic: Manga Magazine Cover + Neon Otaku
   ============================================ */

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

:root {
  --primary: #e8650a;
  --primary-bright: #ff8534;
  --primary-glow: rgba(232, 101, 10, 0.5);
  --secondary: #16162a;
  --secondary-deep: #0c0c1a;
  --accent: #ffd166;
  --accent-soft: #fff0c9;
  --neon-orange: #ff6b00;
  --neon-gold: #ffb800;

  --wa: #22c55e;
  --wa-hover: #16a34a;
  --wa-glow: rgba(34, 197, 94, 0.35);
  --tg: #229ed9;
  --tg-hover: #1a8ac0;
  --tg-glow: rgba(34, 158, 217, 0.35);

  --white: #fafafa;
  --g50: #f4f4f5;
  --g100: #e8e8ed;
  --g200: #d4d4db;
  --g400: #9898a8;
  --g600: #52525b;
  --g800: #27272a;
  --g900: #18181b;

  --font-d: "Outfit", sans-serif;
  --font-b: "DM Sans", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  interpolate-size: allow-keywords;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--g800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3 {
  font-family: var(--font-d);
  line-height: 1.15;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

/* --- Utility: line break only on desktop --- */
.br-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .br-desktop {
    display: inline;
  }
}

/* --- Section headers --- */
.section-header {
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(232, 101, 10, 0.08);
  border: 1px solid rgba(232, 101, 10, 0.15);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag-light {
  color: var(--accent);
  background: rgba(255, 209, 102, 0.1);
  border-color: rgba(255, 209, 102, 0.2);
}
.section-sub {
  font-size: 1.125rem;
  color: var(--g600);
  max-width: 600px;
  margin: 0.5rem auto 0;
}
.section-header-light h2 {
  color: #fff;
}
.section-header-light .section-sub {
  color: var(--g400);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: rgba(22, 22, 42, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(22, 22, 42, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}
.logo-full {
  height: 60px;
  width: auto;
  max-width: min(260px, 60vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}
.logo-full-footer {
  height: 100px;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .header-inner {
    height: 56px;
  }
  .logo-full {
    height: 46px;
    max-width: 70vw;
  }
  .logo-full-footer {
    height: 80px;
  }
}
.btn.btn-header-cta {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  min-height: 0;
  border-radius: 100px;
  background: var(--primary);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 0 20px var(--primary-glow);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .btn.btn-header-cta {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
  }
}
.site-header.scrolled .btn-header-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btn-header-cta:hover {
  background: var(--primary-bright);
  transform: translateY(-2px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  text-align: center;
  line-height: 1.3;
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before {
  opacity: 1;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
}
.btn-whatsapp:hover {
  box-shadow:
    0 8px 32px var(--wa-glow),
    0 0 0 1px rgba(34, 197, 94, 0.2);
}
.btn-telegram {
  background: var(--tg);
  color: #fff;
}
.btn-telegram:hover {
  box-shadow:
    0 8px 32px var(--tg-glow),
    0 0 0 1px rgba(34, 158, 217, 0.2);
}
.btn-lg {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  min-height: 64px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(5rem + 52px);
  padding-bottom: 6rem;
  background: var(--secondary);
  overflow: hidden;
}
@supports not (min-height: 100svh) {
  .hero {
    min-height: 100vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated speed lines */
.speed-lines {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -25deg,
    transparent,
    transparent 80px,
    rgba(232, 101, 10, 0.04) 80px,
    rgba(232, 101, 10, 0.04) 82px
  );
  animation: speedMove 12s linear infinite;
}
.speed-lines-2 {
  background: repeating-linear-gradient(
    -25deg,
    transparent,
    transparent 120px,
    rgba(255, 209, 102, 0.025) 120px,
    rgba(255, 209, 102, 0.025) 123px
  );
  animation: speedMove 20s linear infinite reverse;
}
@keyframes speedMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

.screentone {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.hero-glow-1 {
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 101, 10, 0.2) 0%,
    transparent 60%
  );
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  bottom: 5%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 209, 102, 0.1) 0%,
    transparent 60%
  );
  animation: glowPulse 8s ease-in-out infinite 3s;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Kanji watermarks */
.kanji-watermark {
  position: absolute;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.kanji-watermark:first-of-type {
  top: 5%;
  right: -2%;
}
.kanji-2 {
  bottom: 10%;
  left: -5%;
  font-size: 15vw;
  color: rgba(232, 101, 10, 0.02);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-d);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 8px var(--accent);
  }
}

/* Hero H1 — gradient text on accent line */
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero-line {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-accent {
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.3));
}
@media (min-width: 768px) {
  .hero-line {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-line {
    font-size: 3.75rem;
  }
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--g400);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.25rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Avatar stack */
.social-proof-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar-stack {
  display: flex;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--secondary);
  margin-right: -10px;
  background-size: cover;
}
.av-1 {
  background: linear-gradient(135deg, var(--primary), var(--neon-gold));
  z-index: 5;
}
.av-2 {
  background: linear-gradient(135deg, var(--accent), #ff9f43);
  z-index: 4;
}
.av-3 {
  background: linear-gradient(135deg, var(--wa), #0ea5e9);
  z-index: 3;
}
.av-4 {
  background: linear-gradient(135deg, var(--tg), #6366f1);
  z-index: 2;
}
.av-5 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  z-index: 1;
}
.avatar:last-child {
  margin-right: 0;
}
.social-proof-mini p {
  font-size: 0.875rem;
  color: var(--g400);
}
.social-proof-mini strong {
  color: #fff;
}

/* Phone mockup — premium */
.hero-visual {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    justify-content: center;
  }
}

.phone-mockup {
  width: 300px;
  background: #0a0a14;
  border-radius: 36px;
  padding: 10px;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 60px var(--primary-glow);
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}
.phone-mockup:hover {
  transform: perspective(800px) rotateY(0) rotateX(0);
}

.phone-notch {
  width: 120px;
  height: 28px;
  margin: 0 auto 8px;
  background: #0a0a14;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #111118;
  border-radius: 26px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 380px;
}

.notif {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  opacity: 0;
  transform: translateX(30px);
  animation: notifIn 0.6s var(--ease-out) forwards;
}
.notif-1 {
  animation-delay: 0.6s;
}
.notif-2 {
  animation-delay: 1.4s;
}
.notif-3 {
  animation-delay: 2.2s;
}
@keyframes notifIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.notif-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.notif strong {
  display: block;
  font-size: 0.7rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.notif p {
  font-size: 0.7rem;
  color: var(--g400);
  line-height: 1.4;
}

/* Floating panels */
.floating-panel {
  position: absolute;
  z-index: 10;
  background: rgba(22, 22, 42, 0.9);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 0 20px var(--primary-glow);
  animation: float 5s ease-in-out infinite;
}
.fp-1 {
  top: 5%;
  right: -20px;
  animation-delay: 0s;
}
.fp-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 2.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.panel-tag {
  font-family: var(--font-d);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--secondary-deep);
  background: var(--accent);
  padding: 1px 6px;
  border-radius: 3px;
  margin-right: 0.5rem;
}
.panel-text {
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

/* Hero diagonal cut */
.hero-cut {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ============================================
   CONTEXT
   ============================================ */
.context {
  background: var(--white);
  position: relative;
}
.context-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .context-inner {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
}

.context-deco {
  display: none;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(232, 101, 10, 0.06);
  writing-mode: vertical-rl;
  user-select: none;
}
@media (min-width: 768px) {
  .context-deco {
    display: block;
  }
}

.context-content {
  max-width: 680px;
  margin: 0 auto;
}
.context h2 {
  font-size: 1.875rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .context h2 {
    font-size: 2.25rem;
  }
}
.context p {
  font-size: 1.125rem;
  color: var(--g600);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.context-highlight {
  color: var(--g800);
  font-weight: 600;
  padding-left: 1.25rem;
  border-left: 3px solid var(--primary);
}

/* ============================================
   WHAT IS — Manga Cards
   ============================================ */
.what-is {
  background: var(--g50);
  position: relative;
  overflow: hidden;
}
.what-is-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.screentone-light {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 18px 18px;
}

.what-is h2 {
  font-size: 1.875rem;
  color: var(--secondary);
}
@media (min-width: 768px) {
  .what-is h2 {
    font-size: 2.5rem;
  }
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .what-is-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Manga panel-style cards */
.manga-card {
  background: var(--white);
  border-radius: 4px;
  border: 3px solid var(--g800);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  position: relative;
}
.manga-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 8px 8px 0 var(--primary);
}
.manga-card-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--neon-gold));
}
.manga-card-body {
  padding: 1.75rem;
}
.manga-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--neon-gold));
  border-radius: 10px;
  color: #fff;
  margin-bottom: 1rem;
}
.manga-card h3 {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.manga-card p {
  font-size: 0.9375rem;
  color: var(--g600);
  line-height: 1.6;
}

.what-is-not {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(232, 101, 10, 0.04);
  border: 2px dashed rgba(232, 101, 10, 0.2);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.what-is-not p {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.6;
}
.what-is-not strong {
  color: var(--primary);
}

/* ============================================
   CTA BLOCKS
   ============================================ */
.cta-block {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-block-accent {
  background: var(--secondary);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}
.cta-block-dark {
  background: var(--secondary-deep);
}
.cta-block:not(.cta-block-accent):not(.cta-block-dark) {
  background: var(--g50);
}

.cta-manga-deco {
  position: absolute;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  user-select: none;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-lead {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.cta-block-accent .cta-lead,
.cta-block-dark .cta-lead {
  color: var(--g400);
}
.cta-block-accent .cta-micro,
.cta-block-dark .cta-micro {
  color: var(--g600);
}

@media (min-width: 768px) {
  .cta-lead {
    font-size: 1.5rem;
  }
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
.cta-micro {
  font-size: 0.875rem;
  color: var(--g600);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  background: var(--white);
}
.benefits h2 {
  font-size: 1.875rem;
  color: var(--secondary);
}
@media (min-width: 768px) {
  .benefits h2 {
    font-size: 2.5rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 2rem;
  border-radius: 4px;
  background: var(--g50);
  border: 2px solid var(--g100);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.benefit-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--neon-gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover .benefit-accent {
  opacity: 1;
}
.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232, 101, 10, 0.1);
}

.benefit-number {
  font-family: var(--font-d);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--neon-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.9375rem;
  color: var(--g600);
  line-height: 1.6;
}

/* ============================================
   HISTORY
   ============================================ */
.history {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.history-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.history-lines {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -25deg,
    transparent,
    transparent 100px,
    rgba(255, 209, 102, 0.015) 100px,
    rgba(255, 209, 102, 0.015) 102px
  );
  animation: speedMove 18s linear infinite;
}
.history-kanji {
  position: absolute;
  font-size: 18vw;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.015);
  bottom: -5%;
  right: -2%;
  user-select: none;
}

.history h2 {
  font-size: 1.875rem;
  color: #fff;
}
@media (min-width: 768px) {
  .history h2 {
    font-size: 2.5rem;
  }
}

.history-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.history-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
  flex: 1 1 100%;
  max-width: 360px;
  transform-origin: center;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.3s,
    box-shadow 0.4s var(--ease-out);
}
@media (min-width: 640px) {
  .history-card {
    flex: 0 1 250px;
    max-width: 250px;
  }
}
.history-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 101, 10, 0.5);
  box-shadow:
    0 30px 70px -28px rgba(232, 101, 10, 0.5),
    0 16px 28px -14px rgba(0, 0, 0, 0.5);
}

.history-badge {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--secondary-deep);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.badge-coupon {
  background: var(--wa);
  color: #fff;
}
.badge-prevenda {
  background: var(--tg);
  color: #fff;
}

/* Cover image overlay inside history-card */
.history-cover-wrap {
  position: relative;
  margin: -1.5rem -1.5rem 1rem;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #fff;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-radius 0.45s var(--ease-out);
}
.history-card:hover .history-cover-wrap {
  transform: translateY(-22px) scale(1.02);
  border-radius: 6px;
  box-shadow:
    0 32px 40px -16px rgba(0, 0, 0, 0.75),
    0 16px 24px -10px rgba(0, 0, 0, 0.45),
    0 4px 8px -2px rgba(0, 0, 0, 0.3);
}
.history-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.history-card:hover .history-cover {
  transform: scale(1.03);
}
.history-cover-wrap .history-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  margin: 0;
  font-size: 0.875rem;
  padding: 0.3rem 0.7rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  transform-origin: center;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease-out);
}
.history-card:hover .history-cover-wrap .history-badge {
  transform: rotate(-6deg) scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.history-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.history-detail {
  font-size: 0.875rem;
  color: var(--g400);
}
.history-detail strong {
  color: var(--accent);
  font-weight: 700;
}
.history-meta {
  font-size: 0.75rem;
  color: var(--g600);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
}
.testimonials h2 {
  font-size: 1.875rem;
  color: var(--secondary);
}
@media (min-width: 768px) {
  .testimonials h2 {
    font-size: 2.5rem;
  }
}

.testimonials-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.testimonials-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
}

.testimonial-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--g50);
  border-radius: 4px;
  border: 2px solid var(--g100);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 6px 6px 0 rgba(232, 101, 10, 0.1);
  transform: translateY(-4px);
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: unset;
  }
}

.testimonial-quote {
  font-family: var(--font-d);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--neon-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.testimonial-card blockquote p {
  font-size: 0.9375rem;
  color: var(--g800);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-avatar.av-1 {
  background: linear-gradient(135deg, var(--primary), var(--neon-gold));
}
.testimonial-avatar.av-2 {
  background: linear-gradient(135deg, var(--accent), #ff9f43);
}
.testimonial-avatar.av-3 {
  background: linear-gradient(135deg, var(--wa), #0ea5e9);
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
}
.testimonial-card footer span {
  font-size: 0.75rem;
  color: var(--g600);
}

/* Print mockup */
.testimonial-print {
  margin-top: 3rem;
}
.print-label {
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-align: center;
}
.print-mock {
  max-width: 480px;
  margin: 0 auto;
  background: #0b141a;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.print-msg {
  background: #1f2c33;
  border-radius: 0 12px 12px 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #d1d7db;
  line-height: 1.5;
}
.print-msg strong {
  color: #25d366;
  display: block;
  margin-bottom: 2px;
  font-size: 0.75rem;
}
.print-msg-user {
  background: #005c4b;
  border-radius: 12px 0 12px 12px;
  align-self: flex-end;
  max-width: 85%;
}
.print-msg-user strong {
  color: #96ceb8;
}
.print-link {
  color: #53bdeb;
  font-size: 0.75rem;
}
.print-reactions {
  font-size: 0.75rem;
  color: var(--g400);
  padding: 0.25rem 0.5rem;
}
.print-caption {
  font-size: 0.875rem;
  color: var(--g600);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* ============================================
   TESTIMONIALS — REAL WHATSAPP PRINTS
   ============================================ */
.testimonials-prints {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
@media (min-width: 640px) {
  .testimonials-prints {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.print-card {
  background: #1f2c34;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}
.print-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 4px 8px rgba(0, 0, 0, 0.25);
}
.print-card img {
  width: 100%;
  height: auto;
  display: block;
}
.print-card figcaption {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--g200);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.print-card figcaption strong {
  color: var(--primary-bright);
  font-weight: 700;
}

/* ============================================
   WHY FREE
   ============================================ */
.why-free {
  background: var(--g50);
}
.why-free-content {
  max-width: 640px;
  margin: 0 auto;
}
.why-free h2 {
  font-size: 1.875rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .why-free h2 {
    font-size: 2.25rem;
  }
}
.why-free p {
  font-size: 1.125rem;
  color: var(--g600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.why-free-closing {
  font-weight: 700;
  color: var(--g800) !important;
  font-family: var(--font-d);
  font-size: 1.25rem !important;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
}
.how-it-works h2 {
  font-size: 1.875rem;
  color: var(--secondary);
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .how-it-works h2 {
    font-size: 2.25rem;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.step {
  text-align: center;
  max-width: 240px;
}
.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--neon-gold));
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.step h3 {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--g600);
}

.step-connector {
  width: 4px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), transparent);
}
@media (min-width: 768px) {
  .step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
  }
}

.steps-note {
  text-align: center;
  font-family: var(--font-d);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--g600);
  margin-top: 2.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--g50);
}
.faq h2 {
  font-size: 1.875rem;
  color: var(--secondary);
}
@media (min-width: 768px) {
  .faq h2 {
    font-size: 2.25rem;
  }
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 2px solid var(--g200);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-d);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 101, 10, 0.08);
  border-radius: 50%;
  transition:
    transform 0.3s var(--ease-out),
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}
.faq-item summary:hover {
  color: var(--primary);
}
.faq-answer {
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.7;
}

.faq-item::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition:
    block-size 0.35s var(--ease-out),
    opacity 0.25s var(--ease-out) 0.05s,
    content-visibility 0.35s allow-discrete;
}
.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(232, 101, 10, 0.15) 0%,
    rgba(255, 184, 0, 0.05) 40%,
    transparent 70%
  );
  animation: glowPulse 5s ease-in-out infinite;
}
.cta-final-lines {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -25deg,
    transparent,
    transparent 60px,
    rgba(255, 209, 102, 0.02) 60px,
    rgba(255, 209, 102, 0.02) 62px
  );
  animation: speedMove 15s linear infinite;
}
.cta-final-kanji {
  position: absolute;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .cta-final h2 {
    font-size: 2rem;
  }
}
.cta-final-sub {
  font-size: 1.125rem;
  color: var(--g400);
  margin-bottom: 2.5rem;
}
.cta-final .cta-buttons {
  margin-bottom: 1.5rem;
}
.cta-final-micro {
  font-size: 0.875rem;
  color: var(--g600);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--secondary-deep);
  padding: 3rem 0 2rem;
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: calc(2rem + 88px + env(safe-area-inset-bottom));
  }
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-mission {
  font-size: 0.875rem;
  color: var(--g600);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--g400);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--g600);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* <details> com transform vira containing block e quebra a animacao
   nativa de ::details-content. Mantemos so o fade por opacity nos FAQ. */
.faq-item.fade-up,
.faq-item.fade-up.visible {
  transform: none;
}
.stagger > .fade-up:nth-child(1) {
  transition-delay: 0s;
}
.stagger > .fade-up:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger > .fade-up:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger > .fade-up:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger > .fade-up:nth-child(5) {
  transition-delay: 0.32s;
}
.stagger > .fade-up:nth-child(6) {
  transition-delay: 0.4s;
}

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

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(22, 22, 42, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  justify-content: center;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.btn-sticky {
  width: 100%;
  max-width: 480px;
  font-size: 0.9375rem;
  min-height: 50px;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}
