/* ═══════════════════════════════════════════════
   E-GENCY — Design System Premium
   Dark + Gold + Neon Blue
════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #F0CC72;
  --gold-dark: #9A7A30;
  --blue-neon: #00D4FF;
  --blue-glow: rgba(0, 212, 255, 0.15);
  --bg-primary: #060609;
  --bg-secondary: #0C0C14;
  --bg-card: #111120;
  --bg-card-hover: #161628;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.3);
  --text-primary: #F0F0F8;
  --text-secondary: #9090A8;
  --text-muted: #555570;
  --gradient-gold: linear-gradient(135deg, #C9A84C, #F0CC72, #C9A84C);
  --gradient-blue: linear-gradient(135deg, #00D4FF, #0099CC);
  --gradient-text: linear-gradient(135deg, #C9A84C 0%, #F0CC72 50%, #00D4FF 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.2);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--text-secondary); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ NAV LOGO IMAGE ═══ */
.nav-logo-img { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; display: block; }

/* ═══ NAVBAR ═══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(6,6,9,0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition);
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  border-radius: 99px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 2px; }

.nav-mobile {
  display: none;
  background: rgba(6,6,9,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a { font-size: 1rem; color: var(--text-secondary); }
.nav-mobile a:hover { color: var(--text-primary); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: #080810;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: #080810;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-nav {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--gold); color: #080810; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-xl { padding: 1.2rem 3rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Mobile: prevent XL button from overflowing */
@media (max-width: 480px) {
  .btn-xl {
    width: 100%;
    white-space: normal;
    text-align: center;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    justify-content: center;
    word-break: break-word;
  }
}

/* ═══ SECTIONS COMMON ═══ */
.section-dark, .section-gradient { padding: 100px 0; }
.section-dark { background: var(--bg-primary); }
.section-gradient {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 99px;
  margin-bottom: 1.5rem;
}

.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 3.5rem; max-width: 600px; }

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.br-desktop { display: block; }

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(201,168,76,0.08);
  top: -100px; left: -200px;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(0,212,255,0.06);
  bottom: 0; right: -150px;
  animation: glowPulse 8s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
.hero-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1.5rem; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.5rem 1.2rem; border-radius: 99px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: dotBlink 2s ease infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline { max-width: 900px; }
.hero-sub { color: var(--text-secondary); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 640px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-video-wrap { width: 100%; max-width: 800px; margin-top: 1rem; }
.hero-video-frame {
  position: relative; width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(201,168,76,0.1), var(--shadow-card);
}
.hero-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* METRICS */
.hero-metrics {
  display: flex; align-items: center; gap: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 3rem;
  width: 100%; max-width: 800px;
  flex-wrap: wrap; justify-content: center;
}
.metric-item { text-align: center; }
.metric-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.metric-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.metric-divider { width: 1px; height: 50px; background: var(--border); }

/* REVIEWS */
.hero-reviews {
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
}
.review-avatars { display: flex; }
.review-avatars img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px; object-fit: cover;
}
.review-avatars img:first-child { margin-left: 0; }
.review-info .stars { color: #FFD700; letter-spacing: 2px; margin-bottom: 2px; }
.review-info p { font-size: 0.85rem; color: var(--text-secondary); }
.review-info strong { color: var(--text-primary); }

/* SCROLL */
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll-indicator span {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  display: block;
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-indicator p { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; }

/* ═══ PROBLEMA ═══ */
.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.problema-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.problema-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0; transition: var(--transition);
}
.problema-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.problema-card:hover::before { opacity: 1; }
.problema-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.problema-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.problema-card p { font-size: 0.9rem; }

.problema-quote {
  display: flex; align-items: center; gap: 1.5rem; justify-content: center;
  padding: 2rem;
}
.problema-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700; color: var(--text-primary);
  text-align: center; white-space: nowrap;
}
.quote-line {
  flex: 1; max-width: 120px; height: 1px;
  background: var(--gradient-gold); opacity: 0.5;
}

/* ═══ PILARES ═══ */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.pilar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition);
  cursor: default; position: relative;
  overflow: hidden;
}
.pilar-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.06), transparent 70%);
  opacity: 0; transition: var(--transition);
}
.pilar-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.pilar-card:hover::after { opacity: 1; }
.pilar-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--gold);
  transition: var(--transition);
}
.pilar-card:hover .pilar-icon {
  background: var(--gold); color: #080810;
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
}
.pilar-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.pilar-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.pilar-card p { font-size: 0.85rem; }

/* ═══ SERVIÇOS ═══ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.servico-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.servico-icon { font-size: 2rem; }
.servico-card h3 { font-size: 1rem; color: var(--text-primary); }
.servico-card p { font-size: 0.85rem; flex: 1; }
.servico-benefits { margin-top: 0.25rem; }
.servico-benefits li { font-size: 0.8rem; color: var(--text-secondary); padding: 0.15rem 0; }
.servico-cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  margin-top: 0.25rem; transition: var(--transition);
}
.servico-cta:hover { gap: 0.6rem; }

/* ═══ PLANOS SOCIAL MEDIA ═══ */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; align-items: stretch;
}
.plano-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: var(--transition); position: relative;
}
.plano-card:hover { transform: translateY(-6px); }

.plano-featured {
  background: linear-gradient(135deg, #0D0D1A 0%, #131326 100%);
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.2), var(--shadow-card);
  transform: scale(1.02);
}
.plano-featured:hover { transform: scale(1.02) translateY(-6px); }

.plano-dominancia {
  background: linear-gradient(135deg, #0D0D20 0%, #10101E 100%);
  border-color: rgba(0,212,255,0.3);
}
.plano-dominancia:hover { box-shadow: 0 0 40px rgba(0,212,255,0.1); }

.plano-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold); color: #080810;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; padding: 0.3rem 1.2rem;
  border-radius: 99px; white-space: nowrap;
}
.plano-header h3 { color: var(--text-primary); margin: 0.4rem 0; }
.plano-ideal { font-size: 0.85rem; }
.plano-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 99px;
  background: rgba(201,168,76,0.1); color: var(--gold);
  border: 1px solid var(--border-gold);
}
.tag-gold { background: rgba(201,168,76,0.15); }
.tag-purple { background: rgba(0,212,255,0.08); color: var(--blue-neon); border-color: rgba(0,212,255,0.2); }

.plano-items { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.plano-items li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.9rem; color: var(--text-secondary);
}
.check { color: var(--gold); flex-shrink: 0; font-weight: 700; }

/* ═══ TRÁFEGO PAGO ═══ */
.trafego-quote {
  text-align: center; margin-bottom: 3rem;
}
.trafego-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-secondary);
}
.trafego-quote strong { color: var(--gold); }

.trafego-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.trafego-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: var(--transition);
}
.trafego-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.trafego-featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.15);
  background: linear-gradient(135deg, #0E0E1C 0%, #131326 100%);
}
.trafego-icon { font-size: 2.5rem; }
.trafego-card h3 { color: var(--text-primary); font-size: 1.25rem; }
.trafego-sub { font-size: 0.85rem; }

/* ═══ RESULTADOS ═══ */
.stats-grid {
  display: flex; flex-direction: column; gap: 1.25rem;
  max-width: 700px; margin: 0 auto 4rem;
}

.stat-bar-header {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.stat-val { color: var(--gold); font-weight: 700; }
.stat-bar-track {
  height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 99px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%; width: 0; border-radius: 99px;
  background: var(--gradient-gold);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* DEPOIMENTOS */
.depoimentos-section { position: relative; overflow: hidden; }
.depoimentos-carousel { overflow: hidden; }
.depo-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.depo-card {
  min-width: 360px; flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.depo-stars { color: #FFD700; letter-spacing: 3px; font-size: 1rem; }
.depo-card p { font-size: 0.95rem; color: var(--text-secondary); font-style: italic; flex: 1; }
.depo-author { display: flex; align-items: center; gap: 0.75rem; }
.depo-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-gold); }
.depo-author strong { display: block; color: var(--text-primary); font-size: 0.95rem; }
.depo-author span { font-size: 0.8rem; color: var(--text-muted); }

.depo-controls {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; margin-top: 2rem;
}
.depo-btn {
  width: 44px; height: 44px;
  border-radius: 50%; border: 1.5px solid var(--border-gold);
  background: transparent; color: var(--gold);
  font-size: 1.5rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.depo-btn:hover { background: var(--gold); color: #080810; }
.depo-dots { display: flex; gap: 0.5rem; }
.depo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: var(--transition);
}
.depo-dot.active { background: var(--gold); width: 24px; border-radius: 99px; }

/* ═══ DIFERENCIAIS ═══ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.diferencial-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.diferencial-item:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.dif-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.diferencial-item h4 { color: var(--text-primary); font-size: 0.95rem; margin-bottom: 0.5rem; }
.diferencial-item p { font-size: 0.85rem; }

/* ═══ FAQ ═══ */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none;
  color: var(--text-primary); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-align: left; gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 1.5rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem; color: var(--text-secondary);
}
.faq-item.open .faq-a { max-height: 300px; }

/* ═══ CTA FINAL ═══ */
#cta-final {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute; border-radius: 50%;
  filter: blur(140px); pointer-events: none;
}
.cta-glow-1 {
  width: 700px; height: 700px;
  background: rgba(201,168,76,0.07);
  top: -200px; left: -200px;
}
.cta-glow-2 {
  width: 600px; height: 600px;
  background: rgba(0,212,255,0.05);
  bottom: -200px; right: -200px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  padding: 0.5rem 1.5rem; border-radius: 99px;
  margin-bottom: 1.5rem;
}
.cta-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.cta-sub {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 580px; margin: 0 auto 2.5rem;
}
.urgencia-items {
  display: flex; gap: 2rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.urgencia-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--text-secondary);
}
.urgencia-icon { font-size: 1.1rem; }
.cta-disclaimer { margin-top: 1.25rem; font-size: 0.8rem; color: var(--text-muted); }

/* ═══ RODAPÉ ═══ */
#footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.75rem; max-width: 280px; }
.footer-logo { font-size: 1.3rem; }

.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-muted); margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-contact ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-secondary);
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waBounce 3s ease infinite 2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 40px rgba(37,211,102,0.7);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.85); color: white;
  font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,0,0,0.85);
  border-right: 0;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plano-featured { transform: scale(1); }
  .plano-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 640px) {
  .section-dark, .section-gradient, #cta-final { padding: 70px 0; }
  .hero-metrics { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
  .metric-divider { width: 50px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .servicos-grid { grid-template-columns: 1fr; }
  .planos-grid, .trafego-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .problem-quote p { white-space: normal; }
  .urgencia-items { flex-direction: column; align-items: center; }
  .br-desktop { display: none; }
  .depo-card { min-width: calc(100vw - 48px); }
  .pilares-grid { grid-template-columns: 1fr 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .trafego-quote p { white-space: normal; }
}

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