/* =========================================================
   MÉTODO 1% — Sales Page (Netflix-style)
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-elev-2: #1f1f1f;
  --surface: #181818;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #ffffff;
  --text-muted: #b3b3b3;
  --text-dim: #808080;

  --accent: #e50914;
  --accent-dark: #b80710;
  --accent-glow: rgba(229, 9, 20, 0.45);

  --gold: #f5c518;

  --max-w: 1200px;
  --max-w-wide: 1480px;
  --max-w-narrow: 760px;

  --radius: 6px;
  --radius-lg: 10px;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Containers ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: var(--max-w-wide); padding-right: 0; padding-left: 0; }
.container--wide > :not(.row-scroller) { padding-left: 24px; padding-right: 24px; }
.container--narrow { max-width: var(--max-w-narrow); }

.text-center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s var(--easing), background 0.18s var(--easing), box-shadow 0.18s var(--easing);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -10px var(--accent-glow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--xl { padding: 20px 42px; font-size: 18px; letter-spacing: 0.04em; }
.btn--block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s var(--easing), backdrop-filter 0.3s var(--easing);
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}
.navbar.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #fff;
}
.brand span { color: var(--accent); margin-left: 4px; }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s var(--easing);
}
.nav-links a:hover { color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(229, 9, 20, 0.25), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(80, 0, 120, 0.25), transparent 55%),
    linear-gradient(135deg, #1a0507 0%, #050505 60%);
  z-index: -2;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 3px);
  pointer-events: none;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  z-index: -1;
}
.hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  animation: heroIn 0.9s var(--easing) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ff5862;
  margin-bottom: 28px;
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(229, 9, 20, 0); }
}
.hero__title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.strike {
  position: relative;
  color: var(--text-dim);
  white-space: nowrap;
}
.strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 5px;
  background: var(--accent);
  transform: rotate(-3deg);
}
.highlight {
  background: linear-gradient(135deg, #ff3a44 0%, #e50914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__subtitle strong { color: #fff; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.meta-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.meta-item strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.meta-item span {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollDot 1.6s var(--easing) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
}
.section--pain { background: var(--bg); }
.section--promise {
  background: linear-gradient(180deg, var(--bg) 0%, #100507 100%);
}
.section--modules { background: #0c0c0c; }
.section--proof { background: linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%); }
.section--offer {
  background:
    radial-gradient(ellipse at top, rgba(229,9,20,0.18), transparent 60%),
    var(--bg);
}
.section--faq { background: var(--bg); }
.section--cta-final {
  background:
    radial-gradient(ellipse at center, rgba(229,9,20,0.25), transparent 65%),
    #050505;
  padding: 120px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow--center { display: block; text-align: center; }

.section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section__title--center { text-align: center; }

.section__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 56px;
}
.section--offer .section__lead,
.section--cta-final .section__lead { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Pain ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.pain-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--easing), border-color 0.2s var(--easing), background 0.2s var(--easing);
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.4);
  background: var(--bg-elev);
}
.pain-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(229, 9, 20, 0.12);
  color: var(--accent);
  border-radius: 10px;
  margin-bottom: 18px;
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Promise ===== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.promise-card {
  padding: 36px 30px;
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.promise-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.promise-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.promise-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Modules (Netflix Row) ===== */
.row-scroller {
  position: relative;
  margin-top: 8px;
}
.row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px;
  scrollbar-width: none;
}
.row::-webkit-scrollbar { display: none; }

.card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
  border: 1px solid transparent;
}
.card:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
  z-index: 2;
}
.card__poster {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.4) 0%, rgba(80, 0, 0, 0.6) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%),
    #220203;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.card__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}
.card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.card__info {
  padding: 18px 20px 20px;
}
.card__info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.card__info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.row-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 3;
  border-radius: 4px;
  transition: background 0.2s var(--easing), opacity 0.2s var(--easing);
  opacity: 0.85;
}
.row-arrow:hover { background: rgba(229, 9, 20, 0.8); opacity: 1; }
.row-arrow--left { left: 4px; }
.row-arrow--right { right: 4px; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 16px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  color: #e8e8e8;
  margin-bottom: 24px;
  position: relative;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 15px;
}
.testimonial__author span {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Pricing ===== */
.pricing {
  max-width: 560px;
  margin: 0 auto;
}
.pricing__card {
  background: linear-gradient(160deg, #1a0507 0%, var(--surface) 100%);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  box-shadow:
    0 24px 60px -20px rgba(229, 9, 20, 0.3),
    0 0 0 1px rgba(255,255,255,0.02);
}
.pricing__header { margin-bottom: 28px; text-align: center; }
.pricing__tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.pricing__header h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pricing__header p {
  font-size: 15px;
  color: var(--text-muted);
}
.pricing__list {
  list-style: none;
  margin: 0 0 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.pricing__list li {
  padding: 7px 0;
  font-size: 15px;
  color: #e8e8e8;
}
.pricing__price {
  text-align: center;
  margin-bottom: 28px;
}
.pricing__from {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.pricing__from s { color: var(--text-dim); }
.pricing__amount {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing__currency {
  font-size: 28px;
  margin-top: 14px;
  color: var(--text-muted);
}
.pricing__value {
  font-size: 84px;
  background: linear-gradient(135deg, #ff3a44 0%, #e50914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing__value small {
  font-size: 38px;
  color: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.pricing__installments {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}
.pricing__installments strong { color: #fff; }
.pricing__guarantee {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.seal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  flex-direction: column;
  flex-shrink: 0;
  text-align: center;
  line-height: 0.9;
}
.seal span { display: block; font-size: 11px; letter-spacing: 0.08em; }
.pricing__guarantee strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.pricing__guarantee p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing__secure {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 26px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.25s var(--easing);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  animation: faqIn 0.3s var(--easing);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA Final ===== */
.section--cta-final .micro {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Footer ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  color: var(--text-dim);
}
.footer__top {
  text-align: center;
  margin-bottom: 32px;
}
.footer__top p {
  margin-top: 12px;
  font-size: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
  .hero__meta { flex-wrap: wrap; gap: 18px; padding: 14px 18px; }
  .meta-divider { display: none; }
  .section { padding: 72px 0; }
  .pricing__card { padding: 32px 24px; }
  .pricing__value { font-size: 64px; }
  .pricing__guarantee { flex-direction: column; align-items: flex-start; text-align: left; }
  .row-arrow { display: none; }
  .card { flex-basis: 78%; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .btn--xl { padding: 18px 24px; font-size: 16px; }
}
