/* ---------- TOKENS TEMA CLARO/ESCURO ---------- */
:root{
  --bg: hsl(0 0% 100%);
  --text: hsl(222 22% 10%);
  --muted: hsl(222 10% 45%);
  --surface: hsl(0 0% 98%);
  --primary: hsl(222 85% 55%);
  --radius: 14px;
  --shadow: 0 8px 24px hsl(222 50% 10% / .08), 0 2px 8px hsl(222 50% 10% / .06);
  --verde: hsl(178 71% 45%);
  --border: hsl(0 0% 0% / .08);
  --row: #fff;
  --row-alt: hsl(0 0% 98%);
  --row-hover: hsl(221 83% 52% / .06);
  --head-bg: hsl(221 83% 52% / .15);

  --accent: hsl(199 89% 48%);
  --danger: hsl(0 90% 71%);
  --bg-soft: hsl(210 20% 98%);
  --text-soft: hsl(222 10% 55%);
}

body.dark{
  --bg: hsl(222 18% 9%);
  --text: hsl(0 0% 96%);
  --muted: hsl(222 8% 70%);
  --surface: hsl(222 18% 12%);
  --primary: hsl(222 85% 66%);
  --shadow: 0 10px 24px hsl(0 0% 0% / .35), 0 2px 10px hsl(0 0% 0% / .25);
  --verde: hsl(178 71% 45% / .50);
  --border: hsl(0 0% 100% / .10);
  --row: hsl(222 18% 12%);
  --row-alt: hsl(222 18% 10%);
  --row-hover: hsl(221 83% 63% / .10);
  --head-bg: hsl(221 83% 52% / .25);

  --accent: hsl(199 89% 60%);
  --danger: hsl(0 90% 71%);
  --bg-soft: hsl(222 18% 11%);
  --text-soft: hsl(222 8% 72%);
}

* {
  box-sizing: border-box;
}

/* ---------- fullpage -------------*/

/* Garante que quem rola é o #fullpage */
html, body {
  height: 100%;
  overflow: hidden;
}

/* Container de rolagem em tela cheia */
#fullpage {
  height: 100vh;
  width: 100%;
  overflow-y: auto;
  scroll-behavior: auto; /* JS já cuida do smooth */
  position: relative;
}

/* Cada seção ocupa pelo menos a tela inteira */
#fullpage .section {
  min-height: 100vh;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

#fullpage .section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Navegação lateral (bolinhas) */
.nav-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  z-index: 50;
}

.nav-dots li {
  margin: 8px 0;
}

.nav-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: block;
  transition: all 0.3s ease;
}

.nav-dots button.active {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .nav-dots {
    right: 10px;
  }
}

/*-----------------*/

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background .25s ease, color .25s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- HERO / TIPOGRAFIA ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 40%, transparent);
}

.hero-title {
  font-size: clamp(34px, 5vw, 42px);
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.hero-title span {
  color: var(--primary);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
}

.hero-badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  color: var(--muted);
  background: var(--surface);
}

/* ---------- HERO CARD (CHAT) ---------- */
.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 16px 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11px;
  color: var(--muted);
}

.hero-chip {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  color: var(--muted);
}

.hero-status {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 35%, transparent);
}

.chat-bubble {
  border-radius: 16px;
  padding: 8px 10px;
  font-size: 12px;
  margin-bottom: 6px;
  max-width: 92%;
}

.chat-bubble.user {
  margin-left: auto;
  background: var(--bg);
  border-bottom-right-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.chat-bubble.bot {
  background: color-mix(in srgb, var(--primary) 7%, var(--surface));
  border-bottom-left-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
}

.chat-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px dashed color-mix(in srgb, var(--border) 60%, transparent);
  padding-top: 10px;
}

.chat-avatar {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-card-float {
  position: absolute;
  bottom: 18px;
  right: 14px;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-float span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

/* ---------- GRID / CARDS / LIST ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  box-shadow: var(--shadow);
}

.card-soft {
  background: var(--surface);
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  font-size: 13px;
  color: var(--muted);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.list li::before {
  content: "•";
  color: var(--primary);
  font-size: 14px;
  margin-top: 1px;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 520px;
}

/* ---------- BOTÕES ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: hsl(222 85% 55% / .75);
  border-color: var(--primary);
}

.btn-verde {
  background: var(--verde);
  color: white;
}

.btn-verde:hover {
  background: hsl(178 71% 45% / .75);
  border-color: var(--verde);
}

/* ---------- LAYOUT GERAL DOS SLIDES ---------- */

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(circle at top, color-mix(in srgb, var(--bg) 70%, #020617), var(--bg));
  color: var(--text);
}

.content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

h1, h2 {
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ---------- LAYOUTS PADRÃO DE SEÇÃO ---------- */

/* 2 colunas genérico */
.section-two-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.section-two-col .col {
  width: 100%;
}

/* Variante com colunas invertidas no desktop */
.section-two-col.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .section-two-col {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .section-two-col .col {
    width: 50%;
  }

  .section-two-col.reverse {
    flex-direction: row-reverse;
  }
}

/* 1 coluna (como CTA final) */
.section-one-col .content {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .section-one-col .content {
    max-width: 90%;
  }
}

/* Hero específico */
.hero-section .hero-wrapper {
  align-items: center;
}

/* ---------- UTILITÁRIOS DE VISIBILIDADE ---------- */

/* Esconder no mobile (mostrar só no desktop) */
.hide-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .hide-mobile {
    display: block !important;
  }
}

/* Esconder no desktop (mostrar só no mobile) */
.hide-desktop {
  display: block !important;
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Trecho de texto extra só no desktop */
.extra-desktop {
  display: none;
}
@media (min-width: 768px) {
  .extra-desktop {
    display: inline;
  }
}

/* ---------- RESPONSIVO GRID BÁSICO ---------- */

@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .section {
    padding: 32px 16px;
  }
}

/* ---------- LOGO / BOTÕES FIXOS ---------- */

.logo {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 999;
}

.logo .logo-full { 
  display: block; 
  width: 120px;
  height: auto;
}

.logo .logo-full.dark  { display: none; }
body.dark .logo .logo-full.light { display: none; }
body.dark .logo .logo-full.dark  { display: block; }

.btn-theme {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  box-shadow: var(--shadow);
  position: fixed;
  top: 16px;
  right: 30px;
  z-index: 999;
}

.btn-voltar {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  box-shadow: var(--shadow);
  position: fixed;
  top: 16px;
  right: 72px;
  z-index: 999;
}

.btn-theme i,
.btn-voltar i {
  font-size: 14px;
  margin-right: 3px;
}

.btn-theme:hover,
.btn-voltar:hover {
  border-color: var(--primary);
  color: var(--text);
}

/* ---------- SLIDE 6: CTA Final ---------- */

#sec6 .cta-final {
  text-align: left;
}

/* (opcional) CAIXA COM FUNDO, se quiser reativar
#sec6 .cta-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  box-shadow: var(--shadow);
  text-align: left;
}
*/

/*------------- watermark fullPage antiga ------------*/
.fp-watermark {
  display: none !important;
}
