/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  padding: 0 16px;
  pointer-events: none;
}

/* Pill — container animável */
.navbar__pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  overflow: hidden;
  width: 80px;
  transition: none;
}

.navbar__pill.is-open {
  width: calc(100vw - 32px);
  height: 72px;
  border-radius: 20px;
  background: rgba(15, 12, 32, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
  position: relative;
}

/* Logo — sempre visível, é o trigger */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 8px;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 50%;
}

.navbar__pill.is-open .navbar__logo::before {
  display: none;
}

.navbar__logo::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(139, 69, 255, 0.75);
  animation: logo-pulse 2s ease-in-out infinite;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes logo-pulse {
  0%, 100% { opacity: 1;   transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.25; transform: translate(-50%, -50%) scale(1.18); }
}

.navbar__pill:focus,
.navbar__logo:focus,
.navbar__close:focus {
  outline: none;
}

.navbar__logo-icon {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.navbar__logo-full {
  height: 96px;
  width: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.navbar__pill.is-open .navbar__logo-icon {
  display: none;
}

.navbar__pill.is-open .navbar__logo-full {
  display: block;
  opacity: 1;
}

/* Desktop: esconde mobile nav */
.mobile-nav { display: none; }

/* Mobile: esconde desktop pill, mostra mobile nav */
@media (max-width: 640px) {
  .navbar { display: none; }
  .mobile-nav { display: block; }
}

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  background: transparent;
}

.mobile-nav__logo {
  display: flex;
  align-items: center;
}

.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 8px;
  outline: none;
}

.mobile-nav__menu {
  background: rgba(13, 11, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-nav.is-open .mobile-nav__menu {
  max-height: 360px;
  padding: 8px 0 16px;
}

.mobile-nav__link {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, background 180ms ease;
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: white;
  background: rgba(139, 69, 255, 0.08);
}

/* Conteúdo expandível */
.navbar__expandable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 0 20px 0 24px;
}

.navbar__pill.is-open .navbar__expandable {
  opacity: 1;
  pointer-events: all;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-text-white);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}


/* Botão X fechar */
.navbar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
  line-height: 1;
}

.navbar__close:hover {
  color: white;
}

/* Mobile toggle — oculto por padrão no pill */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  padding: 12px 22px;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-purple);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(139, 69, 255, 0.38);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: white;
  padding: 14px 28px;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40);
}

.btn--sm {
  padding: 10px 18px;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.btn__icon {
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   BADGE
══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  width: fit-content;
}

.badge--light {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero__inner {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.18);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 500px;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mockup {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.mockup-placeholder {
  text-align: center;
  padding: var(--space-8);
}

.mockup-placeholder__title {
  display: block;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: var(--space-2);
}

.mockup-placeholder__note {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.40);
}


/* ══════════════════════════════════════════
   STEPS — S2
══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.step-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.step-card__number {
  font-size: 52px;
  font-weight: var(--font-weight-bold);
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: var(--space-4);
  font-variant-numeric: tabular-nums;
}

.step-card__icon {
  font-size: 32px;
  margin-bottom: var(--space-4);
  display: block;
}

.step-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: white;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.step-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}


/* ══════════════════════════════════════════
   FEATURES — S3
══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-12);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(139, 69, 255, 0.38);
  transform: translateY(-2px);
}

.feature-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(139, 69, 255, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 22px;
}

.feature-card__title {
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  color: white;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}


/* ══════════════════════════════════════════
   STATS — S4
══════════════════════════════════════════ */
#numeros {
  position: relative;
  z-index: 501;
  isolation: isolate;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse 60% 100% at 10% 50%, rgba(255,255,255,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 100% at 90% 50%, rgba(30,0,80,0.55) 0%, transparent 55%),
    radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(135deg, #7B35EF 0%, #5B15DF 45%, #3A0D85 100%);
  background-size: auto, auto, 28px 28px, 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item__number {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -1px;
  white-space: nowrap;
  text-shadow: 0 0 32px rgba(192, 132, 252, 0.30);
}

.stat-item__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}


/* ══════════════════════════════════════════
   PARA QUEM É — S5
══════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.audience-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(139, 69, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple-light);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  margin-top: 1px;
}


/* ══════════════════════════════════════════
   CTA FINAL — S6
══════════════════════════════════════════ */
.section--cta {
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(139, 69, 255, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(107, 33, 255, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-final__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.cta-final__orb { display: none; }

.cta-final__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

.cta-final__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(139, 69, 255, 0.7);
}

.cta-final__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 680px;
}

.cta-final__subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.7;
  max-width: 420px;
}

.cta-final__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.cta-final__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
  text-align: right;
}

@media (max-width: 768px) {
  .cta-final__inner {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  .cta-final__action {
    align-items: flex-start;
  }

  .cta-final__note {
    text-align: left;
  }
}


/* ══════════════════════════════════════════
   CTA FINAL — FORNECEDORES
══════════════════════════════════════════ */
.forn-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 13vw, 160px) 0 clamp(80px, 11vw, 136px);
  background: var(--gradient-brand);
}

.forn-cta__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.forn-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 110%, rgba(0,0,0,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% -10%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.forn-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
}

.forn-cta__eyebrow {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
}

.forn-cta__title {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1.04;
  letter-spacing: -2.5px;
  max-width: 780px;
}

.forn-cta__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 440px;
  margin-top: -var(--space-2);
}

.forn-cta__btn {
  margin-top: var(--space-4);
  background: white;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.forn-cta__btn:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}

.forn-cta__fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .forn-cta__title {
    letter-spacing: -1.5px;
  }

  .forn-cta__btn {
    width: 100%;
    justify-content: center;
  }
}


/* ══════════════════════════════════════════
   CTA RICH — S6
══════════════════════════════════════════ */
.cta-rich {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(40px, 6vw, 64px);
  padding: clamp(72px, 10vw, 128px) 0 clamp(64px, 9vw, 104px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-rich__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  max-width: 680px;
}

.cta-rich__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(139, 69, 255, 0.14);
  border: 1px solid rgba(139, 69, 255, 0.30);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.90);
}

.cta-rich__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.cta-rich__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  max-width: 560px;
}

/* Pills */
.cta-rich__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 860px;
}

.cta-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.cta-pill:hover {
  background: rgba(139, 69, 255, 0.08);
  border-color: rgba(139, 69, 255, 0.22);
}

.cta-pill__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(139, 69, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-purple-light);
  margin-top: 1px;
}

.cta-pill__label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: white;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cta-pill__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Action */
.cta-rich__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-rich__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.02em;
}

/* Stats bar */
.cta-rich__stats {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 24px clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 720px;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.cta-stat__num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: var(--font-weight-bold);
  color: white;
  letter-spacing: -0.5px;
}

.cta-stat__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  text-align: center;
  line-height: 1.4;
}

.cta-stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-rich__pills {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .cta-rich__stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta-stat__divider {
    width: 40px;
    height: 1px;
  }

  .cta-rich__title {
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .cta-rich__pills {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
.testi-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.testi-eyebrow {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.testi-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  letter-spacing: -0.5px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: start;
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  transition: border-color var(--transition-base);
}

.testi-card:hover {
  border-color: rgba(139, 69, 255, 0.22);
}

.testi-card--featured {
  background: rgba(139, 69, 255, 0.07);
  border-color: rgba(139, 69, 255, 0.20);
  transform: translateY(-8px);
}

.testi-card__stars {
  font-size: 14px;
  color: #A855F7;
  letter-spacing: 2px;
}

.testi-card__quote {
  font-size: var(--text-base);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.5), rgba(107, 33, 255, 0.3));
  border: 1px solid rgba(139, 69, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testi-card__name {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: white;
}

.testi-card__role {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.40);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .testi-card--featured {
    transform: none;
  }
}

/* ══════════════════════════════════════════
   COMPARAÇÃO
══════════════════════════════════════════ */
.compare-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.compare-eyebrow {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.compare-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: var(--font-weight-bold);
  color: white;
  letter-spacing: -0.5px;
  max-width: 620px;
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(139, 69, 255, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 502;
}

.compare-col {
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 502;
}

.compare-col--old {
  background: #0f1128;
}

.compare-col--new {
  background: #160e30;
  border-left: 1px solid rgba(139, 69, 255, 0.22);
}

.compare-col__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare-col--old .compare-col__label {
  color: rgba(255, 255, 255, 0.35);
}

.compare-col--new .compare-col__label {
  color: rgba(139, 69, 255, 0.9);
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.compare-item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.compare-item--no {
  color: rgba(255, 255, 255, 0.45);
}

.compare-item--no::before {
  background-color: rgba(239, 68, 68, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 2l6 6M8 2l-6 6' stroke='%23f87171' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.compare-item--yes {
  color: rgba(255, 255, 255, 0.88);
}

.compare-item--yes::before {
  background-color: rgba(139, 69, 255, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l3 3 4-6' stroke='%23a855f7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.compare-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 56px);
}

@media (max-width: 768px) {
  .compare-table {
    grid-template-columns: 1fr;
  }

  .compare-col--new {
    border-left: none;
    border-top: 1px solid rgba(139, 69, 255, 0.18);
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--color-bg-deepest);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(139, 69, 255, 0.35), transparent) 1;
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 4vw, 48px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}

.footer__logo-img {
  width: 280px;
  height: auto;
  margin: -52px 0 -52px -42px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer__cols {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-label {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  margin-bottom: 2px;
}

.footer__col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.28);
}

.footer__email {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.40);
  transition: color var(--transition-fast);
}

.footer__email:hover {
  color: rgba(139, 69, 255, 0.9);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar__links {
    display: none;
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: var(--space-5);
    padding: var(--space-6) var(--container-pad);
    background: rgba(20, 17, 58, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar__links.nav-open {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Para quem é */
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  /* Footer logo */
  .footer__logo-img {
    width: 200px;
    margin: -38px 0 -38px -30px;
  }

  .footer__cols {
    gap: clamp(24px, 8vw, 48px);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer__top {
    gap: 24px;
  }

  .footer__cols {
    flex-direction: column;
    gap: 24px;
  }

  /* Compare */
  .compare-col__label {
    font-size: 10px;
  }

  .compare-item {
    font-size: var(--text-xs);
  }
}
