/* ── RESET & VARIÁVEIS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep-purple:  #0F0720;
  --mid-purple:   #1E0F3C;
  --card-bg:      #160B2E;
  --gold:         #D4A017;
  --gold-light:   #F0C040;
  --gold-dim:     #A07810;
  --text-primary: #F0EDF8;
  --text-muted:   #9490AA;
  --border:       rgba(212,160,23,0.18);
  --radius:       14px;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(15,7,32,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900; font-size: 1.5rem;
  color: var(--text-primary); text-decoration: none;
  letter-spacing: -0.5px;
}
.logo img { height: 40px; width: auto; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #0F0720;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 6vw 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(212,160,23,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 80% 20%, rgba(120,60,220,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(212,160,23,0.1); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero > .hero-grid > .hero-text > p {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 460px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BOTÕES ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0F0720;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,160,23,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,160,23,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); color: var(--text-primary);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── STATUS PANEL ── */
.status-panel {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.status-panel::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
}
.status-header { display: flex; align-items: center; justify-content: space-between; }
.status-label { font-family: 'Exo 2', sans-serif; font-size: 1.1rem; font-weight: 700; }
.status-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80; font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}
.status-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; animation: pulse 1.8s ease-in-out infinite;
}
.status-items { display: flex; flex-direction: column; gap: 14px; }
.status-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}
.status-item-left { display: flex; align-items: center; gap: 12px; }
.status-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(212,160,23,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.status-item-name { font-size: 0.9rem; font-weight: 500; }
.status-item-sub  { font-size: 0.75rem; color: var(--text-muted); }
.chip { font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.chip-green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.chip-gold  { background: rgba(212,160,23,0.15); color: var(--gold); border: 1px solid var(--border); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 4px; }
.stat-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px; text-align: center;
}
.stat-num {
  font-family: 'Exo 2', sans-serif; font-size: 1.6rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-desc { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* ── SEÇÕES COMUNS ── */
section { padding: 90px 6vw; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; }
.section-header { margin-bottom: 56px; }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px; margin: 16px 0 0;
}

/* ── SOBRE ── */
.section-sobre { background: var(--mid-purple); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { font-family: 'Exo 2', sans-serif; font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.pillar p  { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ── CANAIS ── */
.section-atendimento { max-width: 100%; }
.channels-wrap { max-width: 1200px; margin: 0 auto; }
.channels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.channel-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.25s, transform 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.channel-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.channel-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(212,160,23,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.channel-card h3 { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.channel-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.channel-tag {
  display: inline-block; margin-top: 16px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--gold); text-transform: uppercase;
}

/* ── COMO FUNCIONA ── */
.section-como-funciona { background: var(--mid-purple); }
.steps-wrap { max-width: 900px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: 28px;
  padding: 32px 0; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Exo 2', sans-serif; font-size: 2.5rem; font-weight: 900;
  color: rgba(212,160,23,0.2); line-height: 1; padding-top: 4px;
}
.step h3 { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.step p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ── FAQ ── */
.section-faq { max-width: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--text-primary);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500;
  padding: 20px 24px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 1rem; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; padding: 0 24px;
}
.faq-item.open .faq-a  { max-height: 300px; padding: 0 24px 20px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-q  { color: var(--gold); }

/* ── CTA BANNER ── */
.section-cta { padding: 60px 6vw 90px; }
.cta-banner {
  background: linear-gradient(135deg, #1B0D35 0%, #0F0720 100%);
  border: 1px solid var(--border); border-radius: 24px; padding: 60px 48px;
  text-align: center; max-width: 820px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 65%);
}
.cta-banner h2 { font-family: 'Exo 2', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.cta-banner > p { color: var(--text-muted); margin-bottom: 32px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
#site-footer {
  background: rgba(0,0,0,0.3); border-top: 1px solid var(--border);
  padding: 48px 6vw 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.brands { display: flex; gap: 10px; flex-wrap: wrap; }
.brand-tag {
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px;
  border-radius: 6px; border: 1px solid var(--border); color: var(--text-muted);
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-fab::before {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: ripple 2.5s ease-out infinite;
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── RESPONSIVO ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 40px 24px; }
  .hero { padding: 100px 5vw 60px; }
}
