/* =========================================================
   PLATAFORMA ARTIFICIALL – style.css
   Design System: "The Kinetic Prestige" (Stitch)
   Fontes: Manrope (headlines) + Inter (body)
   Cor principal: Royal Blue #0047AB | Gold: #FFD700
   Modo: Dark
   ========================================================= */

/* ---- Design Tokens (Stitch Named Colors) ---- */
:root {
  /* Surfaces – hierarquia de camadas físicas */
  --bg:                   #131313;   /* Base Layer: canvas infinito */
  --surface-dim:          #131313;
  --surface:              #131313;
  --surface-lo:           #1b1b1b;   /* Section Layer */
  --surface-container:    #1f1f1f;
  --surface-hi:           #2a2a2a;   /* Component Layer – cards */
  --surface-highest:      #353535;
  --surface-bright:       #393939;   /* Floating Layer – tooltips/modals */

  /* Primary (Royal Blue) */
  --primary:              #b1c5ff;
  --primary-cont:         #0047ab;
  --primary-dim:          #b1c5ff;
  --on-primary:           #002c70;
  --on-primary-cont:      #a5bdff;
  --inverse-primary:      #2559bd;

  /* Secondary (Neutral) */
  --secondary:            #c6c6c6;
  --secondary-cont:       #474747;
  --on-secondary:         #303030;

  /* Tertiary (Gold) – apenas para premium/sucesso */
  --tertiary:             #e9c400;
  --tertiary-cont:        #c9a900;
  --tertiary-fixed:       #ffe16d;
  --on-tertiary:          #3a3000;

  /* On-Surface */
  --on-surface:           #e2e2e2;
  --on-surface-var:       #c3c6d5;

  /* Error */
  --error:                #ffb4ab;
  --on-error:             #690005;

  /* Outline */
  --outline:              #8d909e;
  --outline-var:          #434653;

  /* Atalhos semânticos */
  --gold:          var(--tertiary);
  --gold-dim:      var(--tertiary-cont);
  --text:          var(--on-surface);
  --text-muted:    var(--on-surface-var);

  /* Gradientes assinatura */
  --grad-primary: linear-gradient(135deg, var(--primary), var(--primary-cont));
  --grad-hero-bg: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 71, 171, 0.38) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 40% at 80% 80%, rgba(233, 196, 0, 0.07) 0%, transparent 60%);

  /* Raio de borda – sem "pill" para elementos principais */
  --r-sm:  0.25rem;
  --r-md:  0.375rem;   /* border-radius md */
  --r-lg:  0.75rem;
  --r-xl:  1rem;

  /* Transição padrão: 300ms Ease-Out */
  --ease: 300ms ease-out;

  /* Sombra ambiente (navy tint, não preto puro) */
  --shadow-float: 0px 20px 40px rgba(0, 20, 60, 0.40);
  --shadow-card:  0 12px 30px rgba(0, 10, 40, 0.35);

  /* Tipografia */
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-w: 1200px;
}

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* =========================================================
   INSIGHT PULSE – chip animado de IA (Stitch Signature)
   ========================================================= */
.insight-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.insight-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: pulse-ai 2s ease-out infinite;
}
@keyframes pulse-ai {
  0%   { transform: scale(1);   opacity: 0.4; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* =========================================================
   BUTTONS – "Command Elements" (Stitch)
   Primary: gradiente, sem sombra
   Secondary: outline tertiary (gold) 40% opacidade
   Tertiary: texto puro + ícone + seta
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.btn--sm   { padding: 0.5rem 1.375rem; font-size: 0.875rem; }
.btn--md   { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
.btn--lg   { padding: 0.9375rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* Primário: gradiente azul → royal blue */
.btn--primary {
  background: var(--grad-primary);
  color: var(--text);
}
.btn--primary:hover { opacity: 1; box-shadow: 0 6px 24px rgba(177, 197, 255, 0.2); }

/* Outline: para ações secundárias (sem pipeline gold aqui, gold é só premium) */
.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(67, 70, 83, 0.65);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(177, 197, 255, 0.05);
}

/* Ghost: fundo quase invisível */
.btn--ghost {
  background: rgba(177, 197, 255, 0.06);
  color: var(--text-muted);
}
.btn--ghost:hover { background: rgba(177, 197, 255, 0.12); color: var(--text); }

/* WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  flex-wrap: wrap;
  padding: 1.1rem 2.75rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
  border-radius: var(--r-lg);
}
.btn--whatsapp:hover {
  opacity: 1;
  box-shadow: 0 14px 45px rgba(37, 211, 102, 0.35);
}
.btn__subtext { font-size: 0.75rem; font-weight: 400; opacity: 0.85; width: 100%; text-align: center; }
.btn__icon  { font-size: 1.25rem; }
.btn__arrow { font-size: 1.25rem; margin-left: 0.25rem; }

/* =========================================================
   NAVBAR – Glassmorphism 70% opacity + 20px blur (Stitch)
   ========================================================= */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  /* Glassmorphism: surface #131313 a 70% + backdrop-blur 20px */
  background: rgba(19, 19, 19, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--ease);
}
/* Ghost border ao estilo Stitch: sentida, não vista */
.navbar::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: rgba(67, 70, 83, 0.15);
}
.navbar.scrolled {
  background: rgba(19, 19, 19, 0.92);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.navbar__logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
/* Logo PNG */
.navbar__logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* Boost de brilho no dark background */
  filter: brightness(1.1);
  transition: opacity var(--ease);
}
.navbar__logo-img:hover { opacity: 0.85; }
/* Logo maior no footer */
.footer__brand .navbar__logo-img {
  height: 36px;
}

.navbar__nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.navbar__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--ease);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--ease);
}
.navbar__link:hover { color: var(--text); }
.navbar__link:hover::after { width: 100%; }

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.3rem;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.navbar__hamburger:hover { background: rgba(177, 197, 255, 0.08); }

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 2rem 2rem;
  background: rgba(19, 19, 19, 0.97);
  backdrop-filter: blur(20px);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__link {
  padding: 0.875rem 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  /* Sem border: segue a "No-Line Rule" do Stitch */
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-menu__link:hover { color: var(--text); padding-left: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* =========================================================
   SECTIONS – layout compartilhado
   Separação via tonal-shift (sem borders!) – Stitch "No-Line Rule"
   ========================================================= */
.section { padding-block: 6.5rem; }
.section--alt { background: var(--surface-lo); }  /* Tonal Shift: surface-container-low */

.section__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-block: 7.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero__bg-blur {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-bg);
  pointer-events: none;
  z-index: 0;
}
/* Partícula de fundo sutil */
.hero__bg-blur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 30% 30% at 20% 70%, rgba(0, 71, 171, 0.10) 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Badge: "Ecossistema de IA Unificado" */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(233, 196, 0, 0.08);
  border: 1px solid rgba(233, 196, 0, 0.20);
  border-radius: 999px;
  padding: 0.4rem 1.125rem;
  margin-bottom: 2.25rem;
}

/* Título: Manrope display-lg, máximo impacto */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 5.25rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
@media (max-width: 768px) { .br-desktop { display: none; } }

/* Subtítulo: on-surface-variant (evita halação) */
.hero__subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

/* Stats */
.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__stat-icon {
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
  filter: drop-shadow(0 0 8px rgba(233, 196, 0, 0.35));
}
.hero__stat-label {
  font-size: 0.875rem;
  color: var(--text);
  display: block;
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* Divisor: ghost border (15% opacidade) */
.hero__stat-divider {
  width: 1px;
  height: 2.75rem;
  background: var(--outline-var);
  opacity: 0.20;
}

/* =========================================================
   CARD – "Intelligence Container" (Stitch)
   Regras: sem bordas, sem divisores, surface-container-high
   Padding interno: spacing-6 (1.5rem)
   ========================================================= */
.card {
  background: var(--surface-hi);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* =========================================================
   ECOSYSTEM / MODELOS
   ========================================================= */
.subsection__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.subsection__desc {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.75rem;
  font-size: 1rem;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.ecosystem-card { display: flex; flex-direction: column; gap: 1rem; }

/* Icon wrap: surface-container-high aninhado dentro de card */
.card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__icon-wrap--blue { background: rgba(177, 197, 255, 0.12); color: var(--primary); }
.card__icon-wrap--gold { background: rgba(233, 196, 0, 0.10);   color: var(--gold); }

.card__title {
  font-family: var(--font-display);
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
/* Ícone gold ao lado do título: denota AI-generated (Stitch) */
.card__title--ai::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
}
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.feature-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.feature-list__icon { font-size: 1rem; color: var(--primary); flex-shrink: 0; }
.feature-list--agent .feature-list__icon { color: var(--gold); }

/* =========================================================
   AGENTS GRID
   ========================================================= */
.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) { .agents-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .agents-grid { grid-template-columns: 1fr 1fr; } }

.agent-card { display: flex; flex-direction: column; gap: 1.25rem; }
/* Destaque JusPró: ghost border gold 25% (Stitch "Ghost Border Fallback") */
.agent-card--highlight {
  border: 1px solid rgba(233, 196, 0, 0.25);
  background: linear-gradient(160deg, rgba(233, 196, 0, 0.03) 0%, var(--surface-hi) 50%);
}
.agent-card__header { display: flex; align-items: center; gap: 1rem; }
.agent-card__avatar {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agent-card__avatar .material-icons { font-size: 1.75rem; }
.agent-card__avatar--arth { background: rgba(177, 197, 255, 0.12); color: var(--primary); }
.agent-card__avatar--chef { background: rgba(233, 196, 0, 0.10);   color: var(--gold); }
.agent-card__avatar--jus  { background: rgba(233, 196, 0, 0.10);   color: var(--gold); }

.agent-card__badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
}
.agent-card__badge--gold { color: var(--gold); }
.agent-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.agent-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.agent-card__cta { align-self: flex-start; margin-top: auto; }

/* JusPró */
.juspro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.juspro-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.juspro-feature__icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.juspro-feature strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.juspro-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.juspro-meta { display: flex; flex-direction: column; gap: 0.75rem; }
.juspro-meta__item { display: flex; flex-direction: column; gap: 0.2rem; }
.juspro-meta__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.juspro-meta__value {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================
   HOW IT WORKS – steps
   ========================================================= */
.steps-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  flex: 1;
  min-width: 160px;
  padding: 1.25rem 1rem;
}
.step__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.75;
}
.step__icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--surface-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background var(--ease), color var(--ease);
}
.step:hover .step__icon-wrap {
  background: rgba(177, 197, 255, 0.12);
}
.step__icon-wrap .material-icons { font-size: 1.6rem; }
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.step__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Conector: gradiente do outline para primary */
.step__connector {
  flex: 0 0 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  align-self: center;
  opacity: 0.35;
}
@media (max-width: 600px) { .step__connector { display: none; } }

/* Integrações */
.integrations__label {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.integration-tag {
  background: var(--surface-hi);
  border: 1px solid rgba(67, 70, 83, 0.30);
  border-radius: 999px;
  padding: 0.375rem 1.125rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.integration-tag:hover {
  border-color: rgba(177, 197, 255, 0.4);
  color: var(--primary);
  background: rgba(177, 197, 255, 0.05);
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
/* Grid específico para 5 planos */
.pricing-grid--5col {
  grid-template-columns: repeat(3, 1fr); /* padrão: 3 colunas */
}
@media (min-width: 1440px) {
  .pricing-grid--5col { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid--5col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid--5col { grid-template-columns: 1fr; }
}

/* Container mais largo para a seção de preços (para acomodar 5 cards) */
#pricing .container {
  max-width: 1440px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}
/* Badge "Mais Popular" */
.pricing-card__badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--on-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.125rem;
  border-radius: 999px;
  white-space: nowrap;
}
/* Featured: ghost border primary */
.pricing-card--featured {
  border: 1px solid rgba(177, 197, 255, 0.28);
  background: var(--surface-highest);
}
.pricing-card__header { display: flex; flex-direction: column; gap: 0.3rem; }
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-card__tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* Bloco de preço */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-card__amount--consult {
  font-size: 1.15rem;
  color: var(--gold);
}
.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Item bônus – destaque gold sutil */
.pricing-list__item--bonus {
  color: var(--gold);
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  margin-inline: -0.5rem;
  background: rgba(233, 196, 0, 0.06);
  border-radius: var(--r-sm);
}

/* Nota de aviso dentro do card */
.pricing-card__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
  line-height: 1.5;
  font-style: italic;
}

/* Footnote da seção */
.pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.65;
}

.pricing-list { display: flex; flex-direction: column; gap: 0.875rem; flex-grow: 1; }
.pricing-list__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-list__icon { font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.pricing-list__icon--gold { color: var(--gold); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
  position: relative;
}
.testimonial__text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial__footer { display: flex; align-items: center; gap: 0.875rem; }
.testimonial__avatar {
  width: 40px; height: 40px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--on-primary);
  flex-shrink: 0;
  font-style: normal;
}
.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}

/* =========================================================
   CTA / CONTATO
   ========================================================= */
.cta-section {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0, 71, 171, 0.18) 0%, transparent 70%),
    var(--bg);
}
.cta-section__inner { text-align: center; }
.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.cta-section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

/* =========================================================
   FOOTER
   Tonal shift: surface-container-low
   ========================================================= */
.footer {
  background: var(--surface-lo);
  padding-block: 4.5rem 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer__nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.footer__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer__link:hover { color: var(--primary); }

/* Ghost border no footer bottom: sentida não vista */
.footer__bottom {
  border-top: 1px solid rgba(67, 70, 83, 0.12);
  padding-block: 1.5rem;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.75;
}

/* =========================================================
   ECOSYSTEM BADGE + CTA
   ========================================================= */
/* Badge "Disponível na Plataforma" – gold sutil, pill */
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(233, 196, 0, 0.08);
  border: 1px solid rgba(233, 196, 0, 0.18);
  align-self: flex-start;
}

/* CTA de encerramento da seção */
.ecosystem-cta {
  text-align: center;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ecosystem-cta__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.ecosystem-cta__text strong { color: var(--text); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .container { padding-inline: 1.25rem; }
  .section    { padding-block: 4.5rem; }
  .navbar__nav, #nav-cta { display: none; }
  .navbar__hamburger { display: flex; }
  .agents-grid       { grid-template-columns: 1fr; }
  .juspro-features   { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .hero__stats       { gap: 2rem; }
  .hero__stat-divider{ display: none; }
  .step              { min-width: 130px; }
}
@media (max-width: 480px) {
  .hero__title { letter-spacing: -0.02em; }
  .hero__badge { font-size: 0.68rem; }
  .cta-section__title { font-size: 2rem; }
}

/* =========================================================
   SCROLL ANIMATIONS – entrada suave
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .agent-card,
  .pricing-card,
  .testimonial,
  .step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow var(--ease);
  }
  .card.visible,
  .agent-card.visible,
  .pricing-card.visible,
  .testimonial.visible,
  .cloud-card.visible,
  .cloud-map-container.visible,
  .step.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   MICROINTERAÇÕES – EFEITOS DE LUXO
   ========================================================= */

/* Respeitar preferência por movimento reduzido (reforço) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 1. CARDS DE PLANOS – Lift & Premium Shadow */
@media (prefers-reduced-motion: no-preference) {
  .pricing-card.visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 71, 171, 0.20);
  }
  .pricing-card--featured.visible:hover {
    box-shadow: 0 22px 48px rgba(177, 197, 255, 0.22);
  }
}

/* 2. CARDS DO ECOSSISTEMA – Borda Animada */
.ecosystem-card {
  border: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform var(--ease);
}
.ecosystem-card:hover {
  border-color: rgba(177, 197, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(177, 197, 255, 0.06);
}

/* 3. BOTÕES – Overlay sutil no hover */
.btn--primary,
.btn--outline {
  position: relative;
  overflow: hidden;
}
.btn--primary::after,
.btn--outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn--primary:hover::after,
.btn--outline:hover::after {
  opacity: 1;
}

/* 4. LINKS DO MENU – Highlighter mais rápido */
.navbar__link::after {
  transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 5. CARD PRÓ EMPRESAS – Varredura dourada especial */
@media (prefers-reduced-motion: no-preference) {
  .pricing-card:last-child {
    position: relative;
    overflow: hidden;
  }
  .pricing-card:last-child::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -70%;
    width: 220%;
    height: 220%;
    background: linear-gradient(
      115deg,
      transparent 35%,
      rgba(233, 196, 0, 0.07) 50%,
      transparent 65%
    );
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 0;
  }
  .pricing-card:last-child:hover::before {
    transform: rotate(25deg) translateX(60%);
  }
  .pricing-card:last-child > * {
    position: relative;
    z-index: 1;
  }
}

/* 6. INTEGRATION TAGS – Float sutil no hover */
.integration-tag {
  transition:
    border-color var(--ease),
    color var(--ease),
    background var(--ease),
    transform 0.2s ease;
}
.integration-tag:hover {
  transform: translateY(-2px);
}

/* 7. AGENT CARD CTA – Seta deslizante */
.agent-card__cta {
  transition:
    opacity var(--ease),
    transform var(--ease),
    box-shadow var(--ease),
    padding-right 0.18s ease;
}
.agent-card__cta:hover {
  padding-right: 1.75rem;
}

/* =========================================================
   BOTÃO FLUTUANTE – WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s ease;
  animation: pulse-whatsapp 2.5s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.55);
  animation: none; /* pausa o pulso no hover */
  opacity: 1;
}

/* Ícone SVG */
.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #075E54;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
/* Seta da tooltip */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 7px 0 7px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #075E54;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Animação de pulso */
@keyframes pulse-whatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-icon { width: 30px; height: 30px; }
  .whatsapp-tooltip { display: none; } /* tooltip oculto em mobile */
}

/* Respeitar preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
    transition: none;
  }
}

/* =========================================================
   ARTIFICIALL CLOUD – futuristic map and services
   ========================================================= */
.section--cloud {
  background: radial-gradient(circle at 10% 20%, rgba(0, 71, 171, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(233, 196, 0, 0.05) 0%, transparent 40%);
  overflow: hidden;
  position: relative;
}

.cloud-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  background: var(--surface-dim);
  border-radius: var(--r-xl);
  margin-bottom: 4rem;
  border: 1px solid rgba(177, 197, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.cloud-map-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(177, 197, 255, 0.03) 0px, rgba(177, 197, 255, 0.03) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
  z-index: 1;
}

.cloud-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-path {
  fill: rgba(177, 197, 255, 0.03);
  stroke: rgba(177, 197, 255, 0.15);
  stroke-width: 0.5;
  filter: drop-shadow(0 0 5px rgba(177, 197, 255, 0.1));
}

/* Markers */
.marker {
  fill: var(--primary);
  stroke: #fff;
  stroke-width: 1;
}

.marker--pulse {
  animation: marker-pulse 2s infinite;
  transform-origin: center;
}

@keyframes marker-pulse {
  0%   { stroke-width: 1; r: 4; opacity: 1; }
  70%  { stroke-width: 10; r: 12; opacity: 0; }
  100% { stroke-width: 1; r: 4; opacity: 0; }
}

.marker-label {
  fill: var(--text-muted);
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* Map Stats Overlay */
.map-stats {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(177, 197, 255, 0.12);
}

.map-stat {
  display: flex;
  flex-direction: column;
}

.map-stat__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.map-stat__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Cloud Grid */
.cloud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .cloud-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cloud-grid { grid-template-columns: 1fr; }
}

.cloud-card {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  border: 1px solid rgba(177, 197, 255, 0.06);
}

.cloud-card--featured {
  border-color: rgba(177, 197, 255, 0.2);
  background: linear-gradient(165deg, rgba(177, 197, 255, 0.04) 0%, var(--surface-hi) 60%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cloud-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(177, 197, 255, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: -0.5rem;
}

.cloud-card--featured .cloud-card__icon {
  background: var(--primary);
  color: var(--on-primary);
}

.cloud-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 2.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cloud-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.cloud-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.cloud-card__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cloud-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cloud-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.cloud-card__features .material-icons {
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0.8;
}

.cloud-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cloud-footer strong { color: var(--text); }
.cloud-footer a { color: var(--primary); font-weight: 600; text-decoration: underline; }

@media (max-width: 600px) {
  .cloud-map-container { aspect-ratio: 1/1; }
  .map-stats { position: relative; inset: auto; width: 100%; border-radius: 0; border-inline: none; margin-top: -1rem; }
}
