/* ============================================
   SALES BUILDERS CLUB — Design System
   ============================================ */

:root {
  --bg-darkest: #050A14;
  --bg-dark: #080F1E;
  --bg-mid: #0D1A30;
  --bg-card: #112038;
  --gold: #0078D4;
  --gold-light: #4DB8FF;
  --gold-dim: rgba(0, 120, 212, 0.15);
  --cream: #E8F4FF;
  --cream-mid: #D0E8FF;
  --white: #FFFFFF;
  --text-muted: #7A9AB8;
  --text-light: #B8D0E8;
  --border: rgba(0, 120, 212, 0.3);
  --border-subtle: rgba(255,255,255,0.07);
  --silver: #B0C8E0;
  --blue-bright: #00AAFF;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --transition: all 0.25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg-dark); color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-light); line-height: 1.75; }

/* ─── Utilities ─────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--text-light); max-width: 620px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,146,40,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ─── Barra de Evento ────────────────────── */
.event-bar {
  background: linear-gradient(90deg, #1e3a8a, #1d4ed8, #2563eb, #1d4ed8, #1e3a8a);
  background-size: 200% 100%;
  animation: barSlide 6s linear infinite;
  border-bottom: 2px solid rgba(96,165,250,0.4);
  color: #dbeafe;
  font-size: 0.82rem;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s;
}
.event-bar:hover { filter: brightness(1.12); }
.event-bar strong { color: #fff; }
.event-bar-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
  display: inline-block;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
@keyframes barSlide {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.event-bar-btn {
  background: #fff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.event-bar:hover .event-bar-btn { background: #fef3c7; }

/* ─── Membership — Benefícios do Membro ─── */
.membership {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.membership-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.membership-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s;
}
.membership-item:last-child { border-bottom: none; }
.membership-item:hover { background: rgba(255,255,255,0.03); }
.membership-item-extra {
  background: rgba(255,255,255,0.01);
  opacity: 0.85;
}
.membership-icon {
  font-size: 1.6rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.membership-info {
  flex: 1;
}
.membership-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.membership-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.membership-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.membership-badge.included {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}
.membership-badge.extra {
  background: rgba(148,163,184,0.08);
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,0.2);
}
.membership-cta {
  text-align: center;
  margin-top: 40px;
}
.membership-cta-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}
@media (max-width: 640px) {
  .membership-item { flex-wrap: wrap; gap: 12px; padding: 16px 20px; }
  .membership-badge { width: 100%; text-align: center; }
}

/* ─── Header / Nav ───────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.nav-logo .logo-text span { display: block; font-size: 0.65rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ─── Dropdown "Material Gratuito" ──────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--gold) !important;
  font-weight: 600 !important;
  user-select: none;
}
.nav-dropdown-toggle .arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-dropdown.open .arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  border: 1px solid rgba(201,146,40,0.25);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  /* ponte invisível que fecha o gap acima do menu */
  margin-top: 0;
}
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  border-left: 1px solid rgba(201,146,40,0.25);
  border-top: 1px solid rgba(201,146,40,0.25);
  rotate: 45deg;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light) !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(201,146,40,0.1);
  color: var(--white) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ─── Hero Carousel ──────────────────────── */
.hero-carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-darkest);
}
.hc-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-slide {
  min-width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,10,20,0.88) 0%,
    rgba(5,10,20,0.65) 55%,
    rgba(5,10,20,0.3) 100%
  );
}
.hc-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-bottom: 100px;
}
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.hc-arrow:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.hc-prev { left: 24px; }
.hc-next { right: 24px; }
.hc-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hc-dot.active { background: var(--gold); transform: scale(1.3); }
.hc-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  background: rgba(5,10,20,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
}
.hc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 48px;
  border-right: 1px solid var(--border-subtle);
}
.hc-stat:last-child { border-right: none; }
.hc-stat .num { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.hc-stat .num span { color: var(--gold); }
.hc-stat .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.vendacrm-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.vendacrm-badge span { color: #C99228; }
.vendacrm-badge-lg {
  font-size: 2rem;
  margin-bottom: 8px;
}
.hc-trilhas-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hc-trilhas-preview span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0,120,212,0.2);
  border: 1px solid rgba(0,120,212,0.4);
  color: var(--gold-light);
}
.hc-slide-dark {
  background: radial-gradient(ellipse 80% 80% at 70% 40%, rgba(0,120,212,0.12) 0%, transparent 70%),
              var(--bg-darkest);
}
.hc-slide-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

/* ─── Hero (legado — mantido para compatibilidade) ── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-darkest); }
.hero-bg { position: absolute; inset: 0; }
.hero-grid { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .label { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Pain Section ───────────────────────── */
.pain {
  background: var(--bg-mid);
  padding: 100px 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pain-items { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pain-item:hover { border-color: var(--border); }
.pain-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(201,146,40,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.pain-item p { color: var(--text-light); font-size: 0.95rem; margin: 0; }
.pain-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.pain-callout blockquote {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
}
.pain-callout blockquote em { font-style: normal; color: var(--gold); }
.pain-callout p { color: var(--text-light); font-size: 0.95rem; }

/* ─── Turnaround ────────────────────────── */
.turnaround {
  padding: 100px 0;
  background: var(--bg-darkest);
}
.turnaround-inner {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-mid) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.turnaround-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.turnaround-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.turnaround-grid p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
.compare-table { display: flex; flex-direction: column; gap: 0; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.compare-row:first-child .compare-cell { border-top: 1px solid var(--border-subtle); }
.compare-cell {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
}
.compare-cell.avoid { color: var(--text-muted); }
.compare-cell.reinforce { color: var(--gold); font-weight: 600; }
.compare-header .compare-cell {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 10px;
}

/* ─── What Is ────────────────────────────── */
.whatis {
  padding: 100px 0;
  background: var(--bg-dark);
}
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.whatis-text p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.whatis-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ecosystem-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-mid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: var(--transition);
}
.ecosystem-node:hover { border-color: var(--border); transform: translateX(4px); }
.ecosystem-node .node-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ecosystem-node .node-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.ecosystem-node .node-text p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ─── Ecosystem Cards ──────────────────── */
.ecosystem {
  padding: 100px 0;
  background: var(--bg-mid);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.card {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ─── How It Works ───────────────────────── */
.how {
  padding: 100px 0;
  background: var(--bg-darkest);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--border) 100%);
}
.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── For Whom ───────────────────────────── */
.forwhom {
  padding: 100px 0;
  background: var(--bg-dark);
}
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.forwhom-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.forwhom-card.yes {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.forwhom-card.no {
  background: var(--bg-mid);
  border: 1px solid var(--border-subtle);
}
.forwhom-card .card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.forwhom-card .card-head .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.forwhom-card.yes .dot { background: var(--gold); }
.forwhom-card.no .dot { background: #555; }
.forwhom-card .card-head h3 { font-size: 1rem; font-weight: 700; }
.forwhom-list { display: flex; flex-direction: column; gap: 12px; }
.forwhom-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.forwhom-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.yes .check { background: var(--gold-dim); color: var(--gold); }
.no .check { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.forwhom-item span { color: var(--text-light); line-height: 1.5; }

/* ─── Invitation ─────────────────────────── */
.invitation {
  padding: 100px 0;
  background: var(--bg-mid);
}
.invitation-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.invitation-box {
  background: var(--bg-darkest);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.invitation-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.invitation-box h3 { font-size: 1.35rem; margin-bottom: 16px; }
.invitation-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 28px; }
.invitation-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.inv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.inv-item::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--bg-darkest);
}
.faq-list { margin-top: 56px; max-width: 760px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 22px 0;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
}
.faq-question.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p { font-size: 0.93rem; color: var(--text-muted); padding-bottom: 22px; line-height: 1.75; }

/* ─── Final CTA ──────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,146,40,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta h2 { max-width: 680px; margin: 0 auto 20px; }
.final-cta p { max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }
.final-cta .cta-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 16px; }

/* ─── Footer ─────────────────────────────── */
footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-light); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Testimonials placeholder ─────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.93rem; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-info .name { font-size: 0.88rem; font-weight: 700; }
.author-info .role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── Founder Section ───────────────────── */
.founder-section {
  padding: 100px 0;
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-subtle);
}
.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.founder-role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}
.founder-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.founder-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.founder-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social-icon {
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-icon:hover { color: var(--gold); }
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo img { aspect-ratio: 1/1; max-width: 320px; margin: 0 auto; display: block; }
}

/* ─── Landing Page: Participar ─────────── */
.lp-hero {
  background: var(--bg-darkest);
  padding: 80px 0 60px;
  text-align: center;
}
.lp-hero .hero-badge { margin-bottom: 20px; }
.lp-hero h1 { max-width: 720px; margin: 0 auto 20px; }
.lp-hero p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.lp-form-section { padding: 64px 0 100px; background: var(--bg-dark); }
.lp-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.lp-info { display: flex; flex-direction: column; gap: 28px; }
.lp-info-block { padding: 24px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); }
.lp-info-block h4 { font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.lp-info-block p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.lp-info-block ul { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.lp-info-block ul li { font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.lp-info-block ul li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.form-card > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,146,40,0.12); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-dark); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ─── Venda Todo Dia Preview ─────────────── */
.vtd-section {
  padding: 100px 0;
  background: var(--bg-mid);
}
.vtd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vtd-text p { margin-bottom: 16px; }
.vtd-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}
.vtd-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold-light);
}
.vtd-preview {
  background: #1a1f2e;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.vtd-phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #0d1321;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vtd-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.vtd-avatar::after { content: '🚀'; }
.vtd-contact { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.vtd-status { font-size: 0.72rem; color: var(--text-muted); }
.vtd-bubble {
  padding: 20px;
  background: #1e3a2e;
  margin: 16px;
  border-radius: 12px 12px 12px 4px;
  border-left: 3px solid #25d366;
}
.vtd-msg-header {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.vtd-msg-line {
  font-size: 0.8rem;
  color: #b0c8a0;
  margin-bottom: 2px;
}
.vtd-msg-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0;
}
.vtd-msg-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7ecfa8;
  margin-bottom: 4px;
}
.vtd-msg-body {
  font-size: 0.82rem;
  color: #d4e8cc;
  line-height: 1.6;
}
.vtd-msg-copy {
  font-size: 0.8rem;
  color: #e8f5e2;
  line-height: 1.65;
  background: rgba(255,255,255,0.06);
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 2px solid #25d366;
  font-style: italic;
}

/* ─── Gallery ────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--bg-darkest);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-top: 56px;
  height: 520px;
}
.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  flex: 1;
}
.gallery-tall {
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.gallery-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.gallery-label p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin: 0;
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-darkest); padding: 24px; border-bottom: 1px solid var(--border-subtle); gap: 20px; z-index: 99; }
  .hamburger { display: flex; }
  .nav-cta { display: none !important; }
  nav { height: 80px; }
  /* Dropdown mobile: exibe itens inline sem posicionamento absoluto */
  .nav-dropdown { position: static; }
  .nav-dropdown-menu { display: none; position: static; transform: none; background: transparent; border: none; box-shadow: none; padding: 0 0 0 16px; min-width: unset; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; gap: 4px; }
  .nav-dropdown-menu li a { padding: 6px 10px; font-size: 0.85rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .turnaround-grid { grid-template-columns: 1fr; }
  .turnaround-inner { padding: 40px 24px; }
  .whatis-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .invitation-inner { grid-template-columns: 1fr; }
  .vtd-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-tall { height: 260px; }
  .gallery-side { flex-direction: row; }
  .gallery-item { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .lp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hc-stats {
    position: relative !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: unset;
  }
  .hc-stat {
    padding: 16px 12px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
  }
  .hc-stat:nth-child(even) { border-right: none; }
  .hc-stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .pain, .turnaround, .whatis, .ecosystem, .how, .forwhom, .invitation, .gallery, .faq, .final-cta, .testimonials { padding: 64px 0; }
}
