/* ============================================
   FANTA SENSI — Estilo botvendasdiscord em LARANJA
   Paleta: tons de laranja (1ª) · branco (2ª) · preto (3ª)
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Preto (terciária) */
  --color-black: #0a0a0a;
  --color-dark-gray: #111111;
  --color-darker: #161311;

  /* Tons de laranja (primária) */
  --o-50:  #fff3e6;
  --o-100: #ffd9b0;
  --o-200: #ffb347;
  --o-300: #ff9220;
  --o-400: #ff7a00;   /* principal */
  --o-500: #ff5e00;
  --o-600: #e85d00;
  --o-700: #cc4e00;
  --color-orange: #ff7a00;
  --color-orange-dark: #e85d00;

  /* Branco (secundária) + neutros */
  --color-white: #ffffff;
  --color-light-gray: #b8b0a8;
  --color-gray: #7a736c;

  --grad: linear-gradient(135deg, var(--o-300), var(--o-600));
  --grad-text: linear-gradient(135deg, var(--o-200), var(--o-500));
  --shadow-glow: 0 0 30px rgba(255, 122, 0, 0.30);
  --shadow-glow-strong: 0 0 50px rgba(255, 122, 0, 0.50);
  --transition: all 0.2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

.container, .section { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.orange { color: var(--o-400); }
.red { color: var(--o-500); text-shadow: 0 0 18px rgba(255,94,0,.5); }
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ TÍTULOS ============ */
.title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad);
  color: var(--color-white);
  font-weight: 700; font-size: 16px;
  padding: 16px 32px;
  border: none; border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255, 94, 0, 0.25);
}
.btn:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: var(--shadow-glow-strong); }
.btn:focus-visible { outline: 2px solid var(--color-white); outline-offset: 2px; }
.btn--lg { padding: 20px 44px; font-size: 18px; margin: 40px auto 0; display: flex; width: fit-content; }
.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--full { width: 100%; margin-top: 22px; padding: 16px; }
.btn--pulse { animation: pulseGlow 2.4s infinite; }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 8px 24px rgba(255,94,0,.3); }
  50% { box-shadow: 0 8px 44px rgba(255,122,0,.75); }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--grad); color: #1a0d00; font-weight: 800;
  overflow: hidden; white-space: nowrap; padding: 9px 0;
  font-size: 13px; letter-spacing: .5px;
}
.ticker__track { display: inline-flex; gap: 48px; animation: scroll-x 24s linear infinite; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 16px clamp(20px, 4vw, 40px);
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--transition);
}
.header--scrolled { border-bottom-color: rgba(255,122,0,.3); box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.brand { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 900; }
.brand__mark { filter: drop-shadow(0 0 8px rgba(255,122,0,.7)); }
.brand__name strong { color: var(--o-400); }
.nav { display: flex; gap: 35px; }
.nav a { color: var(--color-light-gray); font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav a:hover { color: var(--color-white); }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 130px 20px 110px;
  text-align: center; overflow: hidden; background: var(--color-black);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,122,0,.16) 0%, transparent 55%),
    radial-gradient(800px 800px at 50% 0, rgba(255,94,0,.10) 0%, transparent 70%);
}
.hero__glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.14) 0%, transparent 70%); pointer-events: none; }
.hero__content { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  background: rgba(255,122,0,.1); border: 1px solid rgba(255,122,0,.3);
  color: var(--o-300); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 8px 18px; border-radius: 20px;
}
.hero__title { font-size: clamp(40px, 7vw, 72px); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
.hero__sub { margin: 26px auto 0; max-width: 560px; font-size: 18px; color: var(--color-light-gray); line-height: 1.7; }
.hero__sub strong { color: var(--o-300); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.hero__badges span {
  font-size: 13px; font-weight: 500; color: var(--color-light-gray);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  padding: 8px 16px; border-radius: 999px;
}

/* ============ SECTIONS BASE ============ */
.section { padding-top: 100px; padding-bottom: 100px; }

/* ============ VÍDEO ============ */
.video { text-align: center; }
.video__frame {
  max-width: 760px; margin: 0 auto; aspect-ratio: 16/8;
  background: #0c0a08; border: 1px solid rgba(255,122,0,.25); border-radius: 16px;
  display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), var(--shadow-glow);
}
.video__cta {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; border: none; cursor: pointer;
  padding: 28px 56px; border-radius: 12px; font-weight: 800; font-size: 16px;
  letter-spacing: .04em; transition: var(--transition); box-shadow: var(--shadow-glow-strong);
}
.video__cta:hover { transform: scale(1.04); }
.video__icon { font-size: 38px; }
.video__player { position: absolute; inset: 0; }
.video__placeholder { width: 100%; height: 100%; display: grid; place-items: center;
  color: var(--o-300); font-weight: 800; font-size: 22px; background: radial-gradient(circle, #1a1008, #000); }

/* ============ CAROUSEL ============ */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
  padding: 8px 4px 22px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__nav { position: absolute; top: 42%; z-index: 5; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff; border: none; cursor: pointer; font-size: 24px; font-weight: 900;
  display: grid; place-items: center; box-shadow: var(--shadow-glow); transition: var(--transition); }
.carousel__nav:hover { transform: scale(1.1); }
.carousel__nav--prev { left: -8px; } .carousel__nav--next { right: -8px; }

.player-card {
  flex: 0 0 210px; scroll-snap-align: start; border-radius: 16px; overflow: hidden;
  background: var(--color-black); border: 1px solid rgba(255,255,255,.06);
  text-align: center; padding-bottom: 16px; transition: var(--transition);
}
.player-card:hover { transform: translateY(-6px); border-color: rgba(255,122,0,.35); box-shadow: var(--shadow-glow); }
.player-card__img { height: 230px; position: relative; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(255,122,0,.28), transparent 60%), linear-gradient(160deg, var(--o-700), #1a0f06); }
.player-card__img::before { content: "🎮"; font-size: 58px; filter: drop-shadow(0 0 10px rgba(0,0,0,.5)); }
.player-card__img::after { content: "FANTA SENSI"; position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; color: #fff; background: rgba(0,0,0,.45); padding: 4px 8px; border-radius: 6px; }
.player-card h3 { margin-top: 14px; font-size: 17px; font-weight: 800; }

.content-card { flex: 0 0 230px; scroll-snap-align: start; border-radius: 16px; overflow: hidden;
  background: var(--color-dark-gray); border: 1px solid rgba(255,255,255,.06); text-align: center; padding-bottom: 18px; transition: var(--transition); }
.content-card:hover { transform: translateY(-6px); border-color: rgba(255,122,0,.35); box-shadow: var(--shadow-glow); }
.content-card__img { height: 150px; display: grid; place-items: center; font-size: 52px;
  background: radial-gradient(circle, rgba(255,122,0,.18), transparent 70%); }
.content-card h3 { font-size: 17px; font-weight: 800; padding: 0 12px; }
.content-card h3 span { color: var(--o-300); }

/* ============ BENEFÍCIOS / GRID CARDS ============ */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: var(--color-dark-gray); border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 38px 24px; text-align: center; transition: var(--transition);
}
.benefit:hover { transform: translateY(-5px); border-color: rgba(255,122,0,.35); box-shadow: var(--shadow-glow); }
.benefit__ico {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(255,122,0,.1); display: grid; place-items: center; font-size: 34px;
}
.benefit h3 { font-size: 18px; font-weight: 700; }

/* ============ STOP ============ */
.stop { text-align: center; }
.stop__sign { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.stop__diamond { width: 140px; height: 140px; background: var(--o-300); transform: rotate(45deg);
  border: 6px solid #161311; border-radius: 18px; display: grid; place-items: center; box-shadow: var(--shadow-glow-strong); }
.stop__diamond span { transform: rotate(-45deg); font-size: 30px; font-weight: 900; color: #1a0d00; }
.stop__text { font-size: clamp(34px, 6vw, 64px); font-weight: 900; line-height: .98; letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(255,122,0,.35); }
.stop__sub { font-size: clamp(22px, 4vw, 36px); font-weight: 900; margin: 44px 0; letter-spacing: -0.01em; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 740px; margin: 0 auto; }
.compare__label { font-size: 24px; font-weight: 800; display: block; margin-bottom: 14px; }
.compare__label--before { color: var(--o-200); } .compare__label--after { color: var(--o-500); }
.compare__img { aspect-ratio: 1; border-radius: 16px; display: grid; place-items: center; font-size: 22px; font-weight: 800; }
.compare__img--before { background: linear-gradient(160deg,#2a2a2a,#141414); border: 1px solid rgba(255,255,255,.08); color: #888; }
.compare__img--after { background: linear-gradient(160deg, var(--o-600), #1a0f06); border: 1px solid rgba(255,122,0,.4); box-shadow: var(--shadow-glow); color: #fff; }

/* ============ STATS ============ */
.stats { text-align: center; }
.stats__num { font-size: clamp(80px, 16vw, 160px); font-weight: 900; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(255,122,0,.4)); }
.stars { color: var(--o-300); font-size: 36px; letter-spacing: 6px; margin: 6px 0; }
.stats__txt { font-size: clamp(18px, 3vw, 24px); font-weight: 800; }

/* ============ BÔNUS ============ */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.bonus { display: flex; gap: 16px; align-items: flex-start; background: var(--color-dark-gray);
  border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 22px; transition: var(--transition); }
.bonus:hover { border-color: rgba(255,122,0,.35); transform: translateY(-3px); }
.bonus__av { font-size: 26px; width: 48px; height: 48px; border-radius: 10px; background: rgba(255,122,0,.1);
  display: grid; place-items: center; flex-shrink: 0; }
.bonus strong { color: var(--color-white); font-size: 15px; }
.bonus p { font-size: 13px; color: var(--color-light-gray); margin-top: 5px; line-height: 1.5; }

/* ============ GARANTIA ============ */
.guarantee { display: flex; justify-content: center; }
.guarantee__inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center;
  background: var(--color-black); border: 1px solid rgba(255,122,0,.2); border-radius: 24px; padding: 50px 60px; }
.guarantee__title { font-size: clamp(32px,5vw,52px); font-weight: 900; line-height: 1.05; }
.guarantee__seal { width: 160px; height: 160px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: 74px; font-weight: 900; box-shadow: var(--shadow-glow-strong);
  border: 6px dashed rgba(255,255,255,.25); }
.guarantee__txt { max-width: 280px; color: var(--color-light-gray); font-size: 16px; }
.guarantee__txt strong { color: var(--color-white); }

/* ============ MARQUEE ============ */
.brands { padding: 70px 0; text-align: center; }
.marquee { overflow: hidden; background: var(--grad); padding: 18px 0; margin-top: 36px; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 50px; animation: scroll-x 28s linear infinite; }
.marquee__track span { font-weight: 900; color: #1a0d00; font-size: 22px; letter-spacing: .5px; }

/* ============ PLANOS ============ */
.pricing { text-align: center; }
.tier-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  padding: 9px 20px; border-radius: 20px; margin-bottom: 44px; }
.tier-badge--platina { color: var(--o-200); background: rgba(255,122,0,.08); border: 1px solid rgba(255,122,0,.25); }
.tier-badge--vip { color: var(--o-400); background: rgba(255,122,0,.12); border: 1px solid rgba(255,122,0,.35); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan { background: var(--color-dark-gray); border: 1px solid rgba(255,255,255,.06); border-radius: 20px;
  padding: 34px 28px; text-align: left; display: flex; flex-direction: column; transition: var(--transition); }
.plan:hover { transform: translateY(-6px); border-color: rgba(255,122,0,.35); box-shadow: var(--shadow-glow); }
.plan--vip { border-color: rgba(255,122,0,.25); }
.plan__name { font-size: 22px; font-weight: 900; text-align: center; margin-bottom: 20px; }
.plan__list { list-style: none; flex: 1; }
.plan__list li { font-size: 13.5px; color: var(--color-light-gray); padding: 9px 0 9px 26px; position: relative; border-bottom: 1px solid rgba(255,255,255,.05); }
.plan__list li::before { content: "✓"; color: var(--o-300); font-weight: 900; position: absolute; left: 0; }
.plan__price { text-align: center; margin-top: 24px; }
.plan__price s { display: block; color: var(--color-gray); font-size: 15px; }
.plan__price strong { font-size: 44px; font-weight: 900; color: var(--o-400); }
.pack-title { font-size: clamp(28px,5vw,44px); font-weight: 900; margin: 64px 0 28px; }
.plan--pack, .plan--perm { max-width: 540px; margin: 0 auto; border-color: rgba(255,122,0,.4); box-shadow: var(--shadow-glow); }
.plan__tag { font-size: 15px; font-weight: 800; color: var(--o-300); text-align: center; margin-bottom: 18px; }

/* ============ STEPS ============ */
.steps { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 20px; align-items: flex-start; background: var(--color-dark-gray);
  border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 24px; transition: var(--transition); }
.step:hover { border-color: rgba(255,122,0,.3); }
.step__n { font-size: 22px; font-weight: 900; color: #fff; background: var(--grad); width: 52px; height: 52px;
  border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-glow); }
.step h3 { font-size: 16px; font-weight: 700; }
.step p { font-size: 14px; color: var(--color-light-gray); margin-top: 5px; }

/* ============ DÚVIDAS ============ */
.doubts { text-align: center; }
.whats { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; padding: 36px 56px;
  border-radius: 24px; background: var(--color-black); border: 1px solid rgba(255,122,0,.2); transition: var(--transition); }
.whats:hover { transform: scale(1.03); border-color: rgba(255,122,0,.45); box-shadow: var(--shadow-glow); }
.whats__ico { font-size: 56px; filter: drop-shadow(0 0 16px rgba(255,122,0,.4)); }
.whats__cta { font-size: 26px; font-weight: 900; color: var(--o-300); }
.whats__sub { font-size: 13px; color: var(--color-light-gray); letter-spacing: .04em; }

/* ============ FAQ ============ */
.faq { max-width: 900px; margin: 0 auto; }
.accordion { display: flex; flex-direction: column; gap: 15px; }
.acc { background: var(--color-dark-gray); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; }
.acc summary { list-style: none; cursor: pointer; padding: 22px 28px; font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: var(--transition); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--o-300); }
.acc__plus { font-size: 24px; font-weight: 800; color: var(--o-300); transition: var(--transition); }
.acc[open] .acc__plus { transform: rotate(45deg); }
.acc__body { padding: 0 28px 24px; color: var(--color-light-gray); font-size: 15px; line-height: 1.7; }

/* ============ FOOTER ============ */
.footer { background: var(--color-black); border-top: 1px solid rgba(255,255,255,.05); padding: 48px 20px 32px; text-align: center; }
.footer__brand { display: inline-flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 900; margin-bottom: 18px; }
.footer__brand strong { color: var(--o-400); }
.footer__nav { display: flex; gap: 26px; justify-content: center; margin-bottom: 18px; }
.footer__nav a { color: var(--color-light-gray); font-size: 14px; transition: var(--transition); }
.footer__nav a:hover { color: var(--o-300); }
.footer__copy { color: var(--color-gray); font-size: 13px; }

/* ============ FLOAT CTA ============ */
.float-cta { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 900;
  background: var(--grad); color: #fff; font-weight: 800; padding: 14px 28px; border-radius: 999px;
  font-size: 16px; box-shadow: 0 10px 30px rgba(255,94,0,.5); animation: pulseGlow 2.6s infinite; }
.float-cta:hover { filter: brightness(1.1); }

/* ============ SCROLL ANIMATION ============ */
.section, .benefit, .plan, .bonus { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .section, .benefit, .plan, .bonus { opacity: 1; transform: none; transition: none; }
  .btn--pulse, .float-cta, .ticker__track, .marquee__track { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav { display: none; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .container, .section { padding-left: 22px; padding-right: 22px; }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .hero { padding: 90px 18px 80px; }
  .guarantee__inner { padding: 36px 28px; gap: 28px; }
  .float-cta { font-size: 14px; padding: 12px 22px; }
}
