/* =========================================================================
   FATE MARKETING — DESIGN SYSTEM E ESTILOS DA PÁGINA INICIAL
   Reconstruído a partir do export Duda. Leve, sem dependências externas
   (apenas Google Fonts). Mobile-first onde possível.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. VARIÁVEIS / TOKENS DE MARCA
   ------------------------------------------------------------------------- */
:root {
  --bg-primary: #02020a;   /* Fundo base da página */
  --bg-section: #050514;   /* Fundo das seções destacadas */
  --accent-blue: #0055ff;
  --accent-hover: #3377ff;
  --accent-green: #00ff88;
  --accent-red: #ff3333;
  --text-light: #ffffff;
  --text-muted: #8b8b9f;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glass: rgba(255, 255, 255, 0.05);

  --font-title: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-text: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1200px;
  --radius: 20px;
}

/* -------------------------------------------------------------------------
   2. RESET LEVE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Acessibilidade: foco visível */
:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------------
   3. LAYOUT / UTILITÁRIOS
   ------------------------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 10px; }

/* -------------------------------------------------------------------------
   4. BOTÃO PADRÃO FATE (CTA principal — gradiente radial + glow)
   ------------------------------------------------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-decoration: none;
  padding: 16px 34px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  background-image: radial-gradient(circle, rgba(14, 28, 96, 1) 0%, rgba(2, 1, 22, 1) 100%);
  box-shadow: rgba(255, 255, 255, 0.43) 0px 0px 11px 0px;
  transition: background-image 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.cta-btn:hover {
  background-image: linear-gradient(90deg, rgba(2, 1, 22, 1) 0%, rgba(14, 28, 96, 1) 100%);
  transform: translateY(-2px);
  box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 16px 0px;
}

/* Botão secundário neon (usado dentro das seções) */
.fate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #020513;
  color: var(--text-light);
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(0, 85, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 85, 255, 0.35);
  transition: all 0.3s ease;
  width: fit-content;
  letter-spacing: 0.5px;
  margin-top: 15px;
}
.fate-btn:hover {
  box-shadow: 0 0 35px rgba(0, 85, 255, 0.6);
  transform: translateY(-3px);
  border-color: rgba(0, 85, 255, 0.4);
  background: #040a22;
}

/* -------------------------------------------------------------------------
   4.5 CABEÇALHO / NAVEGAÇÃO (fixo)
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background-color: rgba(2, 2, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 48px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav__link {
  position: relative;
  font-family: var(--font-text);
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: none;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.site-nav__link:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -22px;
  color: var(--text-muted);
  pointer-events: none;
}
.site-nav__link:hover { color: var(--accent-hover); }
.site-nav__link.active { border-bottom: 2px solid var(--text-light); }

/* Botão hamburguer (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text-light); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding: 170px 20px 90px;
  background-image: radial-gradient(circle at top center, rgba(0, 85, 255, 0.08), transparent 60%);
}
.hero__eyebrow {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5f5f5;
  text-shadow: var(--accent-blue) 0 0 15px;
  margin: 0 0 22px;
}
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 24px;
  text-shadow: rgba(0, 0, 0, 0.4) 0 0 15px;
}
.hero__title span { display: block; }
.hero__subtitle {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 34px;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.4) 0 0 15px;
}

/* Deslocamento das âncoras para não ficar sob o cabeçalho fixo */
section[id], .hero[id] { scroll-margin-top: 88px; }

/* Menu responsivo (mobile/tablet): colapsa atrás do hamburguer */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-header__inner { position: relative; }
  .site-header { background-color: rgba(2, 2, 10, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 5, 20, 0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass);
    padding: 8px 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .site-header.nav-open .site-nav { max-height: 400px; }
  .site-nav__link { padding: 14px 24px; border-bottom: 1px solid var(--border-glass); }
  .site-nav__link:not(:last-child)::after { display: none; }
  .site-nav__link.active { border-bottom: 1px solid var(--border-glass); color: var(--accent-hover); }
}

/* -------------------------------------------------------------------------
   6. SEÇÃO GENÉRICA "CARD" (glass box com fundo destacado)
   ------------------------------------------------------------------------- */
.panel {
  background-color: var(--bg-section);
  background-image: radial-gradient(circle at top center, rgba(0, 85, 255, 0.05), transparent 60%);
  border-radius: var(--radius);
  padding: 70px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 1.5px;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-weight: 400;
}
.section-header h2 span { color: var(--accent-blue); text-shadow: 0 0 15px rgba(0, 85, 255, 0.4); }
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* -------------------------------------------------------------------------
   7. SCP — ABAS (Fase Start / Gear / Ads / Max)
   ------------------------------------------------------------------------- */
.scp-tabs-container { position: relative; margin-bottom: 40px; border-bottom: 1px solid var(--border-color); }
.scp-tabs { display: flex; justify-content: space-between; overflow-x: auto; scrollbar-width: none; position: relative; }
.scp-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  background: transparent; border: none; color: var(--text-muted);
  padding: 15px 20px; cursor: pointer; display: flex; flex-direction: column;
  align-items: center; gap: 10px; flex: 1; min-width: 120px;
  transition: color 0.3s ease; font-family: var(--font-title);
  font-size: 1.5rem; letter-spacing: 1px;
}
.tab-btn svg { width: 28px; height: 28px; fill: currentColor; transition: transform 0.3s ease, filter 0.3s ease; }
.tab-btn:hover { color: var(--text-light); }
.tab-btn.active { color: var(--accent-blue); }
.tab-btn.active svg { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(0, 85, 255, 0.5)); }
.tab-indicator {
  position: absolute; bottom: -1px; height: 3px; background-color: var(--accent-blue);
  border-radius: 3px; box-shadow: 0 0 10px var(--accent-blue); z-index: 2;
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.scp-glass-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px;
  padding: 50px; box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02); min-height: 350px;
}
.scp-pane { display: none; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; animation: fadeInUp 0.5s ease forwards; }
.scp-pane.active { display: grid; }
.pane-text { display: flex; flex-direction: column; gap: 20px; }
.pane-text h3 { font-family: var(--font-title); font-size: 2.5rem; margin: 0; letter-spacing: 1px; font-weight: 400; }
.pane-text p { font-size: 1.05rem; color: var(--text-muted); }
.pane-image { display: flex; align-items: center; justify-content: center; }
.pane-image img { width: 100%; height: auto; max-height: 350px; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4)); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------------------
   8. CIÊNCIA / AUTORIDADE (Breno + Dashboard)
   ------------------------------------------------------------------------- */
.science-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title visuals" "bullets visuals" "button visuals";
  gap: 25px 60px;
  background-image: radial-gradient(circle at center left, rgba(0, 85, 255, 0.08), transparent 50%);
}
.science-title { grid-area: title; align-self: end; font-family: var(--font-title); font-size: clamp(2.4rem, 5vw, 3.2rem); letter-spacing: 1.5px; margin: 0; text-transform: uppercase; line-height: 1.1; font-weight: 400; }
.science-title span { color: var(--accent-blue); text-shadow: 0 0 15px rgba(0, 85, 255, 0.4); }
.science-bullets { grid-area: bullets; align-self: center; list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.science-bullets li {
  position: relative; font-size: 1rem; color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass); padding: 15px 20px 15px 45px;
  border-radius: 12px; transition: transform 0.3s ease, border-color 0.3s ease;
}
.science-bullets li:hover { transform: translateX(10px); border-color: rgba(0, 85, 255, 0.3); background: rgba(0, 85, 255, 0.05); }
.science-bullets li::before { content: ''; position: absolute; left: 20px; top: 22px; width: 10px; height: 10px; background-color: var(--accent-blue); border-radius: 2px; box-shadow: 0 0 10px rgba(0, 85, 255, 0.8); }
.science-bullets li strong { color: var(--text-light); font-weight: 700; font-size: 1.05rem; display: block; margin-bottom: 4px; }
.science-btn-wrapper { grid-area: button; align-self: start; }
.science-visuals { grid-area: visuals; position: relative; width: 100%; min-height: 500px; display: flex; align-items: flex-end; justify-content: center; }
.breno-img { width: 90%; max-width: 450px; height: auto; object-fit: contain; position: relative; z-index: 3; }
.dashboard-img { position: absolute; z-index: 1; top: 10%; right: -5%; width: 85%; max-width: 450px; border-radius: 12px; animation: float 6s ease-in-out infinite; }

@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }

/* -------------------------------------------------------------------------
   9. ECOSSISTEMA 360 — ESTEIRA CURVA
   ------------------------------------------------------------------------- */
.fate-section { position: relative; overflow: hidden; background-image: radial-gradient(circle at top right, rgba(0, 85, 255, 0.05), transparent 60%); }
.conveyor-container { display: grid; grid-template-columns: 250px 1fr; gap: 60px; align-items: center; height: 450px; position: relative; }
.conveyor-belt { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.curved-line { position: absolute; top: -50px; bottom: -50px; left: -150px; width: 250px; border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 50%; border-left: none; border-top: none; border-bottom: none; z-index: 0; }
.belt-item {
  position: absolute; width: 70px; height: 70px; border-radius: 20px; background: #020513;
  border: 2px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1; filter: grayscale(1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, filter 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.belt-item img { width: 85%; height: 85%; object-fit: contain; border-radius: 12px; }
.belt-item:hover { filter: grayscale(0.5); border-color: rgba(255, 255, 255, 0.3); }
.belt-item.active { filter: grayscale(0); border-color: var(--item-color, var(--accent-blue)); box-shadow: 0 0 25px var(--item-color, var(--accent-blue)), inset 0 0 10px var(--item-color, var(--accent-blue)); z-index: 10; }
.belt-item.active::after { content: ''; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid var(--item-color, var(--accent-blue)); }
.content-display { position: relative; display: flex; flex-direction: column; gap: 15px; transition: opacity 0.4s ease, transform 0.4s ease; }
.content-display.fade-out { opacity: 0; transform: translateX(30px); }
.display-icon { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--active-color, var(--accent-blue)); margin-bottom: 5px; }
.display-icon svg { width: 24px; height: 24px; fill: currentColor; }
.content-display h3 { font-family: var(--font-title); font-size: 3rem; margin: 0; letter-spacing: 1px; line-height: 1.1; font-weight: 400; }
.content-display p { font-size: 1.2rem; color: var(--text-muted); margin: 0; line-height: 1.6; max-width: 600px; border-left: 3px solid var(--active-color, var(--accent-blue)); padding-left: 15px; transition: border-color 0.3s ease; }

/* -------------------------------------------------------------------------
   10. RESULTADOS — CARROSSEL 3D (COVERFLOW)
   ------------------------------------------------------------------------- */
.results-section { padding: 60px 0; position: relative; }
.results-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.results-header h2 { font-family: var(--font-title); font-size: clamp(2.6rem, 6vw, 3.5rem); letter-spacing: 1.5px; margin: 0 0 15px; text-transform: uppercase; font-weight: 400; }
.results-header h2 span { color: var(--accent-blue); }
.results-header p { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; font-weight: 300; }
.carousel-container { position: relative; width: 100%; height: 650px; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20; color: var(--text-light); transition: all 0.3s ease; }
.carousel-nav:hover { background: var(--accent-blue); box-shadow: 0 0 20px rgba(0, 85, 255, 0.5); transform: translateY(-50%) scale(1.1); }
.carousel-nav svg { width: 24px; height: 24px; fill: currentColor; }
.nav-prev { left: 5%; }
.nav-next { right: 5%; }
.result-card {
  position: absolute; left: 50%; top: 50%; width: 100%; max-width: 420px; height: 580px;
  background: rgba(10, 10, 26, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass); border-radius: 20px; padding: 35px 30px;
  display: flex; flex-direction: column; box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
}
.result-card.active { transform: translate(-50%, -50%) scale(1); z-index: 10; opacity: 1; filter: blur(0); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 85, 255, 0.1); border-color: rgba(0, 85, 255, 0.3); pointer-events: auto; }
.result-card.prev { transform: translate(-110%, -50%) scale(0.85); z-index: 5; opacity: 0.4; filter: blur(6px); cursor: pointer; }
.result-card.next { transform: translate(10%, -50%) scale(0.85); z-index: 5; opacity: 0.4; filter: blur(6px); cursor: pointer; }
.niche-badge { background: rgba(0, 85, 255, 0.15); color: #6699ff; border: 1px solid rgba(0, 85, 255, 0.3); padding: 6px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; align-self: flex-start; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.result-card h3 { font-family: var(--font-title); font-size: 2rem; margin: 0 0 15px; line-height: 1.1; letter-spacing: 0.5px; font-weight: 400; }
.data-block { margin-bottom: 10px; }
.data-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; display: block; }
.data-text { font-size: 0.9rem; color: #d1d1e0; margin: 0; line-height: 1.4; }
.data-text strong { color: var(--text-light); }
.highlight-box { background: rgba(0, 255, 136, 0.05); border-left: 3px solid var(--accent-green); padding: 12px; border-radius: 0 8px 8px 0; margin: 15px 0; }
.highlight-box p { margin: 0; font-size: 0.9rem; color: #e6ffe6; }
.mini-chart { display: flex; align-items: flex-end; gap: 8px; height: 50px; margin: 15px 0 20px; }
.bar { width: 25px; border-radius: 4px 4px 0 0; position: relative; display: flex; justify-content: center; }
.bar span { position: absolute; top: -20px; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); }
.bar-bad { background: rgba(255, 255, 255, 0.1); }
.bar-good { background: linear-gradient(to top, rgba(0, 85, 255, 0.5), var(--accent-green)); box-shadow: 0 0 15px rgba(0, 255, 136, 0.3); }
.bar-good span { color: var(--accent-green); }
.tech-note { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: auto; }
.golden-metric { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: space-between; }
.metric-value { font-family: var(--font-title); font-size: 2.8rem; color: var(--accent-green); line-height: 1; text-shadow: 0 0 15px rgba(0, 255, 136, 0.4); }
.metric-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; max-width: 140px; text-align: right; font-weight: 600; }

/* -------------------------------------------------------------------------
   11. MERCADOS / NICHOS — CARROSSEL AUTOMÁTICO
   ------------------------------------------------------------------------- */
.markets-section { padding: 60px 0; position: relative; }
.markets-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.markets-header h2 { font-family: var(--font-title); font-size: clamp(2.4rem, 6vw, 3.5rem); letter-spacing: 1.5px; margin: 0; text-transform: uppercase; font-weight: 400; }
.markets-header h2 span { color: var(--accent-blue); text-shadow: 0 0 15px rgba(0, 85, 255, 0.4); }
.markets-track-wrapper { width: 100%; overflow: hidden; position: relative; padding: 20px 0; -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent); mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent); }
.markets-track { display: flex; align-items: center; gap: 12px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 50vw; box-sizing: border-box; }
.markets-track::-webkit-scrollbar { display: none; }
.niche-tab { flex: 0 0 auto; scroll-snap-align: center; background: rgba(10, 10, 26, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-glass); border-radius: 12px; padding: 15px 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: all 0.4s ease; opacity: 0.4; transform: scale(0.9); min-width: 130px; box-sizing: border-box; position: relative; }
.niche-tab svg { width: 28px; height: 28px; fill: currentColor; color: var(--text-muted); transition: color 0.4s ease, transform 0.4s ease; }
.niche-tab span { font-family: var(--font-title); font-size: 1.4rem; color: var(--text-muted); letter-spacing: 1px; white-space: nowrap; transition: color 0.4s ease; }
.niche-tab:hover { opacity: 0.8; transform: scale(0.95); background: rgba(255, 255, 255, 0.05); }
.niche-tab.active { opacity: 1; transform: scale(1.15); background: rgba(0, 85, 255, 0.1); border-color: var(--accent-blue); box-shadow: 0 0 20px rgba(0, 85, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); z-index: 10; }
.niche-tab.active::after { content: ''; position: absolute; bottom: -30px; left: 10%; right: 10%; height: 40px; background: var(--accent-blue); opacity: 0.3; filter: blur(35px); z-index: -1; }
.niche-tab.active svg { color: var(--accent-blue); transform: translateY(-2px); filter: drop-shadow(0 0 5px rgba(0, 85, 255, 0.5)); }
.niche-tab.active span { color: var(--text-light); }
.niche-display-wrapper { max-width: 550px; margin: 20px auto 0; padding: 0 20px; }
.niche-display { background: rgba(6, 8, 20, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-glass); border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); transition: opacity 0.4s ease, transform 0.4s ease; }
.niche-display.fade-out { opacity: 0; transform: translateY(10px); }
.niche-display p { font-size: 1.25rem; color: var(--text-light); margin: 0; line-height: 1.5; font-weight: 300; }

/* -------------------------------------------------------------------------
   12. COMPARATIVO — TABELA LIQUID GLASS
   ------------------------------------------------------------------------- */
.comparison-section { position: relative; padding: 60px 0; max-width: var(--maxw); margin: 0 auto; overflow-x: hidden; }
.liquid-blob { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; opacity: 0.5; animation: liquidMove 15s infinite alternate ease-in-out; }
.blob-1 { width: 300px; height: 300px; background: rgba(0, 85, 255, 0.6); top: 10%; left: 10%; }
.blob-2 { width: 350px; height: 350px; background: rgba(0, 255, 136, 0.3); bottom: 10%; right: 10%; animation-delay: -5s; }
@keyframes liquidMove { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(100px, 50px) scale(1.2); } 100% { transform: translate(-50px, 100px) scale(0.9); } }
.comp-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; padding: 0 20px; }
.comp-header h2 { font-family: var(--font-title); font-size: clamp(2.4rem, 6vw, 3.5rem); letter-spacing: 1.5px; margin: 0 0 15px; text-transform: uppercase; font-weight: 400; }
.comp-header h2 span { color: var(--accent-blue); }
.comp-header p { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; font-weight: 300; }
.comp-table-wrapper { position: relative; z-index: 2; background: rgba(10, 10, 26, 0.4); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid var(--border-glass); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02); display: flex; flex-direction: column; margin: 0 20px; }
.comp-row { display: grid; grid-template-columns: 1.2fr 1.5fr 1.5fr; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.comp-row:last-child { border-bottom: none; }
.comp-cell { padding: 25px 20px; display: flex; align-items: center; font-size: 1.05rem; border-right: 1px solid rgba(255, 255, 255, 0.03); }
.comp-cell:last-child { border-right: none; }
.comp-row.header-row { background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.comp-cell.header { font-family: var(--font-title); font-size: 1.8rem; letter-spacing: 1px; justify-content: center; text-align: center; font-weight: 400; }
.comp-cell.feature { font-weight: 700; color: var(--text-light); }
.comp-cell.traditional { color: var(--text-muted); }
.comp-cell.fate { background: linear-gradient(90deg, rgba(0, 85, 255, 0.05), rgba(0, 255, 136, 0.05)); color: var(--text-light); font-weight: 600; }
.comp-cell.header.fate { background: linear-gradient(90deg, rgba(0, 85, 255, 0.15), rgba(0, 255, 136, 0.1)); color: var(--accent-green); text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); box-shadow: inset 0 -2px 0 rgba(0, 255, 136, 0.5); }
.comp-icon { width: 20px; height: 20px; flex-shrink: 0; margin-right: 15px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.icon-x { background: rgba(255, 51, 51, 0.1); color: var(--accent-red); border: 1px solid rgba(255, 51, 51, 0.3); }
.icon-check { background: rgba(0, 255, 136, 0.1); color: var(--accent-green); border: 1px solid rgba(0, 255, 136, 0.3); box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
.comp-icon svg { width: 12px; height: 12px; fill: currentColor; }
.comp-cell.traditional > div, .comp-cell.fate > div { display: flex; align-items: center; gap: 10px; }

/* CTAs finais empilhados */
.final-ctas { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 50px 20px 80px; }

/* -------------------------------------------------------------------------
   13. RODAPÉ
   ------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border-glass); padding: 40px 20px; text-align: center; color: var(--text-muted); font-size: 0.9rem; }
.site-footer a { color: var(--accent-blue); text-decoration: none; }

/* Rodapé completo (navegação + contato + redes) */
.footer {
  border-top: 1px solid var(--border-glass);
  background: linear-gradient(180deg, transparent, rgba(0, 85, 255, 0.04));
  padding: 60px 20px 30px;
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img { height: 60px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--text-muted); font-size: 0.85rem; margin: 4px 0; }
.footer__col h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-light);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.25s ease; }
.footer__col a:hover { color: var(--accent-hover); }
.footer__group-label { color: var(--text-light) !important; font-weight: 700; margin-top: 8px; cursor: default; }
.footer__contact p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 12px; line-height: 1.5; }
.footer__contact strong { color: var(--text-light); }
.footer__contact a { color: var(--accent-blue); text-decoration: none; }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__social a svg { width: 22px; height: 22px; fill: currentColor; }
.footer__social a:hover { transform: translateY(-3px); }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-wa { background: #25d366; }
.social-yt { background: #ff0000; }
.footer__bottom {
  max-width: var(--maxw); margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid var(--border-glass);
  text-align: center; color: var(--text-muted); font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__col ul { align-items: center; }
  .footer__brand img { margin-inline: auto; }
  .footer__social { justify-content: center; }
}

/* -------------------------------------------------------------------------
   14. MODAL WHATSAPP
   ------------------------------------------------------------------------- */
.wa-modal-overlay { display: none; position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 99999; align-items: center; justify-content: center; animation: fadeIn 0.3s ease forwards; }
.wa-modal-overlay.open { display: flex; }
.wa-modal { width: 350px; max-width: 92vw; background: #e5ddd5; border-radius: 10px; overflow: hidden; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; font-family: 'Segoe UI', var(--font-text); }
.wa-modal *, .wa-modal *::before, .wa-modal *::after { box-sizing: border-box; }
.wa-header { background: #075e54; color: #fff; padding: 15px; display: flex; align-items: center; gap: 15px; position: relative; }
.wa-avatar { width: 40px; height: 40px; background: #fff; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-avatar img { width: 90%; height: 90%; object-fit: contain; }
.wa-header-info h4 { margin: 0; font-size: 16px; }
.wa-header-info p { margin: 0; font-size: 12px; color: #d1d1d1; }
.wa-body { padding: 20px; display: flex; flex-direction: column; gap: 15px; background-color: #e5ddd5; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23d9cfc4' fill-opacity='0.4'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E"); }
.wa-message { background: #fff; padding: 12px 15px; border-radius: 0 10px 10px 10px; font-size: 14px; color: #333; max-width: 95%; align-self: flex-start; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); line-height: 1.4; }
.wa-form { display: flex; flex-direction: column; gap: 10px; margin-top: 5px; }
.wa-input { padding: 12px; border: 1px solid #ccc; border-radius: 20px; outline: none; font-size: 14px; font-family: inherit; transition: border-color 0.3s; }
.wa-input:focus { border-color: #25d366; }
.wa-submit { background: #25d366; color: #fff; border: none; padding: 12px; border-radius: 20px; font-weight: bold; cursor: pointer; font-family: inherit; transition: background 0.3s, transform 0.1s; }
.wa-submit:hover { background: #1ebd5a; }
.wa-submit:active { transform: scale(0.98); }
.wa-submit:disabled { opacity: 0.7; cursor: default; }
.wa-close { position: absolute; top: 15px; right: 20px; color: #fff; font-size: 20px; cursor: pointer; opacity: 0.8; transition: opacity 0.2s; line-height: 1; background: none; border: none; }
.wa-close:hover { opacity: 1; }
.wa-watermark { display: flex; justify-content: center; align-items: center; gap: 5px; font-size: 11px; color: #666; margin-top: 10px; }
.wa-watermark a { display: flex; align-items: center; text-decoration: none; }
.wa-watermark img { height: 30px; width: auto; object-fit: contain; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   RESPONSIVIDADE
   ========================================================================= */
@media (max-width: 1024px) {
  .science-section { grid-template-columns: 1fr; grid-template-areas: "title" "visuals" "bullets" "button"; gap: 40px; }
  .science-title { text-align: center; }
  .science-btn-wrapper { display: flex; justify-content: center; width: 100%; }
  .science-visuals { min-height: 400px; }
  .result-card.prev { transform: translate(-90%, -50%) scale(0.85); }
  .result-card.next { transform: translate(-10%, -50%) scale(0.85); }
  .nav-prev { left: 2%; } .nav-next { right: 2%; }
}

@media (max-width: 900px) {
  .panel { padding: 50px 20px; }
  .scp-glass-box { padding: 30px 20px; }
  .scp-pane { grid-template-columns: 1fr; gap: 40px; }
  .scp-pane .pane-image { order: 1; }
  .scp-pane .pane-text { order: 2; align-items: center; text-align: center; }
  .conveyor-container { grid-template-columns: 1fr; grid-template-rows: 200px auto; gap: 20px; height: auto; }
  .curved-line { top: -100px; bottom: auto; left: -50px; right: -50px; width: auto; height: 200px; border: 2px solid rgba(255, 255, 255, 0.1); border-top: none; border-left: none; border-right: none; }
  .belt-item.active::after { right: auto; top: auto; bottom: -20px; left: 50%; transform: translateX(-50%); border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 15px solid var(--item-color, var(--accent-blue)); border-bottom: none; }
  .content-display { align-items: center; text-align: center; }
  .content-display p { border-left: none; border-top: 3px solid var(--active-color, var(--accent-blue)); padding-left: 0; padding-top: 15px; margin-top: 5px; }
  .display-icon { display: none; }
  /* Comparativo vira carrossel de cards */
  .comp-table-wrapper { background: transparent; border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding-bottom: 20px; scrollbar-width: none; }
  .comp-table-wrapper::-webkit-scrollbar { display: none; }
  .comp-row.header-row { display: none; }
  .comp-row { display: flex; flex-direction: column; background: rgba(10, 10, 26, 0.6); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--border-glass); border-radius: 16px; padding: 25px 20px; flex: 0 0 85vw; scroll-snap-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); box-sizing: border-box; gap: 15px; }
  .comp-cell { padding: 0; border: none; }
  .comp-cell.feature { font-family: var(--font-title); font-size: 1.8rem; color: var(--accent-blue); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; justify-content: center; text-align: center; font-weight: 400; }
  .comp-cell.traditional, .comp-cell.fate { background: transparent; flex-direction: column; align-items: flex-start; gap: 10px; padding: 15px; border-radius: 12px; }
  .comp-cell.traditional { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); }
  .comp-cell.fate { background: linear-gradient(135deg, rgba(0, 85, 255, 0.1), rgba(0, 255, 136, 0.05)); border: 1px solid rgba(0, 255, 136, 0.2); box-shadow: inset 0 0 15px rgba(0, 255, 136, 0.05); }
  .comp-cell.traditional::before { content: 'Mercado / Freelancers'; font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
  .comp-cell.fate::before { content: 'O Padrão FATE'; font-size: 0.75rem; text-transform: uppercase; color: var(--accent-green); font-weight: 700; }
  .comp-icon { margin-right: 0; margin-bottom: 5px; }
}

@media (max-width: 768px) {
  .carousel-container { height: 600px; }
  .result-card { max-width: 85%; height: auto; min-height: 520px; padding: 25px 20px; }
  .result-card.prev { transform: translate(-120%, -50%) scale(0.8); opacity: 0.2; }
  .result-card.next { transform: translate(20%, -50%) scale(0.8); opacity: 0.2; }
  .carousel-nav { top: auto; bottom: -10px; transform: none; }
  .nav-prev { left: 30%; } .nav-next { right: 30%; }
  .carousel-nav:hover { transform: scale(1.1); }
  .markets-track-wrapper { -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
}

@media (max-width: 600px) {
  .science-bullets li { padding: 15px 15px 15px 40px; }
  .science-bullets li::before { left: 15px; }
  .dashboard-img { width: 90%; right: 50%; transform: translateX(50%); top: 0; animation: float-mobile 6s ease-in-out infinite; }
  @keyframes float-mobile { 0% { transform: translateX(50%) translateY(0); } 50% { transform: translateX(50%) translateY(-15px); } 100% { transform: translateX(50%) translateY(0); } }
}
