/* ==========================================================================
   ZAPSTORE — Catálogo Digital & Sistema de Vendas Diretas
   Produto by V8 Solution Ltda | Dark Executive Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-main: #070709;
  --bg-surface: #0e1014;
  --bg-card: #13161c;
  --bg-card-hover: #181b23;
  --bg-glass-heavy: rgba(11, 13, 17, 0.88);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-highlight: rgba(255, 255, 255, 0.28);

  --text-primary: #FFFFFF;
  --text-secondary: #A0A6B2;
  --text-muted: #646A78;
  --text-accent: #E2E8F0;

  --accent-emerald: #10B981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.22);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

::selection { background-color: #FFFFFF; color: #070709; }

.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  color: #FFFFFF;
}

.brand-logo-link .bolt { color: var(--accent-emerald); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover { color: #FFFFFF; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-outline {
  background: var(--bg-card);
  color: #FFFFFF;
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-emerald-glow);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4);
}

/* HERO */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-emerald);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-title .accent { color: var(--accent-emerald); }

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-emerald);
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* SECTION HEADER (shared) */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

/* PÚBLICO-ALVO */
.audience-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.audience-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* RECURSOS */
.features-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.recursos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

@media (max-width: 768px) {
  .recursos-grid { grid-template-columns: 1fr; }
}

.recurso-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}

.recurso-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.recurso-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.recurso-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.recurso-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.recurso-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}

.recurso-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

/* PLANOS */
.pricing-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card:hover { border-color: var(--border-medium); transform: translateY(-4px); }

.pricing-card-featured {
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: linear-gradient(145deg, #13171e 0%, #0d1a16 100%);
  box-shadow: var(--shadow-md);
}

.pricing-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-features li strong { color: var(--text-accent); }

.domain-note {
  max-width: 980px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.domain-note code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--text-accent);
}

/* FAQ */
.faq-section {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-medium); }

.faq-item summary {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent-emerald);
  font-weight: 400;
  transition: var(--transition);
  margin-left: 1rem;
}

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

.faq-item p {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA BANNER */
.cta-banner-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0.04) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 28px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #050608;
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}

.site-footer .footer-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.site-footer .footer-brand .bolt { color: var(--accent-emerald); }

.site-footer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.site-footer a.powered-by {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer a.powered-by:hover { color: #FFFFFF; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
}
