/* AkiPedidos — Vendas (Revenda White Label) v2.0 */

:root {
  --bg: #0b1020;
  --surface: #ffffff;
  --surface-soft: #f5f7ff;
  --text: #0f172a;
  --text-muted: #475569;
  --primary: #3b82f6;
  --primary-dark: #1d4ed8;
  --green: #16a34a;
  --green-light: #dcfce7;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  --radius: 14px;
}

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

html, body { margin: 0; padding: 0; scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  position: relative;
}

.logo { font-weight: 800; font-size: 1.9rem; color: var(--primary); line-height: 1; }

.main-nav { display: flex; gap: 1.2rem; font-weight: 500; color: var(--text-muted); flex-wrap: wrap; }
.main-nav a:hover { color: var(--primary-dark); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--primary-dark);
  display: block;
  border-radius: 2px;
  transition: 0.2s;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 1.1rem;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1db954; }
.btn-whatsapp i { font-size: 1.1rem; }
.btn-wa-group {
  background: #25d366;
  border: 2px solid #25d366;
  color: #fff;
}
.btn-wa-group:hover { background: #1db954; border-color: #1db954; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.74rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.97rem;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #15803d; }
.btn-outline { border-color: var(--border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.06rem; }

/* ── SECTIONS ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--surface-soft); }
.section-dark { background: var(--bg); color: #e2e8f0; }

h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.22;
}
.section-subtitle { margin: 0.6rem 0 0; color: var(--text-muted); }

.section-heading { text-align: center; margin-bottom: 2.4rem; }
.section-heading h2 { margin-bottom: 0.5rem; }
.section-heading p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 5% 10%, #dbeafe 0, transparent 35%),
    radial-gradient(circle at 90% 15%, #d1fae5 0, transparent 38%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); line-height: 1.18; margin: 0 0 1rem; }
.hero-sub { color: var(--text-muted); margin: 0 0 1.8rem; font-size: 1.07rem; }

.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-image-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

/* ── VANTAGENS ── */
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.vantagem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.vantagem-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.vantagem-icon.green { background: #d1fae5; color: #059669; }
.vantagem-icon.blue  { background: #dbeafe; color: #1d4ed8; }
.vantagem-icon.orange { background: #fef3c7; color: #d97706; }

.vantagem-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.vantagem-card p { color: var(--text-muted); margin: 0; font-size: 0.96rem; }

/* ── CALCULATOR ── */
.calc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
  max-width: 660px;
  margin: 0 auto;
}

.calc-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.calc-display {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calc-slider {
  width: 100%;
  height: 6px;
  cursor: pointer;
  accent-color: var(--green);
  margin: 0.4rem 0;
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 0 2px;
}

.calc-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.calc-result-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  background: var(--surface-soft);
}

.calc-result-box.featured {
  border-color: var(--green);
  background: #f0fdf4;
  transform: scale(1.04);
}

.calc-result-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.calc-result-value { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); }
.calc-result-box.featured .calc-result-value { color: var(--green); font-size: 1.6rem; }

/* ── FEATURES ── */
.feat-subsection-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2.4rem 0 1rem;
}
.feat-bar {
  width: 4px; height: 28px;
  border-radius: 2px;
  background: var(--primary);
  flex-shrink: 0;
}
.feat-subsection-header h4 { margin: 0; font-size: 1rem; font-weight: 700; }

.feat-color-blue .feat-bar  { background: linear-gradient(135deg,#1d4ed8,#60a5fa); }
.feat-color-blue h4         { color: #1d4ed8; }
.feat-color-red .feat-bar   { background: linear-gradient(135deg,#dc2626,#f87171); }
.feat-color-red h4          { color: #dc2626; }
.feat-color-gray .feat-bar  { background: linear-gradient(135deg,#475569,#94a3b8); }
.feat-color-gray h4         { color: #475569; }
.feat-color-teal .feat-bar  { background: linear-gradient(135deg,#0891b2,#22d3ee); }
.feat-color-teal h4         { color: #0891b2; }
.feat-color-orange .feat-bar{ background: linear-gradient(135deg,#d97706,#fbbf24); }
.feat-color-orange h4       { color: #d97706; }
.feat-color-purple .feat-bar{ background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.feat-color-purple h4       { color: #7c3aed; }

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

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

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.feature-head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.feature-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-top: 1px;
}
.feature-icon img { width: 18px; height: 18px; display: block; }

.feature-card h3 { margin: 0; font-size: 1rem; line-height: 1.3; }
.feature-card p  { margin: 0; color: var(--text-muted); font-size: 0.9rem; flex: 1; }

/* Video preview inside feature card */
.video-preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.85rem;
}
.video-preview img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.video-preview:hover img { opacity: 0.88; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background 0.2s;
}
.video-preview:hover .play-overlay { background: rgba(0,0,0,0.38); }
.play-overlay i {
  font-size: 2rem;
  color: rgba(255,255,255,0.92);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

/* ── TESTIMONIALS GRID (igual página lojista) ── */
.testimonials-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}
.testimonial-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.testimonial-item img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
}

/* ── LIGHTBOX ── */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 3000;
}
.image-lightbox.open { display: flex; }
.image-lightbox img {
  max-width: min(94vw, 480px);
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── PARCEIROS GRID (auto-fit, cresce conforme adiciona) ── */
.partners-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.partner-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 1rem;
  display: block;
  background: #fff;
}
.partner-card .shot-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-top: 1px solid var(--border);
  color: var(--text);
}

/* ── DEMOS GRID ── */
.demos-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.demo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.demo-card:hover img { opacity: 0.9; }
.demo-card .shot-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-top: 1px solid var(--border);
  color: var(--text);
  text-align: center;
}

/* ── SCREENSHOT CAROUSEL ── */
.scroll-carousel-wrap {
  position: relative;
  margin-top: 1.6rem;
}
/* gradiente fade no lado direito para indicar que tem mais */
.scroll-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none;
  z-index: 1;
}
.section-alt .scroll-carousel-wrap::after {
  background: linear-gradient(to right, transparent, var(--surface-soft));
}
.scroll-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
}
.scroll-carousel::-webkit-scrollbar { display: none; }
.scroll-carousel .shot {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.scroll-carousel .shot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Logos de parceiros: mostrar completo sem cortar */
.scroll-carousel .shot.shot-logo { flex: 0 0 300px; }
.scroll-carousel .shot.shot-logo img {
  width: 100% !important;
  height: 200px !important;
  aspect-ratio: unset !important;
  object-fit: contain !important;
  background: #fff;
  padding: 1.2rem;
}
.scroll-carousel .shot .shot-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.carousel-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: 0.2s;
}
.carousel-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ── AUDIO TESTIMONIALS ── */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}
.audio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.audio-card p { margin: 0 0 0.7rem; font-weight: 600; font-size: 0.95rem; }
.audio-card audio { width: 100%; }

/* ── O QUE VOCÊ ADQUIRE ── */
.adquire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.adquire-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.adquire-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin: 0 auto 0.9rem;
}
.adquire-card h3 { font-size: 1rem; margin: 0 0 0.4rem; }
.adquire-card p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── HOSPEDAGEM ── */
.hosting-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 680px;
  margin: 1.6rem auto 0;
}
.hosting-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.hosting-item i { font-size: 1.5rem; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.hosting-item strong { display: block; margin-bottom: 0.2rem; }
.hosting-item small { color: var(--text-muted); font-size: 0.85rem; }

.hosting-bonus {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #15803d;
  margin: 1.6rem auto 0;
  display: flex;
  width: fit-content;
}

/* ── BÔNUS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bonus-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bonus-card-body { padding: 0.9rem; }
.bonus-card h3 { font-size: 0.95rem; margin: 0 0 0.35rem; font-weight: 700; }
.bonus-card p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── CRIATIVOS ── */
.criativos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.criativo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.criativo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(2,6,23,0.13);
}
.criativo-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* ── PRICING ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 820px;
  margin: 2rem auto 0;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}

.plan-badge {
  position: absolute;
  top: -1px; left: 0; right: 0;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem;
  border-radius: 18px 18px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-name { font-size: 1.45rem; font-weight: 800; margin: 0 0 0.1rem; color: var(--primary-dark); }
.plan-card.featured .plan-name { color: var(--green); }

.plan-impl { margin: 1rem 0 0; }
.plan-impl-label { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 0.2rem; }

.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.plan-price-currency { font-size: 1.3rem; font-weight: 700; }
.plan-price-main { font-size: 3rem; font-weight: 900; line-height: 1; }
.plan-price-period { font-size: 0.88rem; color: var(--text-muted); }

.plan-installment { font-size: 0.84rem; color: #dc2626; margin: 0.2rem 0 0; }

.plan-once {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #15803d;
  margin-top: 0.6rem;
}

.plan-monthly { margin-top: 0.9rem; background: #f8f9fa; border-radius: 10px; padding: 0.75rem 1rem; }
.plan-card.featured .plan-monthly { background: #f0fdf4; border: 1px dashed #86efac; }

.plan-monthly-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.15rem;
}
.plan-monthly-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
}
.plan-card.featured .plan-monthly-price { color: var(--green); font-size: 1.8rem; }
.plan-monthly-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.4rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.93rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.plan-features .ok    { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan-features .no    { color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.plan-features .extra { color: #9333ea; flex-shrink: 0; margin-top: 2px; }

.plan-extra-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.plan-extra-item span { flex: 1; }

.btn-ver-preco {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.65rem;
  background: #f3e8ff;
  border: 1px solid #d8b4fe;
  border-radius: 999px;
  color: #7c3aed;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.15s;
}
.btn-ver-preco:hover { background: #ede9fe; border-color: #a78bfa; }
.btn-ver-preco i { font-size: 0.65rem; }

.plan-cta { margin-top: auto; }

/* Ref discount banner */
.ref-banner {
  display: none;
  background: #fefce8;
  border: 1px solid #fde047;
  color: #713f12;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

/* Complementos */
.complementos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 1.6rem auto 0;
}
.complemento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.complemento-card h4 { font-size: 0.95rem; margin: 0 0 0.4rem; font-weight: 700; }
.complemento-card p  { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 0.75rem; }

/* ── FAQ ── */
.faq-list { margin-top: 1.6rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  background: #fff;
  overflow: hidden;
}
.faq-list summary {
  padding: 0.95rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background: #f5f8ff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.97rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list .faq-body { padding: 1rem 1.2rem; color: var(--text-muted); font-size: 0.95rem; }
.faq-list .faq-body a { color: var(--primary); text-decoration: underline; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(130deg, #0b1020 0%, #0f1f4a 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 0.7rem; }
.cta-section p  { color: #93c5fd; margin-bottom: 1.6rem; font-size: 1.05rem; }

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(130deg, #0b1020 0%, #0f1f4a 100%);
  color: #cbd5e1;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
}
.footer-logo { font-weight: 800; font-size: 1.7rem; color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { color: #94a3b8; font-size: 0.9rem; max-width: 340px; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: #e2e8f0; font-weight: 500; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.7rem; align-items: center; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #e2e8f0;
  font-size: 1rem;
  transition: 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.4rem 0 0.9rem; }
.footer-copy { font-size: 0.83rem; color: #64748b; text-align: center; }

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.93) translateY(10px); } to { opacity:1; transform: none; } }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: #94a3b8; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-icon { text-align: center; font-size: 3rem; margin-bottom: 0.8rem; }
.modal-title { text-align: center; font-size: 1.2rem; font-weight: 700; margin: 0 0 0.4rem; }
.modal-sub { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin: 0 0 1.2rem; }
.modal-pricing-row {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.modal-pricing-row .row-label { font-weight: 600; font-size: 0.95rem; }
.modal-pricing-row .row-price { font-size: 1.3rem; font-weight: 800; color: var(--primary-dark); }
.modal-pricing-row .row-period { font-size: 0.78rem; color: var(--text-muted); }

/* ── FILTRO WHATSAPP MODAL ── */
.filtro-modal { max-width: 460px; }

.filtro-opcoes { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }

.filtro-opcao {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; font-size: 0.93rem; font-weight: 500;
  color: var(--text); cursor: pointer; text-align: left;
  font-family: inherit; transition: all 0.15s;
}
.filtro-opcao:hover { border-color: var(--primary); background: var(--surface-soft); color: var(--primary-dark); }
.filtro-opcao-icon { font-size: 1.15rem; flex-shrink: 0; width: 24px; text-align: center; }
.filtro-opcao.outra { color: var(--text-muted); border-style: dashed; }
.filtro-opcao.outra:hover { border-color: #25d366; color: #25d366; background: #f0fdf4; }

.filtro-voltar {
  background: none; border: none; padding: 0 0 14px;
  color: var(--primary); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; font-family: inherit; display: block;
}
.filtro-voltar:hover { text-decoration: underline; }

.filtro-resp-titulo { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.filtro-resp-corpo { font-size: 0.91rem; line-height: 1.65; color: #374151; }
.filtro-resp-corpo p { margin-bottom: 8px; }
.filtro-resp-corpo ul { list-style: none; padding: 0; margin: 8px 0; }
.filtro-resp-corpo ul li { padding: 3px 0; }
.filtro-resp-corpo ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.filtro-resp-card {
  background: var(--surface-soft); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; margin: 8px 0;
}
.filtro-resp-card strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.filtro-resp-card span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.filtro-resp-card.destaque { border-color: var(--green); background: #f0fdf4; }
.filtro-link {
  display: inline-block; margin-top: 10px;
  color: var(--primary); font-weight: 600; font-size: 0.88rem; text-decoration: underline;
}
.filtro-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; margin-top: 16px;
  background: #25d366; color: #fff; border: none; border-radius: 10px;
  font-size: 0.93rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.filtro-wa-btn:hover { background: #1ebe5d; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid           { grid-template-columns: 1fr; }
  .hero-image-card     { display: none; }
  .vantagens-grid      { grid-template-columns: 1fr; }
  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .features-grid-text  { grid-template-columns: repeat(2, 1fr); }
  .criativos-grid      { grid-template-columns: repeat(3, 1fr); }
  .demos-grid          { grid-template-columns: repeat(2, 1fr); }
  .audio-grid          { grid-template-columns: repeat(2, 1fr); }
  .adquire-grid        { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid          { grid-template-columns: repeat(2, 1fr); }
  .plans-grid          { grid-template-columns: 1fr; max-width: 420px; }
  .complementos-grid   { grid-template-columns: 1fr; }
  .footer-wrap         { grid-template-columns: 1fr 1fr; }
  .hosting-items       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 740px) {
  .menu-toggle       { display: inline-flex; order: 1; margin-right: auto; }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.7rem;
  }

  .btn-whatsapp-nav  { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 4%;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-nav.open    { display: flex; }
  .main-nav a       { padding: 0.75rem 0.25rem; }

  .features-grid, .features-grid-text { grid-template-columns: 1fr; }
  .audio-grid          { grid-template-columns: 1fr; }
  .criativos-grid      { grid-template-columns: repeat(2, 1fr); }
  .demos-grid          { grid-template-columns: 1fr 1fr; }
  .adquire-grid        { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid          { grid-template-columns: 1fr 1fr; }
  .calc-results        { grid-template-columns: 1fr; }
  .calc-result-box.featured { transform: none; }
  .plans-grid          { max-width: 100%; }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }

  .footer-wrap    { grid-template-columns: 1fr; }

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