/* =============================================
   SCROLL ANIMATIONS — single source of truth
   The hidden state below IS the animation spec. The exit animation is just
   this same state being re-applied, so entry and exit are always exact
   mirrors. To retune every reveal/exit on the site, edit ONLY these values
   (distance + duration/easing). Trigger timing lives in main.js.
============================================= */

:root {
  --reveal-distance: 30px;
  --reveal-duration: 0.6s;
  --reveal-ease: ease;
}

.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--reveal-duration) var(--reveal-ease),
              transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.fade-in-left { transform: translateX(calc(-1 * var(--reveal-distance))); }
.fade-in-right { transform: translateX(var(--reveal-distance)); }

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* =============================================
   LAYOUT BASE
============================================= */

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

.fs-section {
  padding: 100px 0;
  background: var(--bg);
}

.fs-section--dark {
  background: var(--dark-navy);
  color: var(--text-primary);
}

.fs-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.fs-section-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-on-light);
  margin-bottom: 20px;
}

.fs-section--dark .fs-section-title,
.fs-section--cta  .fs-section-title,
.fs-section--bg   .fs-section-title,
.fs-section--video-bg .fs-section-title { color: var(--text-primary); }

.fs-section--bg .fs-section-title,
.fs-section--video-bg .fs-section-title { font-weight: 800; }

.fs-section-desc {
  font-size: 18px;
  color: var(--text-on-light-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.fs-section--dark .fs-section-desc,
.fs-section--cta  .fs-section-desc { color: var(--text-secondary); }

.fs-section--bg   .fs-section-desc,
.fs-section--video-bg .fs-section-desc { color: rgba(255, 255, 255, 0.90); font-weight: 500; }

.fs-accent { color: var(--accent-green); }
.fs-section--dark .fs-accent,
.fs-section--cta  .fs-accent,
.fs-section--bg   .fs-accent,
.fs-section--video-bg .fs-accent { color: var(--accent-green); }

.fs-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent-green-pill);
  color: var(--accent-green-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.fs-section--dark .fs-badge,
.fs-section--cta  .fs-badge,
.fs-section--bg   .fs-badge,
.fs-section--video-bg .fs-badge {
  background: rgba(186, 245, 107, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--accent-green);
}

.fs-section--bg .fs-produto-desc,
.fs-section--bg .fs-produto-bullets li { color: rgba(255, 255, 255, 0.90); font-weight: 500; }


/* =============================================
   BUTTONS
============================================= */

.fs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--accent-green);
  color: #0A0F1E;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(186, 245, 107, 0.2);
}

.fs-btn-primary:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(186, 245, 107, 0.3);
}

.fs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.fs-btn-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* =============================================
   HEADER / NAV
============================================= */

/* ---- CSS custom props used by nav ---- */
:root {
  --dark-navy: #0A1A2D;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --d-base: 250ms;
}

/* ---- Body offset for fixed nav ---- */
body { padding-top: 0; }
main { padding-top: 0; }

/* Smooth anchor scrolling for ALL in-page links (menu + footer).
   scroll-padding-top offsets the fixed nav pill (top:18px + ~56px tall)
   so sections don't land hidden behind it. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================
   NAV (from website-v2/assets/css/nav.css)
============================================= */

.fs-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.fs-header__inner {
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 1080px;
}

.fs-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(15, 45, 74, 0.85);
  border: 1px solid rgba(186, 245, 107, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(186, 245, 107, 0.04) inset;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: all 350ms var(--ease);
}
.fs-nav.is-scrolled {
  background: rgba(10, 26, 45, 0.92);
  border-color: rgba(186, 245, 107, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(186, 245, 107, 0.08) inset;
}
.fs-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 50%);
}

.fs-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  text-decoration: none;
}
.fs-nav__logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 350ms var(--ease);
}
.fs-nav__logo:hover .fs-nav__logo-plate { transform: rotate(-8deg) scale(1.06); }
.fs-nav__logo-plate img { height: 22px; width: 22px; }
.fs-nav__logo-text {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}
.fs-nav__logo-text span { color: var(--accent-green); }

.fs-nav__links {
  position: relative;
  display: flex;
  gap: 4px;
  font-size: 13px;
  padding: 0 8px;
  margin-left: 24px;
}
.fs-nav__indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  background: rgba(186, 245, 107, 0.16);
  border: 1px solid rgba(186, 245, 107, 0.35);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: left 350ms var(--ease), width 350ms var(--ease), opacity 250ms;
}
.fs-nav__indicator.is-on { opacity: 1; }
.fs-nav__link {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  white-space: nowrap;
  transition: color 250ms;
  text-decoration: none;
}
.fs-nav__link:hover { color: #fff; }
.fs-nav__link.is-active { color: var(--accent-green); font-weight: 600; }

.fs-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--accent-green);
  color: var(--dark-navy);
  text-decoration: none;
  position: relative;
  z-index: 2;
  margin-left: auto;
  box-shadow: 0 4px 14px rgba(186, 245, 107, 0.25);
  transition: all var(--d-base) var(--ease);
}
.fs-nav__cta:hover {
  background: var(--accent-green);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(186, 245, 107, 0.35);
}
.fs-nav__cta-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-navy);
  animation: fs-cta-pulse 2s ease-in-out infinite;
}
@keyframes fs-cta-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
.fs-nav__cta-arrow { transition: transform 280ms var(--ease); }
.fs-nav__cta:hover .fs-nav__cta-arrow { transform: translateX(3px); }
.fs-nav__cta-label-md { display: none; }

.fs-nav__burger {
  display: none;
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(186, 245, 107, 0.12);
  border: 1px solid rgba(186, 245, 107, 0.28);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 280ms var(--ease);
}
.fs-nav__burger-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}
.fs-nav__burger-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
  transition: transform 360ms var(--ease), top 280ms var(--ease), opacity 220ms;
}
.fs-nav__burger-lines span:nth-child(1) { top: 0; }
.fs-nav__burger-lines span:nth-child(2) { top: 6px; }
.fs-nav__burger-lines span:nth-child(3) { top: 12px; }
.fs-nav.is-menu-open .fs-nav__burger-lines span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.fs-nav.is-menu-open .fs-nav__burger-lines span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.fs-nav.is-menu-open .fs-nav__burger-lines span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.fs-nav__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(10, 26, 45, 0.96);
  border: 1px solid rgba(186, 245, 107, 0.18);
  border-radius: 28px;
  padding: 18px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.40);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.fs-header.is-menu-open .fs-nav__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fs-nav__panel-list { display: flex; flex-direction: column; gap: 4px; }
.fs-nav__panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-8px);
  opacity: 0;
  transition: background 200ms, color 200ms, opacity 380ms ease-out, transform 460ms var(--ease);
}
.fs-nav__panel-link svg { opacity: 0.45; transition: transform 240ms var(--ease), opacity 200ms; }
.fs-nav__panel-link:hover { background: rgba(186, 245, 107, 0.10); color: #fff; }
.fs-nav__panel-link:hover svg { opacity: 0.9; transform: translateX(2px); }
.fs-nav__panel-link.is-active { background: rgba(186, 245, 107, 0.14); color: var(--accent-green); }
.fs-header.is-menu-open .fs-nav__panel-link { opacity: 1; transform: translateY(0); }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(1) { transition-delay: 80ms; }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(2) { transition-delay: 130ms; }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(3) { transition-delay: 180ms; }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(4) { transition-delay: 230ms; }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(5) { transition-delay: 280ms; }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(6) { transition-delay: 330ms; }
.fs-header.is-menu-open .fs-nav__panel-link:nth-child(7) { transition-delay: 380ms; }

.fs-nav__panel-cta-wrap {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 380ms ease-out, transform 460ms var(--ease);
}
.fs-header.is-menu-open .fs-nav__panel-cta-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 440ms;
}
.fs-nav__panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--accent-green);
  color: var(--dark-navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(186, 245, 107, 0.25);
}
.fs-nav__panel-cta:hover { background: var(--accent-green); }
.fs-nav__panel-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 10px 0 4px;
}

/* Nav breakpoints */
@media (max-width: 1079px) and (min-width: 768px) {
  .fs-nav__links { font-size: 12px; gap: 0; }
  .fs-nav__link { padding: 10px 10px; }
  .fs-nav__cta { padding: 10px 14px 10px 16px; font-size: 12px; gap: 8px; }
  .fs-nav__cta-label-lg { display: none; }
  .fs-nav__cta-label-md { display: inline; }
}
@media (max-width: 767px) {
  .fs-nav { padding: 8px 8px 8px 18px; }
  .fs-nav__links, .fs-nav__cta { display: none; }
  .fs-nav__burger { display: inline-flex; }
}

/* Admin bar offset */
body.admin-bar .fs-header { top: calc(18px + 46px); }
@media (min-width: 783px) {
  body.admin-bar .fs-header { top: calc(18px + 32px); }
}

/* =============================================
   ANIMATED DARK SECTION BACKGROUNDS
============================================= */

@keyframes fs-rot {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

@keyframes fs-float {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(-18px); opacity: 1; }
}

.fs-section--animated-bg {
  position: relative;
  overflow: hidden;
}

.fs-section--animated-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.fs-section--animated-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 30%, rgba(186,245,107,0.08) 0%, transparent 55%);
  pointer-events: none;
  animation: fs-rot 50s linear infinite;
  z-index: 0;
}

.fs-section--animated-bg > .fs-container { position: relative; z-index: 1; }

.fs-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
  opacity: 0.5;
  pointer-events: none;
  animation: fs-float 6s ease-in-out infinite;
  z-index: 0;
}

/* =============================================
   HERO
============================================= */

@keyframes fs-hero-float {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.45; }
  50%       { transform: translateY(-28px) scale(1.1); opacity: 0.85; }
}

.fs-hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-green);
  pointer-events: none;
  z-index: 0;
  animation: fs-hero-float var(--dur, 3.2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.fs-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(186, 245, 107, 0.07) 0%, transparent 60%),
    var(--dark-navy);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(186, 245, 107, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 245, 107, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.fs-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fs-hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 20px 0 24px;
}

.fs-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 40px;
}

.fs-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.fs-hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}

.fs-hero-trust span { display: flex; align-items: center; gap: 7px; }
.fs-hero-trust i { color: var(--accent-green); }

/* =============================================
   SEÇÕES CLARAS COM BACKGROUND IMAGE
============================================= */

.fs-section--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#produto {
  background-size: 160%;
  background-position: center 50%;
}

.fs-section--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
  z-index: 0;
}

.fs-section--bg > .fs-container { position: relative; z-index: 1; }

/* =============================================
   SEÇÃO COM VÍDEO DE BACKGROUND
============================================= */

.fs-section--video-bg {
  position: relative;
  overflow: hidden;
}

.fs-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.fs-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.fs-section--video-bg > .fs-container { position: relative; z-index: 2; }

/* =============================================
   SEÇÃO 2: CENÁRIO ATUAL - STATS
============================================= */

.fs-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================
   SHARED GLASS CARD — single source of truth
   Used by: stat, realidade, pilar, resultado and fase cards. These were five
   near-identical copies whose values had drifted; consolidated here. Each
   section's own block below sets ONLY its differences (padding, text-align, etc.).
============================================= */
.fs-stat-card,
.fs-realidade-card,
.fs-pilar-card,
.fs-resultado-card,
.fs-fase-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fs-stat-card:hover,
.fs-realidade-card:hover,
.fs-pilar-card:hover,
.fs-resultado-card:hover,
.fs-fase-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* Big metric number — shared by stat / realidade / resultado (sizes had drifted) */
.fs-stat-number,
.fs-realidade-number,
.fs-resultado-number {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1.1;
  margin-bottom: 12px;
}

/* --- stat card (section 2) specifics --- */
.fs-stat-card {
  padding: 40px 32px;
  text-align: center;
}

.fs-stat-card--highlight {
  background: rgba(186, 245, 107, 0.10);
  border-color: rgba(186, 245, 107, 0.30);
}

.fs-stat-card--highlight:hover {
  background: rgba(186, 245, 107, 0.18);
  border-color: rgba(186, 245, 107, 0.50);
}

.fs-stat-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}

.fs-stat-source {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

/* =============================================
   SEÇÃO 3: ALERTA
============================================= */

.fs-alerta-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(186, 245, 107, 0.05) 0%, var(--dark-surface-2) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 60px 56px;
}

.fs-alerta-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(186, 245, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--accent-green);
}

.fs-alerta-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fs-alerta-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* =============================================
   SEÇÃO 4: A REALIDADE
============================================= */

.fs-realidade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- realidade card (section 4) specifics --- */
.fs-realidade-card {
  padding: 36px 28px;
  text-align: center;
}

.fs-realidade-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* =============================================
   SEÇÃO 5: PARCEIROS
============================================= */

.fs-section--partners {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.fs-partners-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-light);
  font-weight: 700;
  margin-bottom: 40px;
}

.fs-partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.fs-partner-logo {
  border-radius: 12px;
  padding: 8px;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease),
              border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  animation: fs-logo-float 4s ease-in-out infinite;
}

.fs-partner-logo:nth-child(2) { animation-delay: 0.6s; }
.fs-partner-logo:nth-child(3) { animation-delay: 1.2s; }

@keyframes fs-logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fs-partner-logo:hover {
  border-color: var(--border-light);
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 16px 32px rgba(15, 45, 74, 0.12);
  animation-play-state: paused;
}

.fs-partner-logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   SEÇÃO 6: PRODUTO + WHATSAPP MOCKUP
============================================= */

.fs-produto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.fs-produto-content .fs-section-title { text-align: left; }

.fs-produto-desc {
  font-size: 16px;
  color: var(--text-on-light-2);
  line-height: 1.65;
  margin: 20px 0 28px;
}

.fs-produto-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fs-produto-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-on-light-2);
}

.fs-produto-bullets li i {
  color: var(--accent-green);
  font-size: 14px;
  flex-shrink: 0;
}

/* ---- WhatsApp Phone Mockup ---- */

.fs-mockup-wrap {
  display: flex;
  justify-content: center;
}

.fs-phone {
  width: 320px;
  background: #1a1a2e;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(186,245,107,0.08);
}

.fs-phone-bar {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fs-phone-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #128c7e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.fs-phone-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.fs-phone-status {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.fs-phone-chat {
  background: #0d1117;
  padding: 16px;
  height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: none;
}

.fs-phone-chat::-webkit-scrollbar { display: none; }

.fs-msg {
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  animation: msgIn 0.3s ease;
}

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

.fs-msg--client {
  background: #1f2937;
  color: #e5e7eb;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.fs-msg--ai {
  background: #1a3a2a;
  color: #d1fae5;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(186,245,107,0.1);
}

.fs-msg--typing {
  background: #1f2937;
  color: #9ca3af;
  align-self: flex-end;
  font-size: 12px;
  font-style: italic;
  border-bottom-right-radius: 4px;
}

.fs-msg-time {
  font-size: 10px;
  opacity: 0.5;
  margin-top: 4px;
  text-align: right;
}

/* =============================================
   SEÇÃO 7: PILARES
============================================= */

.fs-pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- pilar card (section 7) specifics --- */
.fs-pilar-card { padding: 36px 28px; }

.fs-pilar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(186, 245, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.fs-pilar-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.fs-pilar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   SEÇÃO 8: RESULTADOS
============================================= */

.fs-resultados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- resultado card (section 8) specifics --- */
.fs-resultado-card {
  padding: 40px 28px;
  text-align: center;
}

.fs-resultado-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* =============================================
   SEÇÃO 9: IMPLANTAÇÃO
============================================= */

.fs-implantacao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- fase card (section 9) specifics --- */
.fs-fase-card {
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.fs-fase-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(186,245,107,0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.fs-fase-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.fs-fase-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fs-fase-tempo {
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 600;
}

/* =============================================
   SEÇÃO 10: ESCOPO
============================================= */

.fs-escopo-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.fs-escopo-header {
  text-align: center;
  margin-bottom: 56px;
}

.fs-escopo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fs-escopo-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.fs-escopo-item:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(186, 245, 107, 0.40);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.fs-escopo-item i {
  color: var(--accent-green);
  font-size: 16px;
  flex-shrink: 0;
}

/* =============================================
   SEÇÃO COMPARATIVO
============================================= */

.fs-comparativo-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.fs-comparativo-scroll {
  overflow-x: auto;
}

.fs-comparativo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.fs-comparativo-table thead tr {
  background: var(--dark-bg);
}

.fs-comparativo-table thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fs-comparativo-table thead th.fs-comp-feature-col {
  text-align: left;
  min-width: 240px;
}

.fs-comparativo-table thead th.fs-comp-us {
  background: rgba(186, 245, 107, 0.08);
  color: var(--accent-green);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

.fs-comparativo-table tbody tr {
  background: var(--dark-surface);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s ease;
}

.fs-comparativo-table tbody tr:hover {
  background: rgba(186,245,107,0.02);
}

.fs-comparativo-table tbody tr:last-child { border-bottom: none; }

.fs-comp-feature {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
}

.fs-comparativo-table tbody td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
}

.fs-comp-us {
  background: rgba(186, 245, 107, 0.04);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

.fs-comp-yes { color: var(--accent-green); font-size: 16px; }
.fs-comp-no { color: #ef4444; font-size: 16px; }
.fs-comp-partial { color: #f59e0b; font-size: 13px; font-weight: 500; }
.fs-comp-soon { color: #3b82f6; font-size: 13px; font-weight: 500; }

/* =============================================
   SEÇÃO 11: FAQ
============================================= */

.fs-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fs-faq-item {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.fs-faq-item.fs-faq-open {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(186, 245, 107, 0.40);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.fs-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.fs-faq-trigger span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.fs-faq-icon {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.fs-faq-open .fs-faq-icon { transform: rotate(180deg); color: var(--accent-green-dark); }

.fs-faq-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 24px;
}

.fs-faq-content p {
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.65;
}

/* =============================================
   SEÇÃO 12: FORMULÁRIO / CTA
============================================= */

.fs-section--cta {
  background:
    radial-gradient(ellipse at center top, rgba(186,245,107,0.06) 0%, transparent 60%),
    var(--dark-navy);
  color: var(--text-primary);
}

.fs-demo-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.fs-demo-header {
  text-align: center;
  margin-bottom: 48px;
}

.fs-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fs-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fs-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.fs-form-group input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s ease;
}

.fs-form-group input:focus,
.fs-form-group select:focus { border-color: var(--accent-green); }

.fs-form-group input.input-error,
.fs-form-group select.input-error { border-color: #ef4444; }

.fs-form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.fs-form-group select option {
  background: #0f1a2e;
  color: #fff;
}

.field-error {
  font-size: 12px;
  color: #ef4444;
  display: none;
}

.field-error.visible { display: block; }

.fs-form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

.fs-form-note {
  text-align: center;
  font-size: 13px;
  color: rgba(156,163,175,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =============================================
   TOAST
============================================= */

.fs-toast {
  display: none;
  margin-top: 20px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.fs-toast.success {
  display: block;
  background: rgba(186,245,107,0.1);
  border: 1px solid var(--border-subtle);
  color: var(--accent-green);
}

.fs-toast.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
}

/* =============================================
   FORM SUCCESS MESSAGE
============================================= */

.fs-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  animation: fadeInUp 0.5s ease both;
}

.fs-form-success__icon {
  font-size: 48px;
  color: var(--accent-green);
}

.fs-form-success__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.fs-form-success__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  line-height: 1.6;
}

.fs-form-success__desc strong {
  color: var(--accent-green);
}

/* =============================================
   FOOTER
============================================= */

.fs-footer {
  background: var(--dark-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 24px 40px;
  color: var(--text-primary);
}

.fs-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.fs-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.fs-footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

.fs-footer-social {
  display: flex;
  gap: 14px;
}

.fs-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.fs-footer-social a:hover {
  background: rgba(186,245,107,0.1);
  border-color: var(--border-subtle);
  color: var(--accent-green);
}

.fs-footer-nav h4,
.fs-footer-contact h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.fs-footer-nav ul,
.fs-footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-footer-nav a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.fs-footer-nav a:hover { color: var(--accent-green); }

.fs-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.fs-footer-contact li i { color: var(--accent-green); }

.fs-footer-contact a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.fs-footer-contact a:hover { color: var(--accent-green); }

.fs-footer-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(186,245,107,0.08);
  border: 1px solid var(--border-subtle);
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.fs-footer-cta:hover {
  background: rgba(186,245,107,0.15);
}

.fs-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fs-footer-bottom p {
  font-size: 13px;
  color: rgba(156,163,175,0.5);
}

.fs-footer-legal {
  display: flex;
  gap: 24px;
}

.fs-footer-legal a {
  font-size: 13px;
  color: rgba(156,163,175,0.5);
  transition: color 0.2s ease;
}

.fs-footer-legal a:hover { color: var(--accent-green); }

/* =============================================
   PÁGINAS INTERNAS (base)
============================================= */

.fs-page-hero {
  padding: 160px 24px 80px;
  background: var(--dark-bg);
  text-align: center;
}

.fs-page-content {
  padding: 80px 24px;
  background: var(--dark-bg);
}

/* =============================================
   BLOG
============================================= */

.fs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fs-blog-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.fs-blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
}

.fs-blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--dark-surface-2);
}

.fs-blog-card-body {
  padding: 28px;
}

.fs-blog-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.fs-blog-card-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.fs-blog-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
}

.fs-blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fs-blog-read-more:hover { gap: 10px; }

/* =============================================
   RESPONSIVIDADE
============================================= */

@media (max-width: 1024px) {
  .fs-pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-implantacao-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-implantacao-grid::before { display: none; }
  .fs-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fs-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .fs-section { padding: 72px 0; }

  .fs-hero { padding: 120px 24px 80px; }
  .fs-hero-ctas { flex-direction: column; align-items: center; }
  .fs-hero-trust { flex-direction: column; align-items: center; gap: 12px; }

  .fs-stats-grid { grid-template-columns: 1fr; }
  .fs-realidade-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-pilares-grid { grid-template-columns: 1fr; }
  .fs-resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-implantacao-grid { grid-template-columns: 1fr; }
  .fs-escopo-grid { grid-template-columns: 1fr; }
  .fs-blog-grid { grid-template-columns: 1fr; }

  .fs-produto-grid { grid-template-columns: 1fr; }
  .fs-produto-content .fs-section-title { text-align: center; }
  .fs-produto-content { text-align: center; }
  .fs-produto-bullets { align-items: flex-start; text-align: left; }

  .fs-alerta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    align-items: center;
  }

  .fs-form { padding: 28px 20px; }
  .fs-form-row { grid-template-columns: 1fr; }

  .fs-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .fs-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .fs-footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .fs-realidade-grid { grid-template-columns: 1fr; }
  .fs-resultados-grid { grid-template-columns: 1fr; }
  .fs-phone { width: 100%; max-width: 320px; }
}
