/* ==========================================================================
   NINJA KEYS — DESIGN SYSTEM & HIGH-CONVERSION LANDING PAGE STYLES
   Color Palette:
   - Base Dark: #0A0A0A
   - Card Dark: #121212
   - Surface Dark: #1E1E1E
   - Action Red: #E10600 / #FF1E1E
   - Pure White: #FFFFFF
   - Text Muted: #A0A0A0
   - Success Green: #10B981
   ========================================================================== */

:root {
  --bg-dark: #0A0A0A;
  --card-dark: #121212;
  --surface-dark: #1A1A1A;
  --border-dark: #262626;
  --action-red: #E10600;
  --action-red-hover: #FF1E1E;
  --action-red-glow: rgba(225, 6, 0, 0.35);
  --text-white: #FFFFFF;
  --text-muted: #A0A0A0;
  --text-dim: #666666;
  --success-green: #10B981;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  padding-top: 40px; /* Space for fixed urgency bar */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-red { color: var(--action-red-hover); }
.text-highlight {
  color: var(--action-red-hover);
  background: linear-gradient(90deg, #FF1E1E 0%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   URGENCY TOP BAR
   ========================================================================== */
.desktop-only { display: inline; }
.mobile-only { display: none; }

.urgency-bar {
  background-color: var(--action-red);
  color: var(--text-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.urgency-bar.scroll-hidden {
  transform: translateY(-100%);
}

.urgency-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.urgency-timer-box {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  body {
    padding-top: 36px;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline !important;
  }
  .urgency-bar {
    padding: 7px 10px;
    font-size: 0.86rem;
  }
  .urgency-content {
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .urgency-timer-box {
    padding: 2px 7px;
    font-size: 0.90rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 48px 0 60px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(225, 6, 0, 0.12) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-brand-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 0 20px 0;
  width: 100%;
}

.hero-brand-logo {
  height: 90px;
  width: auto;
  max-width: 480px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .hero-brand-logo-wrapper {
    margin: 2px 0 16px 0;
  }
  .hero-brand-logo {
    height: 60px;
    max-width: 320px;
  }
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-subheadline strong {
  color: var(--text-white);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin-bottom: 48px;
}

/* BUTTON STYLES */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-align: center;
}

.primary-cta {
  background-color: var(--action-red);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--action-red-glow);
}

.primary-cta:hover {
  background-color: var(--action-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 30, 30, 0.45);
}

.primary-cta:active {
  transform: scale(0.97);
}

.outline-cta {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}

.outline-cta:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.pulse-button {
  animation: subtle-pulse 2.5s infinite;
}

@keyframes subtle-pulse {
  0% { box-shadow: 0 0 0 0 var(--action-red-glow); }
  70% { box-shadow: 0 0 0 14px rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}

.microcopy-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* HERO VISUAL IMAGE (Clean Transparent Display) */
.hero-visual {
  width: 100%;
  max-width: 760px;
  margin: 28px 0 44px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.hero-main-img:hover {
  transform: translateY(-4px);
}

/* FLOATING 3D BACKGROUND DECORATIONS */
.decorative-bg-section {
  position: relative;
  overflow: hidden;
}

.decorative-bg-section .container {
  position: relative;
  z-index: 2;
}

.floating-bg-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
  user-select: none;
  -webkit-user-drag: none;
}

.bg-decor-right {
  right: 2%;
  top: 5%;
  width: 420px;
  max-width: 45vw;
  transform: rotate(10deg);
  animation: float-slow-right 7s ease-in-out infinite alternate;
}

.bg-decor-left {
  left: 2%;
  top: 8%;
  width: 420px;
  max-width: 45vw;
  transform: rotate(-10deg);
  animation: float-slow-left 8s ease-in-out infinite alternate;
}

@keyframes float-slow-right {
  0% { transform: translateY(0px) rotate(10deg); }
  100% { transform: translateY(-24px) rotate(5deg); }
}

@keyframes float-slow-left {
  0% { transform: translateY(0px) rotate(-10deg); }
  100% { transform: translateY(-24px) rotate(-5deg); }
}

@media (max-width: 768px) {
  .hero-visual {
    margin: 20px 0 40px 0;
    width: 100%;
    overflow: visible;
  }
  .hero-main-img {
    width: 100%;
    max-width: 100%;
    transform: scale(1.22);
  }
  .floating-bg-decor {
    opacity: 0.35;
    width: 240px;
  }
  .bg-decor-right { right: -20px; top: 2%; }
  .bg-decor-left { left: -20px; top: 4%; }
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   SEÇÃO 2 — COMPARATIVO DE CUSTO
   ========================================================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.comparison-card {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
}

.comparison-card.ninja-featured {
  background: #141414;
  border: 2px solid var(--action-red);
  box-shadow: 0 8px 30px rgba(225, 6, 0, 0.15);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.tag-neutral {
  background: #262626;
  color: var(--text-muted);
}

.tag-red {
  background: var(--action-red);
  color: var(--text-white);
}

.comparison-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-big {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-total-cost {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.equivalent-monthly {
  background: rgba(225, 6, 0, 0.15);
  border: 1px dashed var(--action-red);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin: 12px 0;
  display: inline-block;
}

.savings-highlight {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin: 16px 0;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.comp-list {
  list-style: none;
  margin-top: 20px;
}

.comp-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--action-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 15px var(--action-red-glow);
}

.mini-comp-footer {
  background: var(--surface-dark);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mini-comp-footer strong { color: var(--text-white); }

/* ==========================================================================
   SEÇÃO 3 — O QUE VOCÊ RECEBE
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-box {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: #333333;
}

.feature-icon-wrapper {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
  background: var(--surface-dark);
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO PRO FEATURES STACK (DETALHAMENTO GOOGLE AI PRO)
   ========================================================================== */
.pro-features-stack-section {
  background: radial-gradient(circle at 50% 0%, rgba(225, 6, 0, 0.08) 0%, transparent 65%);
}

.stack-badge {
  display: inline-block;
  background: rgba(225, 6, 0, 0.15);
  color: var(--action-red-hover);
  border: 1px solid rgba(225, 6, 0, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.pro-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pro-stack-card {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pro-stack-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-3px);
}

.pro-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 14px;
}

.pro-icon {
  font-size: 1.8rem;
}

.pro-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-white);
}

.pro-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pro-item-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pro-item-list li strong {
  color: var(--action-red-hover);
  font-size: 1rem;
}

.pro-item-list li span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO 4 — DEPOIMENTOS WHATSAPP (CARROSSEL)
   ========================================================================== */
.whatsapp-badge-wrapper {
  margin-bottom: 12px;
}

.whatsapp-badge {
  display: inline-block;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.rating-summary {
  margin-bottom: 32px;
}

.stars { font-size: 1.2rem; margin-right: 8px; }
.rating-score { font-weight: 700; font-size: 1.1rem; margin-right: 8px; }
.rating-count { color: var(--text-muted); font-size: 0.9rem; }

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.testimonials-carousel {
  width: 100%;
  position: relative;
  border-radius: 16px;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(35px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.whatsapp-img-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  max-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 20px;
}

.whatsapp-testimonial-img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.whatsapp-img-container:hover .whatsapp-testimonial-img {
  transform: scale(1.02);
}

/* CAROUSEL CONTROLS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: -22px; }
.next-btn { right: -22px; }

@media (max-width: 768px) {
  .prev-btn { left: 8px; }
  .next-btn { right: 8px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-item.active {
  background: var(--action-red);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--action-red-glow);
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 92%;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(37, 211, 102, 0.3);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--action-red-hover);
}

/* ==========================================================================
   SEÇÃO 5 — STACK DE VALOR
   ========================================================================== */
.receipt-box {
  background: #0E0E0E;
  border: 1px dashed #333333;
  border-radius: 12px;
  padding: 32px 24px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.receipt-header {
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.receipt-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.receipt-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.receipt-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.old-val {
  text-decoration: line-through;
  color: #666666;
}

.strikethrough-red {
  color: #FF4D4D !important;
  text-decoration: line-through !important;
  font-weight: 600;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.text-green-accent {
  color: #10B981 !important;
  font-weight: 800;
}

.free-val {
  color: var(--success-green);
  font-weight: bold;
}

@media (max-width: 767px) {
  .receipt-box {
    padding: 24px 14px;
  }
  .receipt-items {
    font-size: 0.84rem;
    gap: 12px;
  }
  .strikethrough-red {
    font-size: 0.84rem;
  }
}

.receipt-divider {
  border-top: 2px dashed #333333;
  margin: 24px 0;
}

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

.total-label {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.offer-prefix { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--action-red-hover);
  line-height: 1;
}
.offer-suffix { font-size: 0.85rem; color: var(--text-dim); }

/* ==========================================================================
   SEÇÃO 6 — PLANOS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.featured-plan {
  background: #141414;
  border: 2px solid var(--action-red);
  box-shadow: 0 0 35px rgba(225, 6, 0, 0.25);
  transform: scale(1.02);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--action-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px var(--action-red-glow);
}

.plan-header {
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-price-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.currency { font-size: 1.5rem; font-weight: 700; margin-top: 6px; }
.main-price { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; }

.plan-monthly-calc {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 10px;
}

.plan-savings-badge {
  margin-top: 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  display: inline-block;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.plan-savings-badge.neutral {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
}

.plan-benefits {
  list-style: none;
  margin-bottom: 32px;
}

.plan-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-benefits li strong { color: var(--text-white); }
.plan-benefits li em { color: var(--action-red-hover); font-style: normal; }

.full-width { width: 100%; }

.plan-trust-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   GARANTIA
   ========================================================================== */
.guarantee-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.guarantee-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(225, 6, 0, 0.25));
}

.guarantee-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.guarantee-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.guarantee-section p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO 7 — FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--action-red-hover);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO 8 — CTA FINAL
   ========================================================================== */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #150000 100%);
}

.final-headline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.final-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.big-cta {
  max-width: 460px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.scarcity-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--action-red-hover);
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 32px 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-dark);
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 0.75rem;
}

/* ==========================================================================
   STICKY MOBILE FOOTER BAR
   ========================================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--action-red);
  z-index: 999;
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}

.sticky-mobile-bar.visible {
  transform: translateY(0);
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sticky-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-white);
}

.sticky-price small {
  font-size: 0.75rem;
  color: var(--action-red-hover);
}

.sticky-btn {
  background: var(--action-red);
  color: var(--text-white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--action-red-glow);
}

.sticky-btn:active {
  transform: scale(0.96);
}

/* ==========================================================================
   MEDIA QUERIES (DESKTOP EXTENSIONS)
   ========================================================================== */
@media (min-width: 768px) {
  body { padding-top: 36px; }

  .hero-title { font-size: 3.5rem; }
  .hero-subheadline { font-size: 1.2rem; }

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

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .plan-card.featured-plan {
    order: 1;
  }
  .plan-card.standard-plan {
    order: 2;
  }

  .sticky-mobile-bar {
    display: none; /* Mobile only */
  }
}

/* ==========================================================================
   SEÇÃO DE CONTATO E SUPORTE (LIMPA E DIRETA)
   ========================================================================== */
.contact-support-section {
  background: radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.08) 0%, transparent 75%);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.wa-direct-button {
  background: #25D366;
  color: #0B141A;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: max-content;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.wa-direct-button:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #000;
}
