:root {
  --bg-dark: #03100A;
  --bg-mid: #051A0F;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-card: rgba(255, 255, 255, 0.1);
  --verde: #009C3B;
  --verde-dark: #007A2E;
  --verde-light: #00C94A;
  --amarelo: #FFDF00;
  --amarelo-dark: #CDB200;
  --azul: #002776;
  --azul-light: #1a4db3;
  --branco: #FFFFFF;
  --text-main: #E8F5EC;
  --text-muted: #8DB89A;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(90deg, var(--verde) 0%, var(--verde-dark) 100%);
  color: var(--amarelo);
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
  border-bottom: 3px solid var(--amarelo);
}
.ticker { display: inline-block; white-space: nowrap; will-change: transform; animation: ticker 70s linear infinite; }
.ticker-inner { display: inline-block; white-space: nowrap; }
@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-heading); text-transform: uppercase; line-height: 1.05; letter-spacing: 1px; }
.text-white { color: var(--branco); }
.text-gold { color: var(--amarelo); }
.text-verde { color: var(--verde-light); }
.text-azul { color: var(--azul-light); }
.glow-text { text-shadow: 0 0 20px rgba(255, 223, 0, 0.6); }
.glow-verde { text-shadow: 0 0 20px rgba(0, 201, 74, 0.7); }
.mt-large { margin-top: 40px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-dark) 100%);
  color: #000;
  font-weight: 800;
  box-shadow: 0 10px 30px -5px rgba(255, 223, 0, 0.5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -5px rgba(255, 223, 0, 0.7); }
.btn-secondary {
  background: transparent;
  color: var(--amarelo);
  border: 2px solid var(--amarelo);
}
.btn-secondary:hover { background: var(--amarelo); color: #000; box-shadow: 0 10px 25px -5px rgba(255, 223, 0, 0.4); }
.btn-large { font-size: 1.8rem; padding: 22px 40px; width: 100%; }

.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.7); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(255, 223, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 223, 0, 0); }
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 24px;
}

/* ── HERO ── */
.hero {
  padding: 60px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(0, 156, 59, 0.18) 0%, transparent 65%),
              radial-gradient(ellipse at bottom, rgba(0, 39, 118, 0.2) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.025'/></svg>");
  pointer-events: none;
}

/* Flag stripe accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--amarelo) 33%, var(--azul) 66%, var(--branco) 100%);
}

.badge-brasil {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 156, 59, 0.15);
  color: var(--verde-light);
  border: 1px solid var(--verde);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero h1 { font-size: 4.5rem; margin-bottom: 16px; }
.hero h1 .linha1 { display: block; color: var(--branco); }
.hero h1 .linha2 { display: block; color: var(--amarelo); text-shadow: 0 0 25px rgba(255,223,0,0.5); }

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 16px;
}
.hero-emotional {
  font-size: 1.1rem;
  color: var(--verde-light);
  font-weight: 600;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ── VIDEO ── */
.video-wrapper {
  position: relative;
  max-width: 340px;
  margin: 0 auto 44px;
  border-radius: 20px;
  z-index: 2;
}
.video-glow {
  position: absolute;
  top: -6px; right: -6px; bottom: -6px; left: -6px;
  background: linear-gradient(45deg, var(--verde), var(--amarelo), var(--azul-light), var(--verde));
  z-index: -1;
  border-radius: 26px;
  filter: blur(14px);
  opacity: 0.55;
  animation: rotateGlow 5s linear infinite;
}
@keyframes rotateGlow { 0% { filter: hue-rotate(0deg) blur(14px); } 100% { filter: hue-rotate(360deg) blur(14px); } }
.video-wrapper video { width: 100%; border-radius: 20px; display: block; border: 2px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.8); cursor: pointer; }
.unmute-btn {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.unmute-btn:hover { background: rgba(255,223,0,0.2); border-color: var(--amarelo); color: var(--amarelo); }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: linear-gradient(135deg, var(--azul) 0%, #003A9B 100%);
  border-top: 2px solid var(--amarelo);
  border-bottom: 2px solid var(--amarelo);
  padding: 18px 0;
  text-align: center;
}
.urgency-bar p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--amarelo);
  letter-spacing: 1px;
}
.urgency-bar p span { color: #fff; }

/* ── SECTIONS GLOBAL ── */
section { padding: 80px 0; text-align: center; }
.section-title { font-size: 3rem; margin-bottom: 16px; color: var(--branco); }
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }

/* ── EMOTIONAL SECTION ── */
.emotional-section {
  background: linear-gradient(160deg, var(--bg-mid) 0%, #071F12 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.emotional-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,156,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.moment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.moment-card {
  background: rgba(0, 156, 59, 0.06);
  border: 1px solid rgba(0, 156, 59, 0.25);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.moment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--verde), var(--amarelo));
  border-radius: 4px 0 0 4px;
}
.moment-card:hover { transform: translateY(-6px); border-color: rgba(0,156,59,0.5); box-shadow: 0 20px 40px rgba(0,156,59,0.1); }
.moment-emoji { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.moment-card h3 { font-size: 1.6rem; color: var(--amarelo); margin-bottom: 10px; }
.moment-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ── CAROUSEL ── */
.album-section {
  background: #050F08;
  overflow: hidden;
  border-top: 1px solid rgba(0,156,59,0.2);
  border-bottom: 1px solid rgba(0,156,59,0.2);
}
.carousel-container { width: 100%; overflow: hidden; padding: 20px 0; position: relative; }
.carousel-container::before, .carousel-container::after {
  content: ''; position: absolute; top: 0; width: 15%; height: 100%; z-index: 2;
}
.carousel-container::before { left: 0; background: linear-gradient(to right, #050F08, transparent); }
.carousel-container::after { right: 0; background: linear-gradient(to left, #050F08, transparent); }
.carousel-track { display: flex; width: max-content; gap: 20px; animation: scrollCarousel 20s linear infinite; }
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-190px * 8 - 20px * 8)); }
}
.player-card { width: 170px; height: 230px; flex-shrink: 0; background: #fff; border-radius: 12px; padding: 6px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.player-card:nth-child(odd) { transform: rotate(-3deg); }
.player-card:nth-child(even) { transform: rotate(3deg); }
.player-card:hover { transform: scale(1.1) translateY(-10px) rotate(0deg) !important; z-index: 10; box-shadow: 0 20px 40px rgba(0,156,59,0.4); }
.card-inner { width: 100%; height: 100%; border-radius: 8px; overflow: hidden; background: #9fdce5; }
.card-inner img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

/* ── NUMBERS ── */
.numbers-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.num-card { display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.3s; }
.num-card:hover { transform: translateY(-5px); border-color: var(--verde); }
.num-val { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1; color: var(--amarelo); text-shadow: 0 0 20px rgba(255,223,0,0.4); }
.num-val .plus { font-size: 2.5rem; vertical-align: top; }
.num-label { font-family: var(--font-heading); font-size: 1.5rem; color: var(--branco); margin: 10px 0 5px; letter-spacing: 1px; }
.num-sub { font-size: 0.9rem; color: var(--text-muted); }

/* ── FEATURES ── */
.included-section { background: #050F08; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card { text-align: left; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--verde); }
.feature-icon { font-size: 2.5rem; color: var(--verde-light); margin-bottom: 16px; }
.feature-title { font-size: 1.5rem; margin-bottom: 10px; color: var(--branco); }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; }

/* ── TESTIMONIALS ── */
.ig-comments-wrapper { max-width: 620px; margin: 0 auto; text-align: left; padding: 28px; }
.ig-comment { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
.ig-comment:last-child { margin-bottom: 0; }
.ig-avatar { width: 38px; height: 38px; border-radius: 50%; background-color: var(--verde); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-family: var(--font-heading); font-size: 1rem; flex-shrink: 0; background-size: cover; background-position: center; }
.ig-content { flex-grow: 1; }
.ig-header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.ig-username { font-weight: 700; color: var(--branco); font-size: 0.95rem; }
.ig-time { color: var(--text-muted); font-size: 0.85rem; margin-left: 4px; }
.ig-text { color: var(--text-main); font-size: 0.96rem; line-height: 1.5; margin-bottom: 6px; }
.ig-actions { display: flex; gap: 15px; color: var(--text-muted); font-size: 0.8rem; font-weight: 600; }
.ig-actions span { cursor: pointer; }
.ig-actions span:hover { color: var(--branco); }
.ig-like { padding-top: 4px; cursor: pointer; color: var(--text-muted); transition: transform 0.2s; }
.ig-like:hover { transform: scale(1.15); }

/* ── PRICING ── */
.price-section { position: relative; overflow: hidden; background: linear-gradient(160deg, #03100A 0%, #05180D 100%); }
.price-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(255,223,0,0.12) 0%, transparent 70%);
  z-index: 0;
}
.pricing-card-wrapper { max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-card {
  border: 2px solid var(--amarelo);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.6) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 36px 32px;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.discount-badge { display: inline-block; background: #E00000; color: #fff; font-family: var(--font-heading); padding: 8px 16px; border-radius: 6px; font-size: 1.2rem; letter-spacing: 1px; margin-bottom: 20px; }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: 1.2rem; }
.price-main { font-family: var(--font-heading); color: var(--amarelo); margin-bottom: 5px; text-shadow: 0 0 25px rgba(255,223,0,0.5); }
.price-main .currency { font-size: 2rem; vertical-align: super; }
.price-main .amount { font-size: 7rem; line-height: 1; }
.price-main .cents { font-size: 2rem; vertical-align: super; }
.price-label { font-weight: 700; color: var(--branco); margin-bottom: 28px; letter-spacing: 1px; font-size: 1rem; }
.price-features { list-style: none; text-align: left; margin-bottom: 36px; }
.price-features li { margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; }
.price-features li i { margin-top: 4px; color: var(--verde-light); }

/* ── FAQ ── */
.faq-section { background: #050F08; }
.faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 16px; border: 1px solid rgba(0,156,59,0.2); border-radius: 12px; overflow: hidden; background: rgba(0,156,59,0.03); }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; background: transparent; border: none; color: var(--branco); font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: rgba(0,156,59,0.07); }
.faq-question i { color: var(--amarelo); transition: transform 0.3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 24px; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); line-height: 1.7; }

/* ── SOCIAL PROOF ── */
.social-proof-section { background: #030D06; padding: 100px 0; position: relative; overflow: hidden; }
.social-proof-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,156,59,0.06) 0%, transparent 70%); pointer-events: none; }
.social-proof-emoji { display: inline-block; font-size: 3.5rem; margin-bottom: 16px; animation: floatEmoji 3s ease-in-out infinite; }
@keyframes floatEmoji { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.proof-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.proof-card { position: relative; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid rgba(0,156,59,0.15); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.proof-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(0,156,59,0.15); border-color: rgba(0,156,59,0.4); }
.proof-card img { width: 100%; height: auto; display: block; border-radius: 15px; padding: 4px; }
.proof-trust-bar { display: flex; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.95rem; font-weight: 600; padding: 10px 20px; border-radius: 30px; background: rgba(0,156,59,0.04); border: 1px solid rgba(0,156,59,0.15); transition: all 0.3s; }
.trust-item:hover { border-color: var(--verde); color: var(--verde-light); background: rgba(0,156,59,0.08); }
.trust-item i { color: var(--verde-light); font-size: 1.1rem; }

/* ── FOOTER CTA ── */
.footer-cta {
  background: linear-gradient(rgba(3,16,10,0.93), rgba(3,16,10,0.93)), url('../images/messi-rbg_6p1Z.webp') center/cover;
  padding: 100px 0;
  text-align: center;
  border-top: 3px solid var(--amarelo);
  position: relative;
}
.footer-cta::after {
  content: '🇧🇷';
  position: absolute;
  font-size: 5rem;
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.footer-cta h2 { font-size: 3.5rem; margin-bottom: 20px; color: var(--branco); }
.footer-cta p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto; }

footer { padding: 30px 0; text-align: center; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.3rem; }
  .price-main .amount { font-size: 5rem; }
  .footer-cta h2 { font-size: 2.5rem; }
  .btn { font-size: 1.2rem; padding: 14px 24px; }
  .btn-large { font-size: 1.4rem; padding: 18px 28px; }
  .proof-gallery { grid-template-columns: 1fr; gap: 16px; max-width: 400px; }
  .proof-trust-bar { gap: 12px; }
  .trust-item { font-size: 0.8rem; padding: 8px 14px; }
  .moment-grid { grid-template-columns: 1fr; }
  .urgency-bar p { font-size: 1.1rem; }
}
