/* ============================================================
   FOOTWORK TENNIS LAB — LANDING PAGE CSS
   Premium Dark Sports Aesthetic
   ============================================================ */

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --neon: #39FF14;
  --neon-dark: #28CC0E;
  --neon-glow: rgba(57, 255, 20, 0.35);
  --neon-subtle: rgba(57, 255, 20, 0.12);
  --black: #000000;
  --bg-base: #080808;
  --bg-card: #0e0e0e;
  --bg-card-2: #141414;
  --bg-card-3: #1a1a1a;
  --border: rgba(255, 255, 255, 0.07);
  --border-neon: rgba(57, 255, 20, 0.3);
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.15);
  --placeholder-border: rgba(57, 255, 20, 0.4);
  --placeholder-bg: rgba(57, 255, 20, 0.04);

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-70);
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  text-align: center;
  margin-bottom: 0.75rem;
}

.highlight {
  color: var(--neon);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neon);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--neon-glow), 0 4px 20px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  border-radius: inherit;
}

.btn-primary:hover {
  background: #55ff30;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px var(--neon-glow), 0 8px 30px rgba(0,0,0,0.5);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-xl {
  font-size: 1.05rem;
  padding: 20px 48px;
  letter-spacing: 0.1em;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  border: 1.5px solid var(--white-15);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white-40);
  color: var(--white);
  background: var(--white-15);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px var(--neon-glow), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 60px var(--neon-glow), 0 0 100px rgba(57,255,20,0.2), 0 8px 30px rgba(0,0,0,0.5); }
}

.pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  border: 2px dashed var(--placeholder-border);
  background: var(--placeholder-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(57,255,20,0.02) 10px,
    rgba(57,255,20,0.02) 20px
  );
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--neon);
  opacity: 0.7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.placeholder-inner small {
  color: var(--white-40);
  font-size: 0.7rem;
  font-weight: 400;
}

/* When a real image is present, hide the placeholder styling */
.img-placeholder.has-image {
  border: none;
  background: transparent;
}

.img-placeholder.has-image::before {
  display: none;
}

/* CORREÇÃO 5 — Global: todas as imagens de mockup aparecem inteiras sem corte */
.img-placeholder.has-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: inherit;
  background: transparent;
}

/* CORREÇÃO 1 — Hero mockup: imagem inteira, sem corte */
.hero-placeholder.has-image img {
  object-fit: contain;
}

/* CORREÇÃO 2 — CTA final: imagem inteira, sem corte */
.final-cta-placeholder.has-image img {
  object-fit: contain;
}

/* CORREÇÃO 3 — Bônus: imagens inteiras, sem corte, fundo transparente */
.bonus-placeholder.has-image {
  border: none;
  background: transparent;
  aspect-ratio: unset;
  min-height: 140px;
  height: auto;
}

.bonus-placeholder.has-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

/* CORREÇÃO 4 — Carrossel: imagem inteira dentro do frame 9:16 */
.carousel-placeholder.has-image img {
  object-fit: contain;
}

/* CORREÇÃO 6 — Seção formato (imprimível + celular): imagens inteiras */
.format-placeholder.has-image img {
  object-fit: contain;
}

/* CORREÇÃO 3b — includes section */
.includes-placeholder.has-image img {
  object-fit: contain;
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--neon);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.5;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(57, 255, 20, 0.12) 0%, transparent 70%),
              var(--bg-base);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}

.hero-speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(57,255,20,0.05) 50%, transparent 100%);
  animation: speed-sweep 3s linear infinite;
  opacity: 0.5;
}

@keyframes speed-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-subtle);
  border: 1px solid var(--border-neon);
  color: var(--neon);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--white);
  max-width: 820px;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.7;
}

.hero-mockup {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.hero-placeholder {
  aspect-ratio: unset;
  width: 100%;
  max-width: 520px;
  min-height: 420px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-placeholder.has-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.02em;
}

.trust-badge svg {
  color: var(--neon);
}

.hero-small-text {
  font-size: 0.8rem;
  color: var(--white-40);
  letter-spacing: 0.03em;
}

/* ============================================================
   CAROUSEL SECTION
   ============================================================ */
.carousel-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.carousel-section .section-title {
  margin-bottom: 2.5rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto 2rem;
}

.carousel-track {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeSlide 0.4s ease;
}

.carousel-slide.active {
  display: flex;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(57,255,20,0.08), 0 10px 40px rgba(0,0,0,0.6);
}

.carousel-caption {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.02em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white-15);
  transition: var(--transition);
  cursor: default;
}

.carousel-dot.active {
  background: var(--neon);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--neon-glow);
}

.carousel-progress {
  height: 2px;
  background: var(--white-15);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  background: var(--neon);
  border-radius: 2px;
  width: 0%;
  transition: width 0.05s linear;
}

.carousel-footer-text {
  font-size: 0.9rem;
  color: var(--white-70);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   INCLUDES SECTION
   ============================================================ */
.includes-section {
  background: var(--bg-base);
}

.includes-section .section-title {
  text-align: left;
}

.includes-section .section-label {
  text-align: left;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 3rem;
}

.includes-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.include-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: var(--transition);
}

.include-category:hover {
  border-color: var(--border-neon);
  background: var(--bg-card-2);
}

.include-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.include-category-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.include-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--neon-subtle);
  border: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
}

.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.include-list li {
  font-size: 0.875rem;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--neon);
  font-weight: 700;
  font-size: 0.9rem;
}

.includes-image {
  position: relative;
}

.includes-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 60px rgba(57,255,20,0.1), 0 20px 60px rgba(0,0,0,0.6);
}

.includes-stat-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--neon);
  color: var(--black);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 0 30px var(--neon-glow);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ============================================================
   FORMAT SECTION
   ============================================================ */
.format-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.format-section .section-title {
  margin-bottom: 0.5rem;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 3rem;
}

.format-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.format-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(57,255,20,0.08);
}

.format-placeholder {
  aspect-ratio: 4/3;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed var(--placeholder-border);
}

.format-placeholder .placeholder-inner {
  padding: 30px;
}

.format-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-70);
}

.format-card-footer svg {
  color: var(--neon);
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  background: var(--bg-base);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(57,255,20,0.08), 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--neon-subtle);
  border: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  margin-bottom: 16px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
  background: rgba(57,255,20,0.2);
  box-shadow: 0 0 20px var(--neon-glow);
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */
.bonus-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-base) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.bonus-section .section-title {
  margin-bottom: 0.5rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.bonus-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
}

.bonus-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(57,255,20,0.08);
}

.bonus-number {
  background: var(--neon);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 6px;
}

.bonus-placeholder {
  aspect-ratio: 16/9;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed var(--placeholder-border);
}

.bonus-placeholder .placeholder-inner {
  padding: 20px;
}

.bonus-content {
  padding: 18px 20px;
}

.bonus-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.bonus-content p {
  font-size: 0.82rem;
  color: var(--white-70);
  margin-bottom: 10px;
}

.bonus-value {
  font-size: 0.8rem;
  color: var(--white-40);
}

.bonus-value s {
  color: var(--white-40);
}

.free-tag {
  color: var(--neon);
  font-weight: 700;
  margin-left: 4px;
}

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans-section {
  background: var(--bg-base);
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 3rem auto 0;
  align-items: stretch;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}

.plan-card.featured {
  border-color: var(--neon);
  background: var(--bg-card-2);
  box-shadow: 0 0 50px rgba(57,255,20,0.12);
}

.plan-badge-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--white-70);
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 6px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.plan-complete .price-amount {
  color: var(--neon);
}

.plan-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-old {
  font-size: 0.9rem;
  color: var(--white-40);
  text-decoration: line-through;
}

.savings-badge {
  display: inline-block;
  background: rgba(57,255,20,0.15);
  border: 1px solid var(--border-neon);
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  text-align: left;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-no {
  color: var(--white-40) !important;
  text-decoration: line-through;
}

.feature-no span {
  color: var(--white-40);
}

.plan-note {
  font-size: 0.78rem;
  color: var(--white-40);
  text-align: center;
}

/* ============================================================
   VALUE STACK SECTION
   ============================================================ */
.value-stack-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.value-table-wrap {
  max-width: 620px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-table {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--white-70);
  transition: var(--transition);
}

.value-row:hover {
  background: var(--white-15);
}

.value-row:last-child {
  border-bottom: none;
}

.value-item-price {
  color: var(--white-40);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.value-total-row {
  background: var(--bg-card-3);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.value-total-price {
  color: var(--white-40);
  font-size: 1.1rem;
}

.value-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.value-final-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.value-final-label {
  font-size: 0.85rem;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.value-final-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 30px var(--neon-glow);
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-section {
  background: var(--bg-base);
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(57,255,20,0.08);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 10% 50%, rgba(57,255,20,0.05) 0%, transparent 70%);
}

.guarantee-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--neon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--neon-subtle);
  box-shadow: 0 0 40px var(--neon-glow);
  position: relative;
  z-index: 1;
}

.guarantee-days {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
}

.guarantee-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--neon);
}

.guarantee-content {
  position: relative;
  z-index: 1;
}

.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.guarantee-content p {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.7;
}

.guarantee-small {
  margin-top: 12px;
  font-size: 0.85rem !important;
  color: var(--neon) !important;
  font-weight: 600;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.faq-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-neon);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--neon);
}

.faq-question.active {
  color: var(--neon);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  background: var(--bg-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 700px;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: var(--white-70);
}

.final-cta-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 60px rgba(57,255,20,0.1), 0 20px 60px rgba(0,0,0,0.6);
}

.final-small-text {
  font-size: 0.8rem;
  color: var(--white-40);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo svg {
  color: var(--neon);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--white-40);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--neon);
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--white-40);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--white-40);
}

/* ============================================================
   UPGRADE POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 80px rgba(57,255,20,0.15), 0 30px 80px rgba(0,0,0,0.8);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition-slow);
}

.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white-15);
  border: none;
  color: var(--white-70);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  background: var(--white-40);
  color: var(--white);
}

.popup-badge {
  display: inline-block;
  background: rgba(57,255,20,0.15);
  border: 1px solid var(--border-neon);
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.popup-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.popup-price {
  color: var(--neon);
}

.popup-text {
  font-size: 0.9rem;
  color: var(--white-70);
  margin-bottom: 24px;
  line-height: 1.6;
}

.popup-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.popup-col {
  background: var(--bg-card-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.popup-col-featured {
  border-color: var(--neon);
  background: var(--neon-subtle);
  box-shadow: 0 0 20px rgba(57,255,20,0.1);
}

.popup-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: 6px;
}

.popup-col-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.popup-col-price.neon {
  color: var(--neon);
}

.popup-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.popup-col ul li {
  font-size: 0.78rem;
  color: var(--white-70);
}

.popup-col ul li.no {
  color: var(--white-40);
  text-decoration: line-through;
}

.popup-vs {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white-40);
  text-align: center;
}

.popup-skip {
  width: 100%;
  background: none;
  border: none;
  color: var(--white-40);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 10px;
  margin-top: 8px;
  transition: var(--transition);
  font-family: var(--font-body);
}

.popup-skip:hover {
  color: var(--white-70);
  text-decoration: underline;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }

  .includes-image {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }

  .hero { padding: 100px 0 60px; }

  .hero-headline {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .popup-comparison {
    grid-template-columns: 1fr;
  }

  .popup-vs { display: none; }

  .guarantee-card {
    padding: 30px 20px;
  }

  .includes-section .section-title,
  .includes-section .section-label {
    text-align: center;
  }
}

/* ============================================================
   PLAN COMPLETE — PRODUCT IMAGE
   ============================================================ */
.plan-complete-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 0 16px;
  padding-top: 12px;
}

.plan-complete-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 30px rgba(57,255,20,0.18));
}

.plan-complete-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .plan-complete-image {
    margin: 0 0 14px;
  }

  .plan-complete-image img {
    max-width: 220px;
  }
}

/* ============================================================
   CORREÇÃO 4 — Global: todas imagens com fundo transparente
   ============================================================ */
.img-placeholder.has-image {
  border: none;
  background: transparent;
}

.img-placeholder.has-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: inherit;
}

/* ============================================================
   POPUP UPSELL — MOBILE FIX (CORRIGIDO DEFINITIVAMENTE)
   ============================================================ */
@media (max-width: 768px) {
  .popup-overlay {
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
  }

  .popup-card {
    width: 100%;
    max-width: 92vw;
    max-height: 88vh;
    padding: 18px 16px 16px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .popup-badge {
    font-size: 0.68rem;
    padding: 6px 12px;
    width: fit-content;
  }

  .popup-card .popup-title,
  .popup-card h3 {
    font-size: 1.25rem;
    line-height: 1.12;
    margin-bottom: 6px;
  }

  .popup-card .popup-text,
  .popup-card p {
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .popup-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 8px 0 10px;
  }

  .popup-vs {
    display: none;
  }

  .popup-col {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .popup-col-label {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .popup-col-price {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 8px;
  }

  .popup-col ul {
    gap: 4px;
  }

  .popup-col li {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .popup-card .btn-primary {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    font-size: 0.78rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    margin-top: 4px;
  }

  .popup-skip {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 6px;
    padding: 8px 0 2px;
    font-size: 0.78rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.55);
  }

  .popup-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 390px) {
  .popup-card {
    max-height: 86vh;
    padding: 16px 14px 14px;
    gap: 8px;
  }

  .popup-card .popup-title,
  .popup-card h3 {
    font-size: 1.12rem;
  }

  .popup-card .popup-text,
  .popup-card p {
    font-size: 0.78rem;
  }

  .popup-col {
    padding: 10px 12px;
  }

  .popup-col-price {
    font-size: 1.35rem;
  }

  .popup-card .btn-primary {
    min-height: 50px;
    font-size: 0.72rem;
  }

  .popup-skip {
    font-size: 0.72rem;
  }
}
