/* ══════════════════════════════════════════════════════
   MISSÃO 30 DIAS ESA 2026 — Landing Page
   Design: Dark mode tático (#18181B bg, #FACC15 CTA)
   ══════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #18181B;
  --bg-surface:  #27272A;
  --bg-card:     #1E1E22;
  --bg-card-alt: #2A2A2E;
  --yellow:      #FACC15;
  --yellow-hover:#FDE047;
  --green:       #2A3B2C;
  --green-light: #3D5A3D;
  --red:         #DC2626;
  --red-light:   #FCA5A5;
  --text:        #F4F4F5;
  --text-dim:    #A1A1AA;
  --text-muted:  #71717A;
  --border:      #3F3F46;
  --radius:      8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --transition:  all 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; }
strong { color: var(--text); font-weight: 700; }
em { font-style: italic; }
s { color: var(--text-muted); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.1rem; }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: pulse-bar 3s ease-in-out infinite;
}

@keyframes pulse-bar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
  background-color: #0F0F12;
  background-image: 
    linear-gradient(180deg, rgba(24, 24, 27, 0.7) 0%, var(--bg) 100%),
    url('images/background_hero.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
}

.badge {
  display: inline-block;
  background: var(--green);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--green-light);
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--text);
}

.subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ── COUNTDOWN ── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.countdown-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  min-width: 60px;
  text-align: center;
}

.countdown-item span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--yellow);
}

.countdown-item small {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #18181B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(250, 204, 21, 0.4);
}

.btn-large {
  font-size: 1.1rem;
  padding: 18px 40px;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.guarantee-mini {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.proof-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.proof-item {
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--yellow);
}

.proof-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--bg-card);
}

.section-tag {
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.section-lead {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ── PAIN CARDS ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pain-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── METHOD CARD ── */
.method-card {
  background: var(--bg-surface);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.method-badge {
  display: inline-block;
  background: var(--green);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.method-card p {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

/* ── INCLUDES GRID ── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 2rem;
}

.include-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}

.include-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.include-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.include-card h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.include-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.include-value {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── TOTAL VALUE ── */
.total-value {
  text-align: center;
  background: radial-gradient(circle at top, var(--bg-surface) 0%, var(--bg-card) 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  margin-top: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 2px 20px rgba(250, 204, 21, 0.05);
}

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

.total-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
}

.total-price span {
  font-size: 2rem;
  color: var(--yellow);
}

.total-discount {
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
  margin-top: 4px;
}

/* ── COMPARE TABLE ── */
.compare-table {
  max-width: 700px;
  margin: 0 auto;
}

.compare-header, .compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.compare-header {
  margin-bottom: 2px;
}

.compare-header .compare-col {
  background: var(--bg-surface);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 10px;
  text-align: center;
  border-radius: var(--radius) var(--radius) 0 0;
}

.compare-row .compare-col {
  background: var(--bg-card);
  font-size: 0.85rem;
  padding: 10px;
  text-align: center;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.compare-bad { color: var(--red-light) !important; }
.compare-good { color: var(--yellow) !important; font-weight: 600; }

/* ── CTA SECTION ── */
.section-cta {
  background: linear-gradient(180deg, var(--bg) 0%, #0F0F12 100%);
  padding: 4rem 0;
}

.cta-box {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.cta-price {
  margin: 1.5rem 0;
}

.cta-old {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.cta-current {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--yellow);
  display: block;
}

.cta-installment {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: block;
  margin-top: 4px;
}

.cta-extras {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── ORDER BUMP ── */
.order-bump {
  background: var(--bg-surface);
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-top: 1.5rem;
  text-align: left;
}

.bump-header {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.bump-check {
  font-size: 1.2rem;
}

.bump-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.cta-urgency {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-list {
  max-width: 650px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary:hover {
  color: var(--yellow);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 18px 14px;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.section-cta-final {
  text-align: center;
  padding: 4rem 0;
  background: var(--green);
}

.section-cta-final h2 {
  color: var(--yellow);
}

.section-cta-final p {
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ── */
.footer {
  background: #0F0F12;
  padding: 2rem 0;
  text-align: center;
}

.disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pain-card-full {
    grid-column: 1 / -1;
  }
  .includes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .includes-grid .include-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .hero { padding: 5rem 0 4rem; }
  .section { padding: 5rem 0; }
  .includes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .includes-grid .include-card:nth-child(4),
  .includes-grid .include-card:nth-child(5) {
    grid-column: auto;
  }
  .includes-grid .include-card:last-child {
    grid-column: auto;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero .subtitle, .badge, .countdown {
  animation: fadeInUp 0.6s ease-out;
}

.hero .subtitle { animation-delay: 0.1s; }
.countdown { animation-delay: 0.2s; }

/* ── ADICIONAIS NOVAS IMAGENS ── */
.hero-social-proof {
  margin-top: 3rem;
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.hero-proof-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.hero-proof-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-proof-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 24, 27, 0.9);
  color: var(--text);
  padding: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 3vw, 0.95rem);
  text-align: center;
}

.btn-secondary-link {
  color: var(--text-dim);
  font-size: 0.95rem;
  text-decoration: underline;
  transition: var(--transition);
  display: inline-block;
  padding: 8px;
}

.btn-secondary-link:hover {
  color: var(--text);
}

.method-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.method-mockup {
  width: 100%;
  max-width: 800px;
}

.bundle-image-wrapper {
  max-width: 480px;
  width: 100%;
  margin: -1rem auto 2rem;
  filter: drop-shadow(0 10px 30px rgba(250, 204, 21, 0.15)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.guarantee-badge-container {
  max-width: 180px;
  margin: 2rem auto 0;
}

.guarantee-badge {
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .method-card {
    text-align: center;
  }
}
