/* ═══════════════════════════════════════════════════════════════
   APEX TRADER FUNDING — LANDING PAGE CSS
   Design System: Dark Premium, Verde Neon + Azul Elétrico + Laranja
═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #0A0D14;
  --bg-card: #0F1320;
  --bg-card2: #141929;
  --green: #00F5A0;
  --green-dim: #00C07D;
  --blue: #00B8F5;
  --orange: #FF6B35;
  --orange-dim: #CC5228;
  --text: #E8EFF5;
  --text-muted: #8899AA;
  --border: rgba(255, 255, 255, 0.08);
  --font: 'Inter', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Container ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Utility highlights ─── */
.highlight-green {
  color: var(--green);
}

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

/* ═══════════════════════════════ TOPBAR ═══════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.topbar-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.topbar-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-apex {
  color: var(--green);
}

.logo-trader {
  color: var(--text);
  margin-left: 4px;
}

.topbar-coupon {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.coupon-tag {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* ═══════════════════════════════ BUTTONS ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: #0A0D14;
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(0, 245, 160, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 32px rgba(0, 245, 160, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 24px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background: rgba(0, 245, 160, 0.08);
}

.btn-nav {
  background: var(--green);
  color: #0A0D14;
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-nav:hover {
  box-shadow: 0 4px 16px rgba(0, 245, 160, 0.4);
}

.btn-xl {
  padding: 18px 36px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.82rem;
  width: 100%;
  margin-top: 16px;
}

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

@keyframes pulseShadow {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(0, 245, 160, 0.35);
  }

  50% {
    box-shadow: 0 8px 48px rgba(0, 245, 160, 0.7);
  }
}

/* ─── Copy Button ─── */
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: rgba(255, 107, 53, 0.28);
}

.btn-copy.copied {
  background: rgba(0, 245, 160, 0.15);
  border-color: var(--green);
  color: var(--green);
}

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

/* Grid lines background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 160, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
}

.hero-glow-1 {
  width: 640px;
  height: 640px;
  background: var(--green);
  top: -200px;
  left: -200px;
}

.hero-glow-2 {
  width: 480px;
  height: 480px;
  background: var(--blue);
  bottom: -100px;
  right: -100px;
}

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

/* countdown badge */
.badge-countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.badge-dot.pulse {
  animation: dotPulse 1.4s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.countdown {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}

/* Logo da Apex no Hero — oculto (logo está no topbar) */
.hero-logo-wrap {
  display: none;
}

/* Título */
.hero-title {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  width: 100%;
  line-height: 1.7;
  padding: 0 8px;
}

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

/* Coupon box hero */
.hero-coupon-box,
.cta-coupon-box {
  background: rgba(255, 107, 53, 0.07);
  border: 1.5px solid rgba(255, 107, 53, 0.4);
  border-radius: var(--radius);
  padding: 20px 32px;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.coupon-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.coupon-code-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.coupon-code {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 4px;
  font-variant-numeric: tabular-nums;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 680px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 28px;
  flex: 1;
  min-width: 130px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════ BANNERS ═══════════════════════════════ */
.banner-section {
  padding: 32px 0;
  background: var(--bg);
}

.banner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  min-height: 90px;
}

/* Responsive: banners que renderizam como imagem se ajustam */
.banner-wrap img,
.banner-wrap a img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════ SECTIONS ═══════════════════════════════ */
.section {
  padding: 90px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Cards ─── */
.cards-grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 160, 0.3);
}

.card-glow:hover {
  box-shadow: 0 8px 40px rgba(0, 245, 160, 0.12);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ─── Steps Timeline ─── */
.steps-timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0, 245, 160, 0.2);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.step-content {
  padding: 4px 0 28px;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.step-content strong {
  color: var(--text);
}

.step-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--green), transparent);
  margin-left: 28px;
}

/* ─── Plans ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 160, 0.3);
}

.plan-card.plan-popular {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(0, 245, 160, 0.06) 0%, rgba(0, 184, 245, 0.06) 100%);
  box-shadow: 0 0 40px rgba(0, 245, 160, 0.1);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #0A0D14;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}

.plan-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-size {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.plan-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 18px;
}

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

.plan-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.plans-cta-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.coupon-tag-inline {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* Badge 90% OFF em cada card */
.plan-discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #ff3d00);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.45);
}

/* ─── Benefits Grid ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 245, 0.3);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.benefit-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.testi-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0A0D14;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
}

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

/* ─── Platforms ─── */
.platforms-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 24px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.platform-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.platform-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-muted);
}

/* ═══════════════════════════════ FAQ ═══════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(0, 245, 160, 0.3);
}

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

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

.faq-icon {
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

.faq-answer strong {
  color: var(--text);
}

/* ═══════════════════════════════ CTA FINAL ═══════════════════════════════ */
.cta-final {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg-card);
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.12;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--green);
  top: -200px;
  left: -100px;
}

.cta-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  bottom: -200px;
  right: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
}

.cta-coupon-box {
  max-width: 440px;
  width: 100%;
}

.coupon-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.coupon-steps span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.arrow-step {
  color: var(--green);
  font-size: 0.9rem;
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 480px;
  text-align: center;
}

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
.footer {
  background: #060810;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-by {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.footer-by strong {
  color: var(--green);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(136, 153, 170, 0.65);
  max-width: 680px;
  line-height: 1.7;
}

/* ═══════════════════════════════ SCROLL REVEAL ═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════ RESPONSIVE ═══════════════════════════════ */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .topbar-coupon {
    display: none;
  }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  .topbar-inner {
    gap: 10px;
  }

  .btn-nav {
    font-size: 0.75rem;
    padding: 9px 14px;
  }

  .hero {
    padding: 90px 0 50px;
    overflow-x: hidden;
  }

  .hero-inner {
    gap: 16px;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 8px;
    width: 100%;
  }

  .hero-logo-img {
    max-width: 180px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

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

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

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

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .step {
    gap: 16px;
  }

  .step-num {
    font-size: 2rem;
    min-width: 44px;
  }

  .hero-coupon-box,
  .cta-coupon-box {
    padding: 16px 20px;
  }

  .coupon-code {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .btn-xl {
    padding: 16px 24px;
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 14px;
  }

  .banner-section {
    padding: 20px 0;
  }
}

/* Extra small: ≤ 380px */
@media (max-width: 380px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.9rem;
  }

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

/* ─── Foto circular nos depoimentos ─── */
.testi-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--green);
}

/* ─── Footer: logo + parceiro ─── */
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-partner-badge {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  border: 1px solid rgba(0, 245, 160, 0.2);
  background: rgba(0, 245, 160, 0.04);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.footer-partner-badge strong {
  color: var(--green);
}

/* ─── Discount alert nos planos ─── */
.discount-alert {
  margin-top: 20px;
  background: rgba(255, 107, 53, 0.08);
  border: 1.5px solid rgba(255, 107, 53, 0.4);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.discount-alert strong {
  color: var(--orange);
}

/* ─── Mobile hero fixes ─── */
@media (max-width: 600px) {
  .hero {
    padding: 88px 0 48px;
    min-height: auto;
  }

  .hero-inner {
    gap: 18px;
    padding: 0 4px;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    padding: 0 4px;
  }

  .badge-countdown {
    font-size: 0.78rem;
    padding: 7px 14px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-coupon-box {
    padding: 14px 16px;
    max-width: 100%;
  }

  .coupon-code {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .stat-item {
    padding: 14px 20px;
    min-width: unset;
    width: 100%;
  }

  .topbar-coupon {
    display: none;
  }

  .topbar-logo-img {
    height: 28px;
  }

  .discount-alert {
    font-size: 0.82rem;
    padding: 12px 14px;
  }
}