/* =============================================
   NEXTCORE TI — Site Staging
   Design: Converzon
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --bg-0:          #02040d;
  --bg-1:          #060d1f;
  --bg-2:          #0c1628;
  --bg-card:       #0d1420;
  --bg-card-hover: #131e30;
  --accent:        #2563EB;
  --accent-hover:  #3B82F6;
  --accent-glow:   rgba(37, 99, 235, 0.18);
  --orange:        #F97316;
  --orange-hover:  #FB923C;
  --orange-glow:   rgba(249, 115, 22, 0.18);
  --text-1:        #F1F5F9;
  --text-2:        #CBD5E1;
  --text-3:        #64748B;
  --border:        rgba(255, 255, 255, 0.07);
  --border-blue:   rgba(37, 99, 235, 0.25);
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --nav-h:         88px;
  --transition:    0.22s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
section { padding: 96px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.section-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-1);
}
.section-headline span { color: var(--accent); }
.section-headline .hl-orange { color: var(--accent); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 540px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 13px 26px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 28px rgba(59, 130, 246, 0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-blue);
}
.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-1);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cta {
  background: linear-gradient(to bottom, #4f8ef7 0%, #2563eb 100%);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  animation: breathe 4.5s ease-in-out infinite;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.22) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
}
.btn-cta:hover {
  background: linear-gradient(to bottom, #60a5fa 0%, #3b82f6 100%);
  box-shadow: 0 6px 36px rgba(59,130,246,0.60), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-1px);
  animation: none;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
  margin: 0;
}

/* =============================================
   NAVIGATION — Floating Pill
   ============================================= */
#navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.nav-inner {
  pointer-events: all;
  width: 100%;
  max-width: 1200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 0 20px;
  background: rgba(6, 13, 31, 0.42);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.30), 0 1px 2px rgba(0,0,0,0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled .nav-inner {
  background: rgba(6, 13, 31, 0.88);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.40), 0 2px 4px rgba(0,0,0,0.20);
}

.nav-logo img { height: 48px; width: auto; }
.nav-logo { display: flex; align-items: center; }
.logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 7px 14px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 7px 14px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  background: rgba(9, 18, 45, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.40), 0 4px 8px rgba(0,0,0,0.20);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}
.nav-dropdown-item:hover { color: var(--text-1); background: rgba(37,99,235,0.15); }
.nav-dropdown-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

.nav-cta { margin-left: 8px; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 88px;
  left: 20px;
  right: 20px;
  background: rgba(9, 18, 45, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 48px rgba(0,0,0,0.40);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { display: block; padding: 12px 16px; font-size: 0.95rem; border-radius: var(--radius); color: var(--text-2); }
.nav-mobile .nav-link:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav-mobile-group { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.07); }
.nav-mobile-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 8px 16px 4px;
}
.nav-mobile .nav-dropdown-item { padding: 10px 16px; font-size: 0.9rem; border-radius: var(--radius); color: var(--text-2); }
.nav-mobile .nav-dropdown-item:hover { color: var(--text-1); background: rgba(37,99,235,0.15); }
.nav-mobile-cta { margin-top: 16px; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
#inicio {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 7, 20, 0.92) 0%,
    rgba(6, 13, 31, 0.80) 50%,
    rgba(3, 7, 20, 0.88) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,31,0.95) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 2.4s ease-out infinite;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 20px;
}
.hero-headline .hl-blue { color: var(--accent); }

.hero-subtext {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(37,99,235,0.28);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(37,99,235,0.12);
}
.hero-features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.hero-features-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.hero-feature-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-glow);
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.hero-feature-icon svg { width: 11px; height: 11px; color: var(--accent); }

/* Hero bottom gradient fade */
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-1), transparent);
  z-index: 2;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: rgba(6,13,31,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 24px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 6px;
  font-weight: 500;
}

/* =============================================
   SOBRE
   ============================================= */
#sobre {
  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}
#sobre .section-headline { color: #0F172A; }
#sobre .section-headline span { color: var(--accent); }
#sobre .section-tag { background: rgba(37,99,235,0.08); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-text p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 20px;
}
.sobre-text p + p { margin-top: 16px; }
.sobre-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  position: relative;
  aspect-ratio: 16 / 9;
  background: transparent;
}
.sobre-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-video::after { display: none; }

/* =============================================
   FEATURE SECTIONS (Core RMM / Core MSP)
   ============================================= */
#core-rmm { background: var(--bg-0); }
#core-msp { background: var(--bg-1); }

.product-section-inner {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 4px 16px rgba(0,0,0,0.25),
    0 20px 56px rgba(0,0,0,0.40),
    0 60px 100px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.product-section-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.product-logo { height: 56px; width: auto; }
.product-title-block { flex: 1; }
.product-tagline {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-top: 10px;
}
.product-ctas { display: flex; gap: 12px; flex-shrink: 0; align-items: flex-start; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}
.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--accent-glow);
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--accent); }
.feature-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.8375rem;
  color: var(--text-3);
  line-height: 1.55;
}

/* ===== macOS WINDOW MOCKUP ===== */
.rmm-showcase { margin-bottom: 52px; }
.macos-window {
  background: #0D1117;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 100px rgba(37,99,235,0.14);
  position: relative;
}
.macos-bar {
  background: #161B22;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.macos-traffic {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mac-close    { background: #FF5F57; box-shadow: 0 0 6px rgba(255,95,87,0.5); }
.mac-minimize { background: #FFBD2E; box-shadow: 0 0 6px rgba(255,189,46,0.4); }
.mac-maximize { background: #28C840; box-shadow: 0 0 6px rgba(40,200,64,0.4); }
.macos-addressbar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  letter-spacing: 0.01em;
}
.macos-addressbar svg { width: 13px; height: 13px; flex-shrink: 0; }
.macos-bar-spacer { width: 80px; flex-shrink: 0; }
.macos-body {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.macos-slide {
  width: 100%;
  display: none;
  object-fit: contain;
  object-position: center top;
  background: #0d1b2e;
  aspect-ratio: 16/9;
  transition: opacity 0.3s ease;
}
.macos-slide.active { display: block; }
.macos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 17, 23, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.macos-arrow:hover { background: rgba(0,0,0,0.85); border-color: rgba(255,255,255,0.2); }
.macos-arrow svg { width: 18px; height: 18px; color: #fff; }
.macos-prev { left: 14px; }
.macos-next { right: 14px; }
.macos-indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.mac-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}
.mac-indicator.active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
}

/* product section divider line */
.product-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 55%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(37,99,235,0.15);
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37,99,235,0.07), transparent);
  pointer-events: none;
}
.cta-final::after { display: none; }
.cta-final-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-final-mascot {
  flex: 0 0 400px;
  max-width: 400px;
  text-align: center;
}
.cta-final-text {
  flex: 1;
  text-align: left;
}
.cta-final-text .section-headline { max-width: none; margin: 0; position: relative; z-index: 1; }
.cta-final-text .section-sub { max-width: 460px; margin: 16px 0 36px; text-align: left; position: relative; z-index: 1; }
.cta-final-actions { display: flex; gap: 16px; justify-content: flex-start; position: relative; z-index: 1; }
.mascot-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(37,99,235,0.18));
}
.cta-final .section-headline { color: #0F172A; }
.cta-final .section-sub { color: #475569; }
.cta-final .btn-outline { color: #0F172A; border-color: rgba(37,99,235,0.35); }
.cta-final .btn-outline:hover { background: rgba(37,99,235,0.08); color: #1e40af; border-color: var(--accent); }

/* =============================================
   FEATURES SHOWCASE
   ============================================= */
.features-showcase {
  background: var(--bg-0);
  padding: 96px 0;
  position: relative;
}
.features-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}
.fs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.fs-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.fs-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.fs-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.fs-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  margin: 0;
}
.fs-card p {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}
.fs-card--teal .fs-icon   { background: rgba(20,184,166,0.12);  color: #14b8a6; }
.fs-card--blue .fs-icon   { background: rgba(37,99,235,0.15);   color: #60a5fa; }
.fs-card--purple .fs-icon { background: rgba(139,92,246,0.15);  color: #a78bfa; }
.fs-card--yellow .fs-icon { background: rgba(234,179,8,0.15);   color: #fbbf24; }
.fs-card--orange .fs-icon { background: rgba(234,88,12,0.15);   color: #fb923c; }
.fs-card--green .fs-icon  { background: rgba(22,163,74,0.15);   color: #4ade80; }
.fs-card--red .fs-icon    { background: rgba(220,38,38,0.15);   color: #f87171; }
.fs-card--teal2 .fs-icon  { background: rgba(6,182,212,0.12);   color: #22d3ee; }
.fs-card--blue2 .fs-icon  { background: rgba(56,189,248,0.12);  color: #38bdf8; }
/* Force light text inside the dark features-showcase even on site-light pages */
.features-showcase .section-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(203,213,225,0.9);
}
.features-showcase .section-tag svg { stroke: rgba(203,213,225,0.9); }
.features-showcase .section-headline { color: #F1F5F9 !important; }
.features-showcase .section-headline span { color: var(--accent) !important; }
.features-showcase .section-sub { color: #94A3B8 !important; }

.fs-card--teal   { border-top: 2px solid rgba(20,184,166,0.35); }
.fs-card--blue   { border-top: 2px solid rgba(37,99,235,0.4); }
.fs-card--purple { border-top: 2px solid rgba(139,92,246,0.35); }
.fs-card--yellow { border-top: 2px solid rgba(234,179,8,0.35); }
.fs-card--orange { border-top: 2px solid rgba(234,88,12,0.35); }
.fs-card--green  { border-top: 2px solid rgba(22,163,74,0.35); }
.fs-card--red    { border-top: 2px solid rgba(220,38,38,0.35); }
.fs-card--teal2  { border-top: 2px solid rgba(6,182,212,0.35); }
.fs-card--blue2  { border-top: 2px solid rgba(56,189,248,0.35); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand-logo { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-link:hover { color: var(--text-1); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-3);
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.footer-endorsement {
  font-size: 0.75rem;
  color: var(--text-3);
}
.footer-endorsement strong { color: var(--text-2); font-weight: 600; }
.footer-endorsement span { color: var(--accent); font-weight: 700; }
.footer-converzon-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.footer-converzon-link:hover { opacity: 0.8; text-decoration: underline; }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #1DB954;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* =============================================
   GLPI PAGES — HERO
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.036) 1px, transparent 1px),
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(37,99,235,0.14), transparent);
  background-size: 96px 96px, 96px 96px, 100%;
  pointer-events: none;
}
.page-hero .section-headline { position: relative; z-index: 1; margin: 0 auto; }
.page-hero .section-sub { position: relative; z-index: 1; margin: 16px auto 0; text-align: center; }

/* =============================================
   GLPI — CONSULTORIA PAGE
   ============================================= */
.glpi-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 820px;
  margin: 0 auto;
}
.glpi-card h3 {
  font-size: 1.625rem;
  text-align: center;
  margin-bottom: 28px;
  color: var(--text-1);
}
.glpi-card p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  text-align: center;
}
.glpi-card p + p { margin-top: 16px; }

.glpi-curiosidade {
  background: rgba(37,99,235,0.07);
  border: 1px solid var(--border-blue);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.glpi-curiosidade strong { color: var(--accent); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.glpi-curiosidade p {
  font-size: 0.9375rem;
  font-style: italic;
  margin-top: 8px;
  text-align: left;
}

.glpi-video-section {
  text-align: center;
  margin-top: 56px;
}
.glpi-video-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.glpi-video-section .video-caption {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 28px;
}
.glpi-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}
.glpi-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.glpi-special {
  background: rgba(37,99,235,0.07);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  max-width: 640px;
  margin: 28px auto 0;
}
.glpi-special strong { color: var(--accent); }
.glpi-special p { font-size: 0.9375rem; color: var(--text-2); margin-top: 8px; }

/* =============================================
   GLPI — HUB PLUGINS PAGE
   ============================================= */
.plugin-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}
.filter-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-3);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-glow);
  border-color: var(--border-blue);
  color: var(--accent);
}
.filter-search {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
}
.filter-search input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px 8px 38px;
  font-size: 0.875rem;
  color: var(--text-1);
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
  width: 220px;
}
.filter-search input::placeholder { color: var(--text-3); }
.filter-search input:focus { border-color: var(--border-blue); background: rgba(37,99,235,0.05); }
.filter-search svg {
  position: absolute;
  left: 12px;
  width: 15px; height: 15px;
  color: var(--text-3);
  pointer-events: none;
}

.plugins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plugin-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.plugin-card:hover {
  background: rgba(37,99,235,0.05);
  border-color: var(--border-blue);
  transform: translateY(-2px);
}
.plugin-status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-available { background: rgba(34,197,94,0.12); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.badge-coming { background: rgba(234,179,8,0.1); color: #FACC15; border: 1px solid rgba(250,204,21,0.2); }
.plugin-license {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.plugin-license.paid { color: var(--accent); }
.plugin-license.free { color: #4ADE80; }
.plugin-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
}
.plugin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.plugin-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-3);
}
.plugin-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.plugin-actions a,
.plugin-action-secondary,
.plugin-action-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.plugin-action-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
}
.plugin-action-secondary:hover { color: var(--text-1); background: rgba(255,255,255,0.08); }
.plugin-action-primary {
  background: var(--accent-glow);
  border: 1px solid var(--border-blue);
  color: var(--accent);
}
.plugin-action-primary:hover { background: var(--accent); color: #fff; }
.plugin-action-secondary svg,
.plugin-action-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Install section */
.install-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 56px 0 0;
}
.install-section h3 { font-size: 1.5rem; margin-bottom: 28px; }
.install-code {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: #7DD3FC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
}
.copy-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 14px;
  transition: var(--transition);
  white-space: nowrap;
}
.copy-btn:hover { color: var(--text-1); background: rgba(255,255,255,0.1); }
.install-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.install-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.install-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.install-note {
  font-size: 0.875rem;
  color: var(--text-3);
  background: rgba(37,99,235,0.06);
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 20px;
}

/* FAQ Section */
.faq-section { margin-top: 80px; }
.faq-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.faq-section .faq-sub { font-size: 1rem; color: var(--text-3); margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-blue); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  gap: 16px;
  user-select: none;
  text-align: left;
}
.faq-question svg { width: 18px; height: 18px; color: var(--text-3); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* =============================================
   GLPI — PLANOS SAAS PAGE
   ============================================= */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.plan-card.featured {
  background: rgba(37,99,235,0.08);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(37,99,235,0.15);
}
.plan-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 8px;
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--text-2);
}
.plan-price sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  vertical-align: baseline;
}
.plan-period {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 28px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.plan-feature svg { width: 16px; height: 16px; min-width: 16px; color: #4ADE80; margin-top: 1px; }
.plan-cta { width: 100%; justify-content: center; }
.plan-benefits {
  margin-top: 12px;
  width: 100%;
  background: transparent;
  color: var(--text-3);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.plan-benefits:hover { color: var(--text-1); background: rgba(255,255,255,0.04); }

.upsell-card {
  background: rgba(37,99,235,0.06);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.upsell-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.upsell-card p { font-size: 1rem; color: var(--text-2); max-width: 560px; margin: 0 auto 28px; line-height: 1.65; }
.upsell-card strong { color: var(--text-1); }

/* =============================================
   PREMIUM KEYFRAMES
   ============================================= */
@keyframes shimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,0.40), inset 0 1px 0 rgba(255,255,255,0.18); }
  50%       { box-shadow: 0 6px 36px rgba(37,99,235,0.72), inset 0 1px 0 rgba(255,255,255,0.24), inset 0 -1ex 2rem 2px rgba(37,99,235,0.28); }
}
@keyframes sonar {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3.8); opacity: 0; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.55); }
  60%       { box-shadow: 0 0 0 7px rgba(37,99,235,0); }
}
@keyframes borderSpin {
  to { transform: rotate(360deg); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.82s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* =============================================
   PRODUCT PAGE — SCROLL HERO & NOTEBOOK
   ============================================= */
.scroll-hero {
  height: 300vh;
  position: relative;
  background: var(--bg-0);
}
.scroll-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.036) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
  z-index: 0;
}
.scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.scroll-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
}
.scroll-intro { margin-bottom: 10px; }
/* eyebrow redundante no contexto do scroll hero — economiza ~60px de altura */
.scroll-hero .hero-eyebrow { display: none; }
.scroll-hero .hero-headline {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem) !important;
  margin-bottom: 8px;
}
.scroll-hero .hero-subtext { font-size: 0.9375rem; }
.scroll-hero .hero-ctas { margin-top: 12px; }
.scroll-steps { display: flex; flex-direction: column; gap: 0; }
.scroll-step {
  padding: 10px 0 10px 18px;
  border-left: 2px solid rgba(255,255,255,0.10);
  opacity: 0.52;
  cursor: pointer;
  transition: opacity 0.4s ease, border-color 0.4s ease;
}
.scroll-step.active {
  opacity: 1;
  border-left-color: var(--accent);
}
.scroll-step-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.scroll-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0;
  line-height: 1.3;
}
.scroll-step p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease;
}
.scroll-step.active p {
  max-height: 120px;
  opacity: 1;
  margin-top: 6px;
}

/* Notebook */
.scroll-notebook-wrap {
  perspective: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-notebook {
  transform-style: preserve-3d;
  transform: rotateY(44deg) rotateX(8deg);
  will-change: transform;
  position: relative;
}
.nb-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.50) 0%, rgba(37,99,235,0.12) 50%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nb-lid {
  width: 460px;
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #1E2D47 0%, #0F172A 100%);
  border-radius: 14px 14px 3px 3px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 40px 80px rgba(0,0,0,0.6);
}
.nb-screen-bezel {
  background: #060D1F;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}
.nb-screen {
  width: 100%;
  height: 100%;
  position: relative;
}
.nb-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nb-slide.active { opacity: 1; }
.nb-hinge {
  height: 6px;
  background: linear-gradient(to bottom, #1A2744, #111827);
  margin: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
.nb-base {
  width: 460px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #182238, #0F172A);
  border-radius: 2px 2px 10px 10px;
  padding: 14px 28px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nb-keyboard {
  height: 66px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 13px, transparent 13px, transparent 15px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 8px, transparent 8px, transparent 10px);
  border-radius: 4px;
  margin-bottom: 10px;
}
.nb-trackpad {
  width: 90px;
  height: 56px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  margin: 0 auto;
}

/* Mock screen for Core MSP (no screenshots) */
.nb-msp-mock {
  background: #060D1F;
  display: flex;
  flex-direction: column;
}
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mock-dot-r { width: 7px; height: 7px; border-radius: 50%; background: #FF5F57; }
.mock-dot-y { width: 7px; height: 7px; border-radius: 50%; background: #FFBD2E; }
.mock-dot-g { width: 7px; height: 7px; border-radius: 50%; background: #28C840; }
.mock-app-name { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 8px; }
.mock-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.mock-sidebar {
  width: 40px;
  background: #0A1628;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 8px;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.mock-icon-sq {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
}
.mock-icon-sq.active { background: var(--accent); }
.mock-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.mock-row { display: flex; gap: 8px; }
.mock-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 8px 10px;
}
.mock-card-label { font-size: 0.5rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.mock-card-value { font-size: 0.9rem; font-weight: 700; color: var(--text-1); }
.mock-card-value.blue { color: var(--accent); }
.mock-card-value.green { color: #4ADE80; }
.mock-card-value.amber { color: #FCD34D; }
.mock-table { background: rgba(255,255,255,0.03); border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.mock-table-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.6);
}
.mock-table-row:last-child { border-bottom: none; }
.mock-badge {
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 0.45rem;
  font-weight: 600;
  margin-left: auto;
}
.mock-badge.open { background: rgba(37,99,235,0.2); color: var(--accent); }
.mock-badge.done { background: rgba(74,222,128,0.15); color: #4ADE80; }
.mock-badge.pending { background: rgba(252,211,77,0.15); color: #FCD34D; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
  animation: hintBounce 2.2s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* Benefit cards (product pages) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), background var(--transition);
}
.benefit-card:hover { border-color: var(--border-blue); background: rgba(37,99,235,0.04); }
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon { overflow: hidden; }
.benefit-icon svg { width: 22px !important; height: 22px !important; min-width: 22px; min-height: 22px; max-width: 22px; max-height: 22px; flex-shrink: 0; color: var(--accent); display: block; }
.benefit-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

/* Features list (product pages) */
.features-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feature-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.feature-list-item:hover { border-color: var(--border-blue); }
.feature-list-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.feature-list-item strong { display: block; font-size: 0.9375rem; color: var(--text-1); margin-bottom: 4px; }
.feature-list-item span { font-size: 0.875rem; color: var(--text-2); line-height: 1.55; }

/* Audience cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.audience-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: border-color var(--transition);
}
.audience-card:hover { border-color: var(--border-blue); }
.audience-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.audience-card-icon svg { width: 22px; height: 22px; }
.audience-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.audience-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* =============================================
   SEÇÃO ALTERNADA — alterna respiro no dark site
   ============================================= */
.section-light {
  background: rgba(255,255,255,0.018) !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-light .section-headline { color: var(--text-1); }
.section-light .section-headline span { color: var(--accent); }
.section-light .section-sub { color: var(--text-2); }
.section-light .section-tag {
  background: var(--accent-glow);
  border-color: var(--border-blue);
  color: var(--accent);
}
.section-light .benefit-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.section-light .benefit-card:hover {
  border-color: var(--accent);
  background: rgba(37,99,235,0.06);
  box-shadow: 0 8px 36px rgba(37,99,235,0.15);
}
.section-light .benefit-card h3 { color: var(--text-1); }
.section-light .benefit-card p { color: var(--text-2); }
.section-light .feature-list-item {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.07);
}
.section-light .feature-list-item:hover { border-color: var(--accent); }
.section-light .feature-list-item strong { color: var(--text-1); }
.section-light .feature-list-item span { color: var(--text-2); }
.section-light .audience-card {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.07);
}
.section-light .audience-card:hover { border-color: var(--accent); }
.section-light .audience-card h4 { color: var(--text-1); }
.section-light .audience-card p { color: var(--text-2); }

/* Testimonial */
.testimonial-block {
  background: rgba(37,99,235,0.06);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-top: 56px;
  position: relative;
}
.testimonial-block::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 36px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-1);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 2px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}
.testimonial-name { font-size: 0.9375rem; font-weight: 700; color: var(--text-1); }
.testimonial-role { font-size: 0.8125rem; color: var(--text-3); margin-top: 2px; }
.proof-numbers {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.proof-stat .proof-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -0.04em;
  line-height: 1;
}
.proof-stat .proof-value span { color: var(--accent); }
.proof-stat .proof-label {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 6px;
  font-weight: 500;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-features { max-width: 480px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-header { flex-direction: column; }
  .product-ctas { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plugins-grid { grid-template-columns: repeat(2, 1fr); }
  .scroll-layout { grid-template-columns: 1fr; gap: 40px; }
  .scroll-notebook-wrap { display: none; }
  .scroll-hero { height: auto; }
  .scroll-sticky { position: relative; top: auto; height: auto; padding: 100px 0 60px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .features-list-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonial-block { padding: 32px 24px; }
  .proof-numbers { gap: 24px; }
  /* Timeline mobile fallback */
  .ftl-wrap { height: auto; }
  .ftl-sticky { position: relative; top: auto; height: auto; overflow: visible; padding: 0 0 80px; }
  .ftl-grid { grid-template-columns: 1fr; }
  .ftl-axis, .ftl-cards, .ftl-counter { display: none; }
  .ftl-texts { min-height: 0; display: flex; flex-direction: column; gap: 0; }
  .ftl-text { position: static; transform: none; opacity: 1; pointer-events: auto; padding: 20px 0 20px 20px; border-left: 2px solid rgba(37,99,235,0.2); margin-bottom: 16px; transition: none; }
  .ftl-text.active { border-left-color: var(--accent); }
  .ftl-text-num { display: none; }
  .ftl-text p { max-width: 100%; }
}

@media (max-width: 768px) {
  .mascot-img { max-width: 300px; margin: 0 auto; }
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .fs-grid { grid-template-columns: repeat(2, 1fr); }
  .product-section-inner { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .plugins-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: calc(var(--nav-h) + 32px); }
  .hero-headline { font-size: 2.2rem; }
  .install-section { padding: 28px 20px; }
  .glpi-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .product-ctas { flex-direction: column; }
  .cta-final-actions { flex-direction: column; align-items: center; }
  .cta-final-inner { flex-direction: column; gap: 32px; }
  .cta-final-mascot { flex: none; width: 100%; max-width: 280px; margin: 0 auto; order: -1; }
  .cta-final-text { text-align: center; }
  .cta-final-text .section-sub { text-align: center; max-width: 100%; margin: 16px auto 32px; }
  .cta-final-actions { justify-content: center; }
  .mascot-img { max-width: 260px; margin: 0 auto; }
  .fs-grid { grid-template-columns: 1fr; }
  .features-showcase { padding: 64px 0; }
}

/* =============================================
   SPLASH SCREEN
   ============================================= */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
}
#splash.splash-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: splashIn 0.6s ease both;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
}
.splash-progress-track {
  width: 180px;
  height: 2px;
  background: rgba(37,99,235,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.splash-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  animation: splashLoad 2.3s cubic-bezier(0.4,0,0.2,1) 0.1s forwards;
  box-shadow: 0 0 10px rgba(37,99,235,0.55);
}
@keyframes splashLoad {
  0%   { width: 0%; }
  55%  { width: 74%; }
  80%  { width: 91%; }
  100% { width: 100%; }
}
.splash-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin: 0;
}

/* =============================================
   FEATURES TIMELINE (Aether-style scroll)
   ============================================= */
.ftl-wrap {
  background: var(--bg-0);
  height: 500vh;
  position: relative;
}
.ftl-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
  z-index: 0;
}
.ftl-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.ftl-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: stretch;
  width: 100%;
}
/* Left: text panels */
.ftl-texts {
  position: relative;
  min-height: 300px;
  align-self: center;
}
.ftl-text {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%) translateX(-20px);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  padding-right: 40px;
}
.ftl-text.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.ftl-text-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(37,99,235,0.4);
  margin-bottom: 8px;
}
.ftl-text-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.ftl-text h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.625rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.ftl-text p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 400px;
  margin: 0;
}
/* Center: vertical axis line + moving dot */
.ftl-axis {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  align-self: stretch;
}
.ftl-axis-line {
  flex: 1;
  width: 2px;
  background: rgba(37,99,235,0.15);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}
.ftl-axis-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent), rgba(59,130,246,0.4));
  border-radius: 2px;
  transition: height 0.36s ease;
}
.ftl-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid var(--bg-0);
  border-radius: 50%;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  transition: top 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 18px rgba(37,99,235,0.85), 0 0 6px rgba(37,99,235,0.9);
  z-index: 2;
}
/* Right: feature cards */
.ftl-cards {
  position: relative;
  min-height: 300px;
  align-self: center;
}
.ftl-card {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  padding-left: 40px;
  display: flex;
}
.ftl-card.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.ftl-card-box {
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.22);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 280px;
  box-shadow: 0 8px 40px rgba(37,99,235,0.09), inset 0 1px 0 rgba(255,255,255,0.04);
}
.ftl-card-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(37,99,235,0.13);
  border: 1px solid rgba(37,99,235,0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ftl-card-icon-wrap svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
  color: var(--accent);
  display: block;
}
.ftl-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  line-height: 1.35;
}
/* Step counter indicator */
.ftl-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
}
.ftl-cur { color: var(--text-2); font-weight: 700; }

/* Inline-background helpers (overridden by site-light below) */
.ftl-section-header { background: var(--bg-0); }
.section-prova-social { background: var(--bg-0); }

/* =============================================
   LIGHT THEME — body.site-light
   ============================================= */
body.site-light {
  background: #ffffff;
  color: #0F172A;
}

/* Typography */
body.site-light .section-headline { color: #0F172A; }
body.site-light .section-headline span { color: var(--accent); }
body.site-light .section-sub { color: #475569; }
body.site-light .section-tag {
  background: rgba(37,99,235,0.07);
  border-color: rgba(37,99,235,0.18);
}

/* Stats bar */
body.site-light .stats-bar {
  background: #F8FAFC;
  border-color: rgba(15,23,42,0.08);
}
body.site-light .stat-number { color: #0F172A; }
body.site-light .stat-label { color: #64748B; }
body.site-light .stat-item:not(:last-child)::after { background: rgba(15,23,42,0.1); }

/* Product sections on index */
body.site-light #core-rmm { background: #F8FAFC; }
body.site-light #core-msp { background: #EFF6FF; }
body.site-light .product-section-inner {
  background: #ffffff;
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 4px 32px rgba(15,23,42,0.06);
}
body.site-light .product-tagline { color: #475569; }
body.site-light .feature-card {
  background: #F8FAFC;
  border-color: rgba(15,23,42,0.08);
}
body.site-light .feature-card:hover {
  background: #EFF6FF;
  border-color: var(--accent);
}
body.site-light .feature-name { color: #0F172A; }
body.site-light .feature-desc { color: #64748B; }
body.site-light .feature-icon {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.15);
}

/* Section-light → ice tint in light mode */
body.site-light .section-light { background: #EFF6FF !important; }

/* Benefit cards */
body.site-light .benefit-card {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 2px 16px rgba(15,23,42,0.06);
}
body.site-light .benefit-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(37,99,235,0.10);
}
body.site-light .benefit-card h3 { color: #0F172A; }
body.site-light .benefit-card p { color: #475569; }

/* Feature list items (product pages) */
body.site-light .feature-list-item {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 1px 8px rgba(15,23,42,0.05);
}
body.site-light .feature-list-item:hover { border-color: var(--accent); }
body.site-light .feature-list-item strong { color: #0F172A; }
body.site-light .feature-list-item span { color: #475569; }

/* Audience cards */
body.site-light .audience-card {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 2px 16px rgba(15,23,42,0.06);
}
body.site-light .audience-card:hover { border-color: var(--accent); }
body.site-light .audience-card h4 { color: #0F172A; }
body.site-light .audience-card p { color: #475569; }

/* Testimonial & proof social */
body.site-light .testimonial-block {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 4px 32px rgba(15,23,42,0.07);
}
body.site-light .testimonial-block::before { opacity: 0.12; }
body.site-light .testimonial-text { color: #0F172A; }
body.site-light .testimonial-name { color: #0F172A; }
body.site-light .testimonial-role { color: #64748B; }
body.site-light .proof-numbers { border-color: rgba(15,23,42,0.08); }
body.site-light .proof-stat .proof-value { color: #0F172A; }
body.site-light .proof-stat .proof-label { color: #64748B; }

/* Features scroll timeline */
body.site-light .ftl-wrap { background: #EFF6FF; }
body.site-light .ftl-section-header { background: #F8FAFC !important; }
body.site-light .ftl-text h3 { color: #0F172A; }
body.site-light .ftl-text p { color: #475569; }
body.site-light .ftl-text-num { color: rgba(37,99,235,0.2); }
body.site-light .ftl-card-box {
  background: #ffffff;
  border-color: rgba(37,99,235,0.18);
  box-shadow: 0 8px 32px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
body.site-light .ftl-card-icon-wrap {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.18);
}
body.site-light .ftl-card-name { color: #0F172A; }
body.site-light .ftl-axis-line { background: rgba(37,99,235,0.12); }
body.site-light .ftl-dot { border-color: #EFF6FF; }
body.site-light .ftl-counter { color: #94A3B8; }
body.site-light .ftl-cur { color: #475569; }

/* CTA final (site-light override — unused, preserved for rollback) */
body.site-light .cta-final {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 55%, #EFF6FF 100%);
}
body.site-light .cta-final::before {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37,99,235,0.07), transparent);
  background-size: auto;
}
body.site-light .cta-final::after { display: none; }
body.site-light .cta-final .section-headline { color: #0F172A; }
body.site-light .cta-final .section-sub { color: #475569; }

/* Buttons on light backgrounds */
body.site-light .btn-ghost {
  background: rgba(15,23,42,0.06);
  color: #334155;
  border-color: rgba(15,23,42,0.14);
}
body.site-light .btn-ghost:hover {
  background: rgba(15,23,42,0.10);
  color: #0F172A;
}
body.site-light .btn-outline {
  color: #0F172A;
  border-color: rgba(15,23,42,0.18);
}
body.site-light .btn-outline:hover {
  background: rgba(37,99,235,0.07);
  border-color: var(--accent);
  color: var(--accent);
}

/* Footer */
body.site-light footer {
  background: #F1F5F9;
  border-color: rgba(15,23,42,0.08);
}
body.site-light .footer-grid { border-color: rgba(15,23,42,0.08); }
body.site-light .footer-brand-desc { color: #64748B; }
body.site-light .footer-col-title { color: #94A3B8; }
body.site-light .footer-link { color: #64748B; }
body.site-light .footer-link:hover { color: #0F172A; }
body.site-light .footer-contact-item { color: #64748B; }
body.site-light .footer-bottom { color: #94A3B8; }
body.site-light .footer-endorsement { color: #94A3B8; }
body.site-light .footer-endorsement strong { color: #475569; }
body.site-light .section-prova-social { background: #EFF6FF !important; }

/* Navbar — white glass */
body.site-light .nav-inner {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
}
body.site-light #navbar.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.10), 0 2px 4px rgba(15, 23, 42, 0.05);
}
body.site-light .nav-link { color: #475569; }
body.site-light .nav-link:hover { color: var(--accent); background: rgba(37, 99, 235, 0.07); }
body.site-light .nav-link.active { color: var(--accent); }
body.site-light .nav-dropdown-toggle { color: #475569; }
body.site-light .nav-dropdown-toggle:hover { color: var(--accent); background: rgba(37, 99, 235, 0.07); }
body.site-light .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.06);
}
body.site-light .nav-dropdown-item { color: #475569; }
body.site-light .nav-dropdown-item:hover { color: var(--accent); background: rgba(37, 99, 235, 0.07); }
body.site-light .nav-burger span { background: #0F172A; }
body.site-light .nav-mobile {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
body.site-light .nav-mobile .nav-link { color: #475569; }
body.site-light .nav-mobile .nav-link:hover { color: var(--accent); background: rgba(37, 99, 235, 0.07); }
body.site-light .nav-mobile-group { border-color: rgba(15, 23, 42, 0.07); }
body.site-light .nav-mobile-group-title { color: #94A3B8; }
body.site-light .nav-mobile .nav-dropdown-item { color: #475569; }
body.site-light .nav-mobile .nav-dropdown-item:hover { color: var(--accent); background: rgba(37, 99, 235, 0.07); }

/* Logo swap */
body.site-light .logo-dark { display: none; }
body.site-light .logo-light { display: block; }

/* ========= Dark sections inside site-light pages ========= */
body.site-light .page-hero .section-headline { color: #F1F5F9 !important; }
body.site-light .page-hero .section-headline span { color: #60A5FA !important; }
body.site-light .page-hero .section-sub { color: rgba(203,213,225,0.9) !important; }
body.site-light .page-hero .section-tag {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: rgba(203,213,225,0.9) !important;
}
body.site-light .scroll-hero .hero-headline { color: #F1F5F9; }
body.site-light .scroll-hero .hero-subtext { color: rgba(203,213,225,0.8); }
body.site-light .scroll-hero .scroll-step h3 { color: #F1F5F9; }
body.site-light .scroll-hero .scroll-step p { color: rgba(148,163,184,0.85); }
body.site-light .scroll-hero .scroll-step-tag { color: #60A5FA; }
body.site-light .scroll-hero .hero-eyebrow { color: #60A5FA; }

/* ========= GLPI Cards & Sections ========= */
body.site-light .glpi-card {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 2px 16px rgba(15,23,42,0.06);
}
body.site-light .glpi-card h2,
body.site-light .glpi-card h3 { color: #0F172A; }
body.site-light .glpi-card p { color: #475569; }
body.site-light .glpi-card h2.glpi-section-title { color: #0F172A; }
body.site-light .glpi-curiosidade {
  background: rgba(37,99,235,0.05);
  border-color: rgba(37,99,235,0.18);
}
body.site-light .glpi-curiosidade strong { color: var(--accent); }
body.site-light .glpi-curiosidade p { color: #334155; }
body.site-light .glpi-special { border-color: rgba(37,99,235,0.18); }
body.site-light .glpi-special p { color: #475569; }
body.site-light .glpi-video-section h2,
body.site-light .glpi-video-section h3 { color: #0F172A; }
body.site-light .glpi-video-section p { color: #475569; }

/* ========= Plugin Filters & Cards ========= */
body.site-light .filter-btn {
  background: rgba(15,23,42,0.05);
  border-color: rgba(15,23,42,0.12);
  color: #475569;
}
body.site-light .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
body.site-light .search-input {
  background: #F1F5F9;
  border-color: rgba(15,23,42,0.14);
  color: #0F172A;
}
body.site-light .search-input::placeholder { color: #94A3B8; }
body.site-light .plugin-card {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
}
body.site-light .plugin-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(37,99,235,0.1);
}
body.site-light .plugin-name { color: #0F172A; }
body.site-light .plugin-license { color: #64748B; }
body.site-light .plugin-tag {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.15);
  color: #475569;
}
body.site-light .plugin-action-secondary {
  background: rgba(15,23,42,0.05);
  border-color: rgba(15,23,42,0.12);
  color: #334155;
}
body.site-light .plugin-action-secondary:hover {
  background: rgba(15,23,42,0.09);
  color: #0F172A;
}
body.site-light .install-section {
  background: #F8FAFC;
  border-color: rgba(15,23,42,0.08);
}
body.site-light .install-section h3 { color: #0F172A; }
body.site-light .install-section p { color: #475569 !important; }
body.site-light .install-section strong { color: #334155; }
body.site-light .install-list li { color: #475569; }
body.site-light .install-note {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.18);
  color: #334155;
}
body.site-light .install-code {
  background: #1E293B;
  border-color: rgba(148,163,184,0.15);
  color: #7DD3FC;
}
body.site-light .copy-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: #CBD5E1;
}
body.site-light .copy-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #F1F5F9;
}
body.site-light .faq-item {
  background: #ffffff;
  border-color: rgba(15,23,42,0.09);
}
body.site-light .faq-question { color: #0F172A; }
body.site-light .faq-sub { color: #64748B; }
body.site-light .faq-answer { color: #475569; }

/* ========= Plan Cards — blue background ========= */
body.site-light .plan-card {
  background: #2563EB;
  border-color: #3B82F6;
  box-shadow: 0 4px 24px rgba(37,99,235,0.25);
}
body.site-light .plan-card.featured {
  background: #1D4ED8;
  border-color: #93C5FD;
  box-shadow: 0 8px 40px rgba(37,99,235,0.35);
}
body.site-light .plan-card.featured .plan-featured-badge {
  background: #FFFFFF;
  color: #1D4ED8;
}
body.site-light .plan-name { color: #FFFFFF; }
body.site-light .plan-price { color: #FFFFFF; }
body.site-light .plan-price sup { color: rgba(255,255,255,0.85); }
body.site-light .plan-price sub { color: rgba(255,255,255,0.75); }
body.site-light .plan-desc { color: rgba(255,255,255,0.82); }
body.site-light .plan-period { color: rgba(255,255,255,0.72); }
body.site-light .plan-feature { color: rgba(255,255,255,0.92); }
body.site-light .plan-benefits {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.7);
}
body.site-light .plan-benefits:hover {
  background: rgba(255,255,255,0.14);
  color: #FFFFFF;
}
body.site-light .plan-card .btn-outline {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  color: #FFFFFF;
}
body.site-light .plan-card .btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: #FFFFFF;
  color: #FFFFFF;
}
body.site-light .plan-card.featured .btn-primary {
  background: #FFFFFF;
  color: #1D4ED8;
  border-color: transparent;
}
body.site-light .plan-card.featured .btn-primary:hover {
  background: #EFF6FF;
  color: #1E40AF;
}

/* ========= Upsell Card ========= */
body.site-light .upsell-card {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.2);
}
body.site-light .upsell-card h3 { color: #0F172A; }
body.site-light .upsell-card p { color: #475569; }
body.site-light .upsell-card strong { color: #1E40AF; }
