/* ============================================================
   TOKENS
============================================================ */
:root {
  --black:    #0A0A0A;
  --red:      #D50000;
  --red-dark: #8B0000;
  --white:    #F5F5F5;
  --gray:     #2A2A2A;
  --gray2:    #1A1A1A;
  --font:     'Outfit', sans-serif;
  --transition: .3s ease;
  --shadow-red: 0 0 32px rgba(213,0,0,.45);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
  padding-block: 2rem;
}
.red { color: var(--red); }
.section { width: 100%; padding-block: 5rem; }

/* ============================================================
   SECTION TITLES
============================================================ */
.section-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease calc(var(--delay, 0s)), transform .7s ease calc(var(--delay, 0s));
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CTA BUTTONS
============================================================ */
.cta-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .9rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-red);
  animation: glow 2.5s ease-in-out infinite alternate;
  text-align: center;
}
.cta-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 48px rgba(213,0,0,.7);
  transform: translateY(-2px) scale(1.02);
}
.cta-primary.large {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}

@keyframes glow {
  from { box-shadow: 0 0 18px rgba(213,0,0,.35); }
  to   { box-shadow: 0 0 48px rgba(213,0,0,.75); }
}

/* ============================================================
   TRUST BADGES
============================================================ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.trust-row.center { justify-content: center; }
.badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: .35rem .8rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.09); }
}

/* Overlay: gradient da esquerda para escurecer e dar contraste */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.7) 55%, rgba(10,10,10,.25) 100%),
    linear-gradient(to bottom, rgba(10,10,10,.2) 0%, rgba(10,10,10,.85) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-block: 6rem 4rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 680px;
}

/* Urgency badge */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(213,0,0,.18);
  border: 1px solid rgba(213,0,0,.4);
  border-radius: 30px;
  padding: .4rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: #ff6b6b;
  width: fit-content;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { opacity: 1; }
  50%      { opacity: .75; }
}
.fire { font-size: 1.1rem; }

/* HEADLINE */
.headline {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,.7);
}

/* SUBHEADLINE */
.subheadline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(245,245,245,.85);
  max-width: 560px;
  font-weight: 400;
}

/* Social proof */
.social-proof {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}
.stars {
  font-size: 1rem;
  letter-spacing: .05em;
}
.proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .88rem;
  color: rgba(245,245,245,.75);
}
.dot { color: var(--red); font-weight: 800; }

/* Bullets */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bullets li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  font-weight: 600;
}
.check {
  color: var(--red);
  font-weight: 900;
  font-size: 1.1rem;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: .5;
  animation: bounce 1.8s ease-in-out infinite;
}
.scroll-arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAIN SECTION
============================================================ */
.pain-section { background: var(--gray2); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.pain-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
  transition: border-color var(--transition), transform var(--transition);
}
.pain-card:hover {
  border-color: rgba(213,0,0,.4);
  transform: translateY(-4px);
}
.pain-icon { font-size: 2rem; }
.pain-card p { font-size: .97rem; color: rgba(245,245,245,.85); font-weight: 500; }
.pain-copy {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(245,245,245,.75);
  max-width: 600px;
  margin-inline: auto;
}

/* ============================================================
   SOLUTION SECTION
============================================================ */
.solution-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a0000 100%);
  text-align: center;
}
.solution-inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.solution-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
}
.solution-copy {
  font-size: 1.1rem;
  color: rgba(245,245,245,.8);
  max-width: 580px;
  text-align: center;
}

/* ============================================================
   BENEFITS SECTION
============================================================ */
.benefits-section { background: var(--black); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.benefit-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.benefit-card:hover {
  border-color: rgba(213,0,0,.5);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(213,0,0,.15);
}
.b-icon { font-size: 2rem; }
.benefit-card p { font-size: .95rem; font-weight: 600; }

/* ============================================================
   MODULES SECTION
============================================================ */
.modules-section { background: var(--gray2); }
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 780px;
  margin-inline: auto;
}
.module-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  background: var(--gray);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--red);
  transition: transform var(--transition);
}
.module-item:hover { transform: translateX(6px); }
.module-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  opacity: .7;
  min-width: 2rem;
  line-height: 1;
}
.module-text strong { display: block; font-size: 1.05rem; margin-bottom: .3rem; }
.module-text p { font-size: .9rem; color: rgba(245,245,245,.7); }

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section { background: var(--black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(213,0,0,.35);
  transform: translateY(-4px);
}
.testimonial-card.featured {
  border-color: rgba(213,0,0,.45);
  background: linear-gradient(135deg, #1a0000 0%, var(--gray) 100%);
  box-shadow: var(--shadow-red);
}
.t-stars { font-size: .95rem; letter-spacing: .04em; }
.t-text { font-size: .97rem; color: rgba(245,245,245,.85); font-style: italic; line-height: 1.55; }
.t-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: auto;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: .95rem; }
.t-author span { font-size: .8rem; color: rgba(245,245,245,.6); }

/* ============================================================
   OFFER SECTION
============================================================ */
.offer-section {
  background: linear-gradient(135deg, #1a0000 0%, var(--black) 100%);
}
.offer-box {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.offer-badge {
  background: var(--red);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 30px;
  animation: pulse-badge 2s ease-in-out infinite;
}
.price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.price-from {
  font-size: 1rem;
  color: rgba(245,245,245,.55);
}
.price-main {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.price-label {
  font-size: .85rem;
  color: rgba(245,245,245,.55);
}
.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-align: left;
  width: 100%;
  max-width: 380px;
}
.offer-features li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .98rem;
  font-weight: 500;
}
.urgency-text {
  font-size: .9rem;
  color: rgba(245,245,245,.6);
  margin-top: -.4rem;
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.final-cta-section {
  background: radial-gradient(ellipse at center, #1a0000 0%, var(--black) 70%);
  text-align: center;
}
.final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.headline-final {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.15;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--gray);
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  font-size: .82rem;
  color: rgba(245,245,245,.45);
  padding-block: 1.5rem;
}
.footer small { display: block; margin-top: .5rem; font-size: .78rem; max-width: 640px; margin-inline: auto; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .hero-inner { padding-block: 5rem 3rem; }
  .headline { font-size: clamp(2rem, 10vw, 3rem); }
  .proof-stats { flex-direction: column; gap: .2rem; }
  .modules-list { gap: .8rem; }
  .module-item { flex-direction: row; gap: 1rem; }
}
@media (min-width: 900px) {
  .hero-inner { padding-block: 8rem 5rem; }
}
