/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 30px;
  width: auto;
  max-width: 110px;
  display: block;
  transition: filter 0.3s;
}
/* Logo branca sobre hero escuro; logo preta sobre navbar branca */
.navbar:not(.scrolled) .navbar__logo img { filter: brightness(0) invert(1); }
.navbar.scrolled .navbar__logo img        { filter: none; }

.navbar__links {
  display: flex;
  gap: 32px;
}
.navbar__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.navbar__links a:hover { color: #fff; }
.navbar.scrolled .navbar__links a { color: var(--text-muted); }
.navbar.scrolled .navbar__links a:hover { color: var(--primary); }

.navbar__actions { display: flex; align-items: center; gap: 16px; }
.navbar__login {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.navbar__login:hover { color: #fff; }
.navbar.scrolled .navbar__login { color: var(--text-muted); }
.navbar.scrolled .navbar__login:hover { color: var(--primary); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .navbar__toggle span { background: var(--text-primary); }

/* ===========================
   MOBILE DRAWER
=========================== */
.mob-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}
.mob-drawer.open { pointer-events: auto; }

.mob-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.mob-drawer.open .mob-drawer__overlay { opacity: 1; }

.mob-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 48px rgba(0,0,0,0.12);
  overflow: hidden;
}
.mob-drawer.open .mob-drawer__panel { transform: translateX(0); }

/* Head */
.mob-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #F1F5F9;
  flex-shrink: 0;
}
.mob-drawer__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.mob-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mob-drawer__close:hover { background: #F8FAFC; color: var(--text-primary); }

/* Body — scrollable */
.mob-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* Accordion sections */
.mob-section { border-bottom: 1px solid #F1F5F9; }
.mob-section__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: background 0.15s;
}
.mob-section__trigger:hover { background: #F8FAFC; }

.mob-section__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mob-section__dot--blue { background: #2563EB; }
.mob-section__dot--teal { background: #059669; }

.mob-section__name { flex: 1; }
.mob-section__name strong { font-weight: 700; }

.mob-section__chevron {
  color: var(--text-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.mob-section.open .mob-section__chevron { transform: rotate(180deg); }

/* Sub-content hidden by default */
.mob-section__sub {
  display: none;
  padding: 0 20px 16px;
  background: #FAFBFC;
}
.mob-section.open .mob-section__sub { display: block; }

/* Overview link */
.mob-section__overview-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 14px;
}

/* Cowork module grid */
.mob-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mob-section__mod {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.15s;
}
.mob-section__mod:hover { background: #fff; }
.mob-section__mod-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}

/* Run services list */
.mob-section__run-list { display: flex; flex-direction: column; gap: 4px; }
.mob-section__run-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.mob-section__run-item:hover { background: #fff; }
.mob-section__run-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
}
.mob-section__run-icon--blue  { background: #EFF6FF; color: #2563EB; }
.mob-section__run-icon--cyan  { background: #F0F9FF; color: #0284C7; }
.mob-section__run-icon--green { background: #F0FDF4; color: #16A34A; }
.mob-section__run-icon--gold  { background: #FFFBEB; color: #D97706; }
.mob-section__run-item span { display: flex; flex-direction: column; gap: 2px; }
.mob-section__run-item strong { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.mob-section__run-item em { font-size: 0.75rem; font-style: normal; color: var(--text-muted); }

/* Plain link (Contato) */
.mob-drawer__plain-link {
  display: block;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-drawer__plain-link:hover { color: var(--primary); }

/* Footer CTA */
.mob-drawer__foot {
  flex-shrink: 0;
  padding: 16px 24px 28px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-drawer__login {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px;
  transition: color 0.2s;
}
.mob-drawer__login:hover { color: var(--primary); }

/* ===========================
   NAV DROPDOWNS
=========================== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown__trigger:hover { color: #fff; }
.navbar.scrolled .nav-dropdown__trigger { color: var(--text-muted); }
.navbar.scrolled .nav-dropdown__trigger:hover { color: var(--primary); }
.navbar.scrolled .nav-dropdown.open .nav-dropdown__trigger { color: var(--primary); }
.nav-dropdown__chevron {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  opacity: 0.7;
}
.nav-dropdown.open .nav-dropdown__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  pointer-events: none;
}
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Small arrow */
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 2px 0 0 0;
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.nav-dropdown__item:hover { background: #F8FAFC; }
.nav-dropdown__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.nav-dropdown__item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
  line-height: 1.4;
}

.nav-dropdown__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown__icon--blue   { background: #EFF6FF; color: var(--primary); }
.nav-dropdown__icon--accent { background: #F0F9FF; color: #0284C7; }
.nav-dropdown__icon--gold   { background: #FFFBEB; color: #D97706; }

.navbar__link-plain {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.navbar__link-plain:hover { color: #fff; }
.navbar.scrolled .navbar__link-plain { color: var(--text-muted); }
.navbar.scrolled .navbar__link-plain:hover { color: var(--primary); }

/* ===========================
   NAV MEGA MENU (full-width)
=========================== */
.nav-dropdown--mega { position: static; }

.nav-mega {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 150;
  pointer-events: none;
}
.nav-dropdown.open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mega__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  align-items: start;
}
.nav-mega--cowork .nav-mega__inner { grid-template-columns: 220px 1fr 220px; }
.nav-mega--run   .nav-mega__inner { grid-template-columns: 220px 1fr 1fr 1fr 1fr; }

.nav-mega__overview {
  padding: 32px 32px 32px 0;
  border-right: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-mega__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.nav-mega__brand span { color: var(--primary); }
.nav-mega__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}
.nav-mega__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}
.nav-mega__brand-link:hover { gap: 10px; }

.nav-mega__col {
  padding: 28px 20px 28px 24px;
  border-right: 1px solid #F1F5F9;
}
.nav-mega__col:last-child { border-right: none; }
.nav-mega__col-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.nav-mega__col-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.nav-mega__col-icon--blue  { background: #EFF6FF; color: var(--primary); }
.nav-mega__col-icon--cyan  { background: #F0F9FF; color: #0284C7; }
.nav-mega__col-icon--green { background: #F0FDF4; color: #16A34A; }
.nav-mega__col-icon--gold  { background: #FFFBEB; color: #D97706; }
.nav-mega__col-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.nav-mega__col-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.nav-mega__col-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}
.nav-mega__col-link:hover { gap: 8px; }

.nav-mega__mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.nav-mega__mod {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-mega__mod:hover { background: #F8FAFC; }
.nav-mega__mod-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-mega__mod span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.nav-mega__mod:hover span { color: var(--primary); }

.nav-mega__ia-feat { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.nav-mega__ia-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
}
.nav-mega__ia-icon svg { width: 11px; height: 11px; }
.nav-mega__ia-feat span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }

/* ===========================
   MEGA MENU (legacy — kept for reference)
=========================== */
.mega-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.mega-trigger:hover { color: #fff; }
.navbar.scrolled .mega-trigger { color: var(--text-muted); }
.navbar.scrolled .mega-trigger:hover { color: var(--primary); }
.mega-trigger__chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.mega-trigger.open .mega-trigger__chevron { transform: rotate(180deg); }
.navbar.scrolled .mega-trigger.open { color: var(--primary); }

/* Full-width panel */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0B1628;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  z-index: 90;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  padding: 0;
}

/* Each card */
.mega-card {
  display: flex;
  flex-direction: column;
  background: #0B1628;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s;
  position: relative;
}
.mega-card:hover { background: #111f38; }
.mega-card:hover .mega-card__img img { transform: scale(1.04); }
.mega-card:hover .mega-card__cta { color: var(--accent); gap: 10px; }
.mega-card:hover .mega-card__title { color: var(--accent); }

/* Image area */
.mega-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.mega-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.mega-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,22,40,0.2) 0%,
    rgba(11,22,40,0.75) 100%
  );
}
.mega-card__badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: rgba(11,100,244,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Body */
.mega-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mega-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  transition: color 0.2s;
}
.mega-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.mega-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.mega-card__tags span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 9px;
  border-radius: 999px;
}
.mega-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, gap 0.2s;
}

/* ===========================
   HERO SPLIT (Homepage)
=========================== */
.hero-split {
  display: flex;
  min-height: 100vh;
  background: #080F1E;
  overflow: clip;
}

.hero-split__panel {
  position: relative;
  flex: 1 1 0;       /* flex-basis: 0 resolve o bug de % em filhos */
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 96px;
  text-decoration: none;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-split__panel:hover { flex: 1.08; }

/* Grid texture + glows ficam num layer com overflow hidden */
.hero-split__grid,
.hero-split__glow {
  position: absolute;
  pointer-events: none;
}
.hero-split__grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  overflow: hidden;
}

/* Glows */
.hero-split__glow {
  border-radius: 50%;
  filter: blur(90px);
  transition: opacity 0.5s;
}
/* Cowork — azul */
.hero-split__panel--cowork { background: #080F1E; }
.hero-split__glow--blue  { top: -80px; left: -60px; width: 520px; height: 520px; background: rgba(37,99,235,0.22); }
.hero-split__glow--blue2 { bottom: -60px; right: 20px; width: 320px; height: 320px; background: rgba(56,189,248,0.1); }
.hero-split__panel--cowork:hover .hero-split__glow--blue { opacity: 1.3; }

/* Run — teal/verde */
.hero-split__panel--run { background: #060D18; }
.hero-split__glow--teal  { top: -80px; right: -60px; width: 500px; height: 500px; background: rgba(5,150,105,0.22); }
.hero-split__glow--teal2 { bottom: -60px; left: 20px; width: 300px; height: 300px; background: rgba(52,211,153,0.08); }

/* Divisor */
.hero-split__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 70%, transparent 95%);
  flex-shrink: 0;
  z-index: 1;
}

/* Inner — usa vw para evitar circular dependency com % em flex item */
.hero-split__inner {
  position: relative;
  width: min(440px, 38vw);
  display: flex;
  flex-direction: column;
  align-items: stretch;   /* filhos ocupam a largura total do inner */
  text-align: center;
}

/* Eyebrow */
.hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.hero-split__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-split__eyebrow-dot--blue { background: #2563EB; box-shadow: 0 0 8px rgba(37,99,235,0.8); }
.hero-split__eyebrow-dot--teal { background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.8); }

/* Title */
.hero-split__title {
  font-size: clamp(1.75rem, 2.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.hero-split__accent { display: inline; }
.hero-split__accent--blue { color: #38BDF8; }
.hero-split__accent--teal { color: #34D399; }

/* Desc */
.hero-split__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  width: 100%;
}

/* Pills */
.hero-split__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.hero-split__pills span,
.hero-split__pills a {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-split__pills a:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.hero-split__pill--ia,
a.hero-split__pill--ia {
  background: rgba(37,99,235,0.15) !important;
  border-color: rgba(37,99,235,0.35) !important;
  color: #38BDF8 !important;
  font-weight: 600 !important;
}
.hero-split__panel--run .hero-split__pill--ia,
.hero-split__panel--run a.hero-split__pill--ia {
  background: rgba(16,185,129,0.12) !important;
  border-color: rgba(16,185,129,0.3) !important;
  color: #34D399 !important;
}

/* CTA */
.hero-split__cta { display: flex; justify-content: center; }
.hero-split__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.2s;
}
.hero-split__btn--blue {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,99,235,0.35);
}
.hero-split__panel--cowork:hover .hero-split__btn--blue {
  box-shadow: 0 8px 32px rgba(37,99,235,0.5);
  transform: translateY(-1px);
}
.hero-split__btn--teal {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  box-shadow: 0 4px 24px rgba(5,150,105,0.3);
}
.hero-split__panel--run:hover .hero-split__btn--teal {
  box-shadow: 0 8px 32px rgba(5,150,105,0.45);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-split__panel { flex: none !important; padding: 100px 32px 64px; }
  .hero-split__divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent 5%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 70%, transparent 95%); }
  .hero-split__inner { width: min(440px, calc(100vw - 64px)); }
  .hero-split__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
}
@media (max-width: 480px) {
  .hero-split__panel { padding: 88px 24px 56px; }
  .hero-split__inner { width: calc(100vw - 48px); }
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  top: 20%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: rgba(11,100,244,0.18);
}
.hero__glow--2 {
  bottom: 15%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: rgba(56,189,248,0.1);
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero__content {
  text-align: center;
  max-width: 780px;
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.hero__subtext {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 72px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   HERO — PHOTO BG VARIANT
=========================== */
@keyframes hero-zoom {
  from { transform: scaleX(-1) scale(1);    }
  to   { transform: scaleX(-1) scale(1.12); }
}
.hero--photo .hero__photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 65% center;
  background-repeat: no-repeat;
  transform-origin: center center;
  animation: hero-zoom 22s ease-in-out infinite alternate;
}
.hero--photo .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(15,23,42,0.93) 0%, rgba(15,23,42,0.75) 45%, rgba(15,23,42,0.25) 80%, rgba(15,23,42,0.1) 100%),
    linear-gradient(to bottom, rgba(15,23,42,0.4)  0%, transparent 30%, transparent 70%, rgba(15,23,42,0.5) 100%);
}
.hero__inner--left {
  flex-direction: column;
  align-items: flex-start !important;
}
.hero__inner--left .hero__content {
  text-align: left;
  max-width: 720px;
}
.hero__inner--left .hero__ctas,
.hero__inner--left .hero__stats {
  justify-content: flex-start;
}
.hero__inner--left .hero__subtext {
  margin: 0 0 40px;
}

/* ===========================
   PROBLEM
=========================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.problem-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: rgba(11,100,244,0.2);
}
.problem-card__num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.problem-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.problem-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.problem-quote {
  text-align: center;
  padding-top: 8px;
}
.problem-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ===========================
   MODULES
=========================== */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.module-card {
  background: #1E293B;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}
.module-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 16px 40px rgba(0,0,0,0.2);
}
.module-card__screen {
  padding: 20px 20px 0;
}
.module-card__body {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.module-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.module-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.module-card__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}
.module-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.module-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.module-card__features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(11,100,244,0.2);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338BDF8' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===========================
   AI SECTION
=========================== */
.ai-section {
  position: relative;
  padding: 180px 0;
  background: #fff;
  overflow: hidden;
}
.ai-section__photo {
  position: absolute;
  inset: 0;
  background-image: url('/site/uploads/ia-bg.jpg');
  background-size: cover;
  background-position: center right;
}
.ai-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.99) 38%, rgba(255,255,255,0.90) 65%, rgba(255,255,255,0.50) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 15%, transparent 85%, rgba(255,255,255,0.12) 100%);
}
.ai-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-section__content .section-label { display: block; margin-bottom: 16px; }
.ai-section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.ai-section__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.ai-section__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.ai-section__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.ai-section__feat-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(41,178,176,0.12), rgba(11,100,244,0.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* AI Chat UI */
.ai-chat {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 24px 72px rgba(0,0,0,0.12);
  position: relative;
}
.ai-chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #FAFAFA;
}
.ai-chat__avatar {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #29B2B0, #0B64F4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ai-chat__head-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ai-chat__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.ai-chat__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.ai-chat__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.ai-chat__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}

/* Chat messages area */
.ai-chat__messages {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  max-height: 260px;
  overflow-y: auto;
  background: #F8FAFC;
  scroll-behavior: smooth;
}
.ai-chat__messages::-webkit-scrollbar { display: none; }
.ai-bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 0.8125rem;
  line-height: 1.55;
  animation: bubbleIn 0.28s ease;
}
.ai-bubble--user {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}
.ai-bubble--ai {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,0.07);
  border-bottom-left-radius: 5px;
  align-self: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typing indicator dots */
.ai-typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  padding: 12px 16px;
  align-self: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.ai-typing-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #B0BAC9;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.ai-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.ai-chat__input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 14px 16px;
}
.ai-chat__placeholder {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-primary);
  opacity: 0.75;
  min-height: 1em;
}
.ai-chat__cursor {
  width: 2px;
  height: 1em;
  background: var(--primary);
  display: inline-block;
  margin-left: 1px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ai-chat__send {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #29B2B0, #0B64F4);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(11,100,244,0.25);
}

/* ===========================
   MOBILE SECTION
=========================== */
.mobile-section {
  position: relative;
  background: #091226;
  min-height: 680px;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Imagem absoluta à esquerda com parallax */
.mobile-section__img-wrap {
  position: absolute;
  left: 0;
  top: -12%;
  bottom: -12%;
  width: 50%;
  will-change: transform;
  z-index: 0;
}
.mobile-section__app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mobile-section__img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 30%,
    rgba(9,18,38,0.6) 65%,
    #091226 95%
  );
}
/* Grid 2 col: esquerda vazia (imagem passa por baixo), direita = conteúdo */
.mobile-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.mobile-section__spacer { /* coluna esquerda vazia */ }
/* Coluna direita */
.mobile-section__content { padding-left: 48px; }
.mobile-section__content .section-label { display: block; margin-bottom: 16px; }
.mobile-section__title {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.mobile-section__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 32px;
}
/* Feature items — sem caixa, lista vertical limpa */
.mobile-section__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.mobile-section__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mobile-section__features li .feat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.mobile-section__features li .feat-icon svg {
  width: 16px; height: 16px;
  color: var(--accent);
}
.mobile-section__features li .feat-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.mobile-section__features li .feat-text span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.mobile-section__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
  position: relative;
  will-change: transform;
  transition: transform 0.1s linear;
}
.phone-mockup__wrapper {
  position: relative;
  width: 280px;
}
.phone-mockup__img {
  position: relative;
  display: block;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.45));
}
.phone-mockup__screen-inner {
  position: absolute;
  top: 8.5%;
  left: 5%;
  right: 5%;
  bottom: 4%;
  z-index: 1;
  background: #0F172A;
  border-radius: 24px;
  overflow: hidden;
}
.phone-mockup__screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-mockup__screen-logo {
  width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.phone-mockup__screen-logo img { width: 100%; display: block; }
.phone-mockup__screen-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.phone-mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-mockup__brand {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
}
.phone-mockup__dot-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(11,100,244,0.25);
}
.phone-mockup__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-mockup__kpi {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px;
}
.phone-mockup__kpi-label { font-size: 0.6875rem; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.phone-mockup__kpi-value { font-size: 0.875rem; font-weight: 700; color: #fff; }
.phone-mockup__kpi-change { font-size: 0.6rem; color: #22C55E; margin-top: 2px; }
.phone-mockup__chart {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px;
}
.phone-mockup__chart-label { font-size: 0.6875rem; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.phone-mockup__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}
.phone-mockup__bar {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 2px 2px 0 0;
}
.phone-mockup__bar--active { background: var(--primary); }
.phone-mockup__nav {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
}
.phone-mockup__nav-item {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  padding: 6px 0;
  border-radius: 8px;
}
.phone-mockup__nav-item--active {
  background: var(--primary);
  color: #fff;
}
.phone-mockup__glow {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 40px;
  background: linear-gradient(90deg, rgba(41,178,176,0.5), rgba(11,100,244,0.5));
  filter: blur(28px);
  z-index: 0;
}

/* ===========================
   WHY NIDEX
=========================== */
.why-section__inner {
  text-align: center;
}
.why-section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.why-section__tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ===========================
   FAQ
=========================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  transition: background 0.2s;
}
.faq-item__trigger:hover { background: #F8FAFC; }
.faq-item.open .faq-item__trigger { color: var(--primary); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.faq-item.open .faq-item__icon { background: #EFF6FF; }
.faq-item__minus { display: none; color: var(--primary); }
.faq-item__plus  { display: block; color: var(--text-muted); }
.faq-item.open .faq-item__plus  { display: none; }
.faq-item.open .faq-item__minus { display: block; }
.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-item__answer { display: block; }
.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   ORÇAMENTO SECTION
=========================== */
.orcamento-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.orcamento-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #0c2a5e 60%, #0F172A 100%);
}
.orcamento-section__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.orcamento-section__label { margin-bottom: 24px; }
.orcamento-section__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.orcamento-section__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 52px;
}
.orcamento-section__items {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.orcamento-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  max-width: 200px;
}
.orcamento-item__icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.orcamento-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.orcamento-item__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.orcamento-section__note {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  position: relative;
  padding: 128px 0;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
}
.cta-section__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: rgba(11,100,244,0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-section__inner { position: relative; }
.cta-section__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.cta-section__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-section__note { font-size: 0.875rem; color: rgba(255,255,255,0.3); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0A1020;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer__logo {
  margin-bottom: 12px;
}
.footer__logo img {
  height: 28px;
  width: auto;
  max-width: 110px;
  display: block;
}
.footer__desc { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer__col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__link:hover { color: rgba(255,255,255,0.8); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }
.footer__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}

/* ===========================
   HOME — RUN PREVIEW SECTION
=========================== */
.run-preview {
  background: #0B1628;
  padding: 96px 0 100px;
}
.run-preview__header {
  text-align: center;
  margin-bottom: 56px;
}
.run-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .run-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .run-preview__grid { grid-template-columns: 1fr; } }

.run-prev-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.run-prev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(56,189,248,0.2);
}
.run-prev-card__img {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.run-prev-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.run-prev-card:hover .run-prev-card__img img { transform: scale(1.05); }
.run-prev-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(11,22,40,0.8));
}
.run-prev-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.run-prev-card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.run-prev-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.run-prev-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  flex: 1;
}
.run-prev-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, gap 0.2s;
}
.run-prev-card:hover .run-prev-card__link { color: var(--accent); gap: 8px; }
.run-preview__cta { text-align: center; }
