/* ============================================================
   Acelerador de Vendas WhatsApp — Tech Dark + Verde
   Base UI/UX: agenciadatecnologia.com.br
   ============================================================ */

:root {
  --color-bg: #020914;
  --color-bg-secondary: #091226;
  --color-bg-elevated: #000a14;
  --color-accent: #2ef562;
  --color-accent-deep: #1cc947;
  --color-accent-magenta: #64ff90;
  --color-accent-blue: #6eff88;
  --color-accent-cyan: #2ef562;
  --color-text: #FFFFFF;
  --color-text-on-cta: #041810;
  --color-text-muted: #C8D0DC;
  --color-text-subtle: #8B95A8;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-accent: rgba(46, 245, 98, 0.28);
  --color-whatsapp: #25D366;
  --color-video-border: #366b66;
  --color-teal: #085C74;
  --color-teal-deep: #064558;
  --color-teal-mid: #0e9a6a;

  --gradient-ingresso-section:
    radial-gradient(ellipse 85% 55% at 50% -8%, rgba(46, 245, 98, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 45% 35% at 8% 75%, rgba(8, 92, 116, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 92% 65%, rgba(28, 201, 71, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #041a12 0%, #091226 48%, #020914 100%);
  --gradient-ingresso-card:
    linear-gradient(165deg, rgba(28, 201, 71, 0.14) 0%, rgba(4, 26, 18, 0.94) 42%, rgba(2, 9, 20, 0.98) 100%);
  --shadow-ingresso:
    0 0 48px rgba(46, 245, 98, 0.14),
    0 0 72px rgba(8, 92, 116, 0.08),
    inset 0 1px 0 rgba(100, 255, 144, 0.08);

  --gradient-brand: linear-gradient(135deg, #1cc947 0%, #28e060 48%, #2ef562 100%);
  --gradient-neon: linear-gradient(135deg, #22d958 0%, #2ef562 50%, #64ff90 100%);
  --gradient-cta: linear-gradient(
    125deg,
    #0f7a30 0%,
    #1cc947 28%,
    #2ef562 52%,
    #64ff90 76%,
    #1cc947 100%
  );
  --gradient-hero-glow:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(8, 92, 116, 0.11) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(46, 245, 98, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(28, 201, 71, 0.1) 0%, transparent 45%);
  --gradient-accent-section: linear-gradient(135deg, #020914 0%, #061a10 100%);
  --gradient-cta-section: linear-gradient(135deg, #041a12 0%, #020914 55%, #051820 100%);
  --shadow-neon-purple: 0 0 24px rgba(46, 245, 98, 0.32);
  --shadow-neon-magenta: 0 0 28px rgba(28, 201, 71, 0.22);
  --text-glow: 0 0 24px rgba(46, 245, 98, 0.4);

  --font-main: 'Poppins', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 104px;
  --section-py: clamp(4.5rem, 8vw, 7rem);
  --container: min(1180px, 92vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: var(--header-h);
  z-index: 1000;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
}

/* Scrollbar customizada — degradê azul → roxo */
.scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 100vh;
  z-index: 9990;
  pointer-events: none;
}

.scrollbar__track {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000000;
  pointer-events: auto;
}

.scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  min-height: 56px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1cc947 0%, #2ef562 35%, #64ff90 70%, #6eff88 100%);
  box-shadow: 0 0 12px rgba(46, 245, 98, 0.55);
  cursor: grab;
  pointer-events: auto;
  transition: width 0.2s ease, box-shadow 0.2s ease;
  will-change: transform, height;
}

.scrollbar__thumb:hover,
.scrollbar__thumb.is-dragging {
  width: 10px;
  background: linear-gradient(180deg, #2ef562 0%, #64ff90 48%, #6eff88 100%);
  box-shadow: 0 0 18px rgba(46, 245, 98, 0.65);
}

.scrollbar__thumb.is-dragging {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .scrollbar { display: none !important; }
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-muted);
  background:
    linear-gradient(180deg,
      #020914 0%,
      #061018 18%,
      #091226 38%,
      #0a1a14 58%,
      #091228 78%,
      #020914 100%);
  background-attachment: fixed;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 201, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 245, 98, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.container { width: var(--container); margin-inline: auto; }

.icon {
  width: 1.35em;
  height: 1.35em;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 201, 71, 0.06);
  border: 1px solid var(--color-border-accent);
  color: var(--color-accent);
  flex-shrink: 0;
}

.icon-wrap .icon { width: 22px; height: 22px; }

.icon-wrap--gradient {
  background: var(--gradient-brand);
  border: none;
  color: var(--color-text);
}

.icon-wrap--pain {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(28, 201, 71, 0.22);
}

.icon-wrap--pain .icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.85;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gradient-brand);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
}

.skip-link:focus { top: 1rem; }

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.section__desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: #E2E8F0;
  max-width: 58ch;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header .section__desc { margin-inline: auto; }

.section__cta {
  margin-top: 2.5rem;
  margin-bottom: 0;
  width: 100%;
}

.section__cta .btn {
  max-width: 100%;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title .text-gradient--shine {
  position: relative;
  display: inline-block;
  background-image: var(--gradient-cta);
  background-size: 280% 280%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ingresso-gradient 5s ease-in-out infinite;
  isolation: isolate;
}

.hero__title .text-gradient--shine::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255, 255, 255, 0.12) 44%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.12) 56%,
    transparent 68%
  );
  background-size: 220% 100%;
  background-position: 130% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ingresso-shine 3s ease-in-out infinite;
  pointer-events: none;
}

/* Solid headings — never use opacity on titles */
h1, h2, h3,
.hero__title,
.hero__subtitle,
.hero__tagline,
.hero__metric-label,
.product__title,
.service-card__title,
.team-card__name,
.case-card__title,
.faq__item summary {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), filter var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background-image: var(--gradient-cta);
  background-size: 280% 280%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  animation: ingresso-gradient 5s ease-in-out infinite;
  color: var(--color-text-on-cta);
  font-weight: 700;
  box-shadow: var(--shadow-neon-purple), var(--shadow-neon-magenta);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255, 255, 255, 0.18) 44%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.18) 56%,
    transparent 68%
  );
  background-size: 220% 100%;
  background-position: 130% 0;
  animation: ingresso-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-neon-purple), var(--shadow-neon-magenta), 0 8px 28px rgba(28, 201, 71, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn--outline:hover {
  background: rgba(46, 245, 98, 0.08);
  box-shadow: 0 0 20px rgba(46, 245, 98, 0.18);
}

.btn--green {
  background: rgba(46, 245, 98, 0.1);
  color: var(--color-accent-cyan);
  border: 1.5px solid rgba(46, 245, 98, 0.45);
  box-shadow: 0 0 20px rgba(28, 201, 71, 0.15);
}

.btn--green:hover {
  background: rgba(46, 245, 98, 0.18);
  box-shadow: var(--shadow-neon-purple);
}

.btn--sm { padding: 0.6rem 1.25rem; }

.header .btn--sm {
  font-size: 0.8rem;
  padding: 0.65rem 1.35rem;
}

.btn--block {
  width: 100%;
  white-space: normal;
  text-align: center;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text-subtle);
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn--ghost:hover {
  transform: none;
  box-shadow: none;
}

.btn--ghost:disabled {
  pointer-events: none;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid rgba(46, 245, 98, 0.12);
  background: linear-gradient(180deg, rgba(9, 13, 20, 0.95) 0%, rgba(9, 13, 20, 0.75) 100%);
}

.header.scrolled {
  background: rgba(9, 13, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(46, 245, 98, 0.28);
  box-shadow: 0 4px 30px rgba(28, 201, 71, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(46, 245, 98, 0.35));
}

.nav { display: flex; align-items: center; gap: 1.5rem; }

.nav__list { display: flex; gap: 0.25rem; }

.nav__link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition), text-shadow var(--transition);
  letter-spacing: 0.02em;
}

.nav__link:hover {
  color: #FFFFFF;
  background: rgb(51 82 234 / 15%);
  text-shadow: 0 0 12px rgba(38, 116, 211, 0.123);
}

.nav__link.active {
  color: #FFFFFF;
  background: rgb(51 82 234 / 18%);
  text-shadow: 0 0 12px rgb(38 115 211 / 50%);
  box-shadow: inset 0 0 0 1px rgb(41 38 211 / 25%);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    background 0.2s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(165deg, #080C14 0%, #0D1220 45%, #0A0F1C 100%);
  overflow: hidden;
  padding-top: var(--header-h);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

.hero__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: block;
  opacity: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-hero-glow),
    linear-gradient(165deg, #080C14 0%, #0D1220 50%, #0A0F1C 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 3;
}

.hero__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 201, 71, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 245, 98, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 15%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: center;
  text-align: left;
  padding: clamp(0.5rem, 1.5vw, 1.25rem) 0 0;
}

.hero__content {
  align-self: center;
  padding-bottom: 0px;
  padding-top: 0;
  max-width: none;
  width: 100%;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-sep { color: var(--color-accent); -webkit-text-fill-color: var(--color-accent); }

.hero__title {
  font-size: 35px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  margin-inline: 0;
  opacity: 1;
  max-width: none;
  width: 100%;
  padding-right: 0;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-accent-magenta);
  margin-bottom: 1rem;
  opacity: 1;
}

.hero__subtitle {
  font-size: 17px;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 600px;
  margin-top: 1.55rem;
  margin-bottom: 2.25rem;
  margin-inline: 0;
  line-height: 1.75;
  opacity: 1;
}

.hero__subtitle strong {
  color: #FFFFFF;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.hero__metrics {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__metric {
  position: relative;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.hero__metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

.hero__metric-num {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

.hero__metric-num:not(.hero__metric-num--text) {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__metric-num--text {
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
}

.hero__metric-label {
  font-size: 13px;
  color: #FFFFFF;
  margin-top: 0.35rem;
  font-weight: 500;
  opacity: 1;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  min-height: clamp(280px, 42vw, 480px);
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
  overflow: visible;
}

.hero__visual-bg {
  position: absolute;
  inset: -6% -4%;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  border-radius: 50%;
  will-change: opacity;
}

.hero__visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 95% 88% at 50% 50%, rgba(46, 245, 98, 0.18) 0%, rgba(28, 201, 71, 0.08) 45%, transparent 78%);
  filter: blur(24px);
}

.hero__visual-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(720px, 100%);
  margin-inline: auto;
}

.hero__visual-neon-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 56%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(46, 245, 98, 0.42) 0%, rgba(28, 201, 71, 0.18) 40%, transparent 72%);
  filter: blur(38px);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  will-change: transform, opacity;
}

.hero__visual-neon-band {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(42px);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  will-change: transform, opacity;
}

.hero__visual-neon-band--1 {
  width: 118%;
  height: 44%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(46, 245, 98, 0.28) 28%,
    rgba(28, 201, 71, 0.38) 50%,
    rgba(8, 92, 116, 0.2) 72%,
    transparent 100%
  );
}

.hero__visual-neon-band--2 {
  width: 92%;
  height: 34%;
  background: linear-gradient(
    -75deg,
    transparent 0%,
    rgba(8, 92, 116, 0.18) 30%,
    rgba(46, 245, 98, 0.3) 55%,
    transparent 100%
  );
}

.hero__visual-neon-band--3 {
  width: 92%;
  height: 92%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    transparent 0deg,
    rgba(46, 245, 98, 0.24) 55deg,
    transparent 110deg,
    rgba(8, 92, 116, 0.18) 200deg,
    transparent 280deg
  );
  filter: blur(56px);
}

.hero__visual-neon-band--4 {
  width: 145%;
  height: 9%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(46, 245, 98, 0.08) 18%,
    rgba(100, 255, 144, 0.42) 48%,
    rgba(46, 245, 98, 0.08) 78%,
    transparent 100%
  );
  filter: blur(22px);
}

.hero__visual-neon-band--5 {
  width: 125%;
  height: 7%;
  border-radius: 999px;
  background: linear-gradient(
    -12deg,
    transparent 0%,
    rgba(8, 92, 116, 0.12) 25%,
    rgba(28, 201, 71, 0.36) 50%,
    rgba(8, 92, 116, 0.12) 75%,
    transparent 100%
  );
  filter: blur(18px);
}

.hero__visual-glow {
  position: absolute;
  top: 54%;
  left: 50%;
  z-index: 0;
  width: 78%;
  height: 102%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(46, 245, 98, 0.62) 0%, rgba(28, 201, 71, 0.34) 32%, rgba(8, 92, 116, 0.1) 55%, transparent 82%);
  filter: blur(72px);
  pointer-events: none;
  will-change: opacity, transform;
}

.hero__visual-glow::before {
  content: '';
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(100, 255, 144, 0.42) 0%, rgba(46, 245, 98, 0.12) 42%, transparent 72%);
  filter: blur(40px);
}

.hero__visual-glow::after {
  content: '';
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 55%, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
  filter: blur(18px);
  mix-blend-mode: soft-light;
}

.hero__panel {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 96px rgba(46, 245, 98, 0.32))
    drop-shadow(0 0 140px rgba(28, 201, 71, 0.14));
  will-change: transform;
}

.hero__portrait {
  position: relative;
  width: min(620px, 54vw);
  margin-inline: auto;
  --portrait-anchor-y: 58%;
  animation: portrait-float 8s ease-in-out infinite;
}

.hero__portrait-fx {
  position: absolute;
  top: var(--portrait-anchor-y);
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero__portrait-glow {
  position: absolute;
  inset: -15%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(46, 245, 98, 0.38) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 30% 55%, rgba(28, 201, 71, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 72% 50%, rgba(8, 92, 116, 0.1) 0%, transparent 52%);
  filter: blur(20px);
  animation: portrait-glow 5s ease-in-out infinite;
}

.hero__portrait-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero__portrait-ring--1 {
  inset: -6%;
  border: 1px solid rgba(46, 245, 98, 0.48);
  box-shadow:
    0 0 24px rgba(46, 245, 98, 0.38),
    0 0 48px rgba(28, 201, 71, 0.15),
    inset 0 0 24px rgba(100, 255, 144, 0.12);
  animation: portrait-ring 28s linear infinite;
}

.hero__portrait-ring--2 {
  inset: -12%;
  border: 1px solid rgba(8, 92, 116, 0.26);
  box-shadow:
    0 0 32px rgba(8, 92, 116, 0.14),
    0 0 56px rgba(8, 92, 116, 0.07);
  animation: portrait-ring 40s linear infinite reverse;
}

.hero__portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  object-position: center top;
  max-height: min(760px, calc(100vh - var(--header-h) + 2rem));
  height: auto;
  aspect-ratio: auto;
}

@keyframes portrait-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes portrait-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes portrait-glow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* legacy panel card — unused */
.hero__panel-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero__panel-role {
  font-size: 0.85rem;
  color: var(--color-accent-cyan);
  font-weight: 400;
  margin-top: 0.2rem;
}

.hero__panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(28, 201, 71, 0.1);
  border: 1px solid rgba(28, 201, 71, 0.25);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-accent);
}

.hero__panel-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent-magenta);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(46, 245, 98, 0.8);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Trust Bar */
.trust-bar {
  position: relative;
  z-index: 4;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: -52px;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-block: 1.25rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem clamp(1rem, 3vw, 2.5rem);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

.trust-bar__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__inner--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-bar__inner--3 .trust-bar__item {
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  color: #E2E8F0;
}

.trust-bar__inner--3 .trust-bar__item strong {
  color: #FFFFFF;
}

.trust-bar__item strong { color: #FFFFFF; font-weight: 600; }
.trust-bar__item .icon { color: var(--color-accent-cyan); width: 18px; height: 18px; filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.4)); }

/* Marquee — faixa de urgência (100% largura) */
.marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--color-accent);
  border-block: 1px solid rgba(0, 0, 0, 0.12);
  padding-block: 0.9rem;
  position: relative;
  z-index: 3;
}

.marquee__track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 2.5rem;
}

.marquee__item {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-on-cta);
  white-space: nowrap;
  padding-inline: 0.15rem;
}

.marquee__sep {
  margin-inline: 1.25rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  color: rgba(4, 24, 16, 0.45);
  user-select: none;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section--ingresso .marquee {
  margin-block: 0;
}

/* Sections */
.section {
  padding-block: var(--section-py);
  background: var(--color-bg);
}

.section--secondary { background: var(--color-bg-secondary); }

.section--accent {
  background: var(--gradient-accent-section);
  border-block: 1px solid var(--color-border);
}

/* Manifesto */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(28, 201, 71, 0.1);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 245, 98, 0.45);
  box-shadow: var(--shadow-neon-purple);
}

.pillar-card__icon { margin-bottom: 1.25rem; }

.pillar-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.pillar-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0vw, 3rem);
  align-items: start;
  position: relative;
  overflow: visible;
}

.about__text {
  position: relative;
  z-index: 5;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.about__text p strong { color: var(--color-text); font-weight: 600; }

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about__highlight {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem;
  background: rgb(0 0 0 / 58%);
  border-radius: var(--radius-md);
  border: 1px solid rgb(46 245 98 / 62%);
}

.about__highlight h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--color-text);
}

.about__highlight p {
  font-size: 0.78rem;
  color: var(--color-text-subtle);
  margin: 0;
  line-height: 1.5;
}

.section--about {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.section--about > .container {
  overflow: visible;
}

.section--metodologia {
  position: relative;
  z-index: 1;
  margin-top: -4rem;
  padding-top: calc(var(--section-py) + 2rem);
}

.section--metodologia::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--color-bg-secondary) 100%);
  pointer-events: none;
  z-index: 0;
}

.section--metodologia > .container {
  position: relative;
  z-index: 1;
}

.about__visual {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.about__security-hub {
  position: relative;
  z-index: 2;
  width: min(300px, 80vw);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: portrait-float 8s ease-in-out infinite;
}

.about__security-hub-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--neon-teal-deep), 0.22) 0%, transparent 55%),
    radial-gradient(circle at 50% 55%, rgba(46, 245, 98, 0.18) 0%, transparent 60%);
  filter: blur(24px);
  animation: portrait-glow 5s ease-in-out infinite;
}

.about__security-hub-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about__security-hub-ring--1 {
  inset: 0;
  border: 1px solid rgba(var(--neon-teal), 0.3);
  box-shadow:
    0 0 30px rgba(var(--neon-teal-deep), 0.2),
    inset 0 0 30px rgba(var(--neon-teal), 0.08);
  animation: portrait-ring 30s linear infinite;
}

.about__security-hub-ring--2 {
  inset: -12%;
  border: 1px solid rgba(var(--neon-teal-deep), 0.22);
  box-shadow: 0 0 50px rgba(var(--neon-teal-deep), 0.12);
  animation: portrait-ring 45s linear infinite reverse;
}

.about__security-hub-core {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(var(--neon-teal), 0.35),
    0 0 80px rgba(var(--neon-teal-deep), 0.18);
  animation: pulse-core 4s ease-in-out infinite;
}

.about__security-hub-core .icon {
  width: 42px;
  height: 42px;
  color: #FFFFFF;
}

.about__security-badges {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0 0.5rem;
  list-style: none;
}

.about__security-badges li {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 50px;
  color: #38BDF8;
}

.about__security-tagline {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  max-width: 240px;
  line-height: 1.5;
}

.neuron-canvas {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% + 200px);
  pointer-events: none;
  z-index: 1;
}

/* legacy tech-visual — removed */
.tech-visual {
  position: relative;
  width: min(320px, 80vw);
  height: min(320px, 80vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(28, 201, 71, 0.2);
}

.tech-visual__ring--1 {
  width: 100%; height: 100%;
  animation: spin-slow 20s linear infinite;
  border-color: rgba(37, 99, 235, 0.25);
}

.tech-visual__ring--2 {
  width: 75%; height: 75%;
  animation: spin-slow 15s linear infinite reverse;
  border-color: rgba(28, 201, 71, 0.3);
}

.tech-visual__ring--3 {
  width: 50%; height: 50%;
  animation: spin-slow 10s linear infinite;
  border-color: rgba(46, 245, 98, 0.35);
}

.tech-visual__core {
  width: 72px;
  height: 72px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon-purple), var(--shadow-neon-magenta);
  z-index: 2;
  animation: pulse-core 3s ease-in-out infinite;
}

.tech-visual__core .icon { width: 32px; height: 32px; color: #fff; }

.tech-visual__orbit {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
}

.tech-visual__orbit--1 {
  top: 8%; left: 50%;
  animation: orbit-1 8s linear infinite;
}

.tech-visual__orbit--2 {
  bottom: 15%; right: 10%;
  background: var(--color-accent-magenta);
  box-shadow: 0 0 12px rgba(46, 245, 98, 0.8);
  animation: orbit-2 6s linear infinite;
}

.tech-visual__orbit--3 {
  bottom: 20%; left: 12%;
  background: var(--color-accent-blue);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
  animation: orbit-3 10s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-core {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-neon-purple); }
  50% { transform: scale(1.05); box-shadow: var(--shadow-neon-purple), var(--shadow-neon-magenta); }
}

@keyframes orbit-1 {
  0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes orbit-2 {
  0% { transform: rotate(120deg) translateX(110px) rotate(-120deg); }
  100% { transform: rotate(480deg) translateX(110px) rotate(-480deg); }
}

@keyframes orbit-3 {
  0% { transform: rotate(240deg) translateX(90px) rotate(-240deg); }
  100% { transform: rotate(600deg) translateX(90px) rotate(-600deg); }
}

.about__logo-frame {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(28, 201, 71, 0.2);
}

.about__logo-frame img { max-width: 260px; border-radius: var(--radius-md); }

.about__badge {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--gradient-brand);
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neon-purple);
  text-align: center;
}

.about__badge-num {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}

.about__badge-label {
  font-size: 0.7rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(28, 201, 71, 0.2) 0, rgba(28, 201, 71, 0.2) 8px, transparent 8px, transparent 16px);
}

.process-step {
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}

.process-step:hover { transform: translateY(-4px); }

.process-step__num {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  background: var(--color-bg);
  border: 2px solid rgba(28, 201, 71, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.process-step:hover .process-step__num {
  background: rgba(28, 201, 71, 0.12);
  border-color: var(--color-accent);
  border-style: solid;
}

.process-step__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.process-step__desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-inline: 0.5rem;
}

/* Services Grid — equal cards */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 245, 98, 0.35);
  box-shadow: var(--shadow-neon-purple);
}

.service-card--highlight {
  border-color: rgba(46, 245, 98, 0.42);
  box-shadow: 0 0 0 1px rgba(46, 245, 98, 0.12), 0 8px 32px rgba(28, 201, 71, 0.14);
}

.service-card--highlight:hover {
  border-color: rgba(46, 245, 98, 0.55);
  box-shadow: 0 0 0 1px rgba(46, 245, 98, 0.2), var(--shadow-neon-purple);
}

.section--audience .service-card__icon,
#recursos .feature-card__icon {
  margin: 0 auto 1.35rem;
  display: flex;
  justify-content: center;
}

.section--audience .icon-wrap--topic,
#recursos .icon-wrap--topic,
.ia-showcase .icon-wrap--topic {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(46, 245, 98, 0.38);
  color: var(--color-accent);
  box-shadow: none;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.ia-showcase .icon-wrap--topic {
  width: 64px;
  height: 64px;
}

.section--audience .icon-wrap--topic .icon,
#recursos .icon-wrap--topic .icon,
.ia-showcase .icon-wrap--topic .icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.65;
}

.ia-showcase .icon-wrap--topic .icon {
  width: 30px;
  height: 30px;
}

.section--audience .service-card:hover .icon-wrap--topic,
#recursos .feature-card:hover .icon-wrap--topic {
  border-color: rgba(46, 245, 98, 0.72);
  transform: scale(1.04);
  box-shadow: 0 0 0 4px rgba(28, 201, 71, 0.08);
}

.section--audience .service-card--highlight .icon-wrap--topic {
  border-color: rgba(46, 245, 98, 0.58);
  box-shadow: 0 0 0 1px rgba(46, 245, 98, 0.12);
}

.section--audience .service-card__title {
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.section--audience .service-card__desc {
  font-size: 0.9rem;
  color: #B8C4D4;
}

.service-card__icon { margin-bottom: 1rem; }

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #FFFFFF;
}

.service-card__desc {
  font-size: 0.875rem;
  color: #C8D0DC;
  line-height: 1.65;
  flex: 1;
}

/* Bento (legacy) */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.bento__item:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 245, 98, 0.35);
  box-shadow: var(--shadow-neon-purple);
}

.bento__item--wide { grid-column: span 2; }

.bento__icon { margin-bottom: 1.15rem; }

.bento__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.bento__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Product */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.product__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: rgba(28, 201, 71, 0.08);
  border: 1px solid rgba(28, 201, 71, 0.25);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.product__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.product__desc {
  color: #E2E8F0;
  margin-bottom: 1.5rem;
}

.product__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.product__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #C8D0DC;
}

.product__desc strong { color: #FFFFFF; }

.product__stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.product__stat {
  text-align: center;
  padding: 0.75rem 1.25rem;
  background: rgba(28, 201, 71, 0.1);
  border: 1px solid rgba(28, 201, 71, 0.2);
  border-radius: var(--radius-sm);
}

.product__stat-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product__stat-label {
  font-size: 0.7rem;
  color: #C8D0DC;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product__visual-card {
  padding: 1rem;
}

.product__visual-tagline {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.product__visual-tagline strong { color: #FFFFFF; }

.product__visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.product__visual-badges span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(28, 201, 71, 0.12);
  border: 1px solid rgba(28, 201, 71, 0.25);
  border-radius: 50px;
  color: var(--color-accent-cyan);
}

/* Team Grid */
.team__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.team-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 245, 98, 0.3);
  box-shadow: var(--shadow-neon-purple);
}

.team-card__avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  border: 2px solid rgba(46, 245, 98, 0.3);
  box-shadow: var(--shadow-neon-purple);
}

.team-card__avatar--photo {
  overflow: hidden;
  padding: 0;
}

.team-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__avatar--dev {
  background: rgba(28, 201, 71, 0.15);
  border-color: rgba(28, 201, 71, 0.35);
}

.team-card__avatar--dev .icon {
  width: 120px;
  height: 120px;
  color: var(--color-accent-cyan);
}

.team-card__avatar--security {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.team-card__avatar--security .icon {
  color: #38BDF8;
}

.team-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.team-card__role {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-accent-cyan);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.team-card__bio {
  font-size: 0.85rem;
  color: #C8D0DC;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.team-card__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(28, 201, 71, 0.1);
  border: 1px solid rgba(46, 245, 98, 0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: background var(--transition), box-shadow var(--transition);
}

.team-card__instagram .icon { width: 16px; height: 16px; }

.team-card__instagram:hover {
  background: rgba(28, 201, 71, 0.2);
  box-shadow: 0 0 16px rgba(46, 245, 98, 0.3);
}

.team-card__message {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: background var(--transition), box-shadow var(--transition);
}

.team-card__message .icon { width: 16px; height: 16px; color: #38BDF8; }

.team-card__message:hover {
  background: rgba(37, 99, 235, 0.22);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.35);
}

.team-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 50px;
  color: var(--color-accent-cyan);
}

.team-card__tag--security {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38BDF8;
}

.product__check {
  width: 20px;
  height: 20px;
  background: rgba(28, 201, 71, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product__check .icon { width: 12px; height: 12px; color: var(--color-accent); }

.product__visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.product__visual img {
  max-width: 300px;
  margin-inline: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.4));
}

/* Segmentos */
.segments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.segment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.segment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 245, 98, 0.4);
  box-shadow: var(--shadow-neon-purple);
}

.segment-card__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 1.35rem;
}

.segment-card__icon-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 201, 71, 0.35) 0%, transparent 70%);
  animation: segment-glow 4s ease-in-out infinite;
}

.segment-card:nth-child(2) .segment-card__icon-glow { animation-delay: 0.6s; }
.segment-card:nth-child(3) .segment-card__icon-glow { animation-delay: 1.2s; }
.segment-card:nth-child(4) .segment-card__icon-glow { animation-delay: 0.3s; }
.segment-card:nth-child(5) .segment-card__icon-glow { animation-delay: 0.9s; }
.segment-card:nth-child(6) .segment-card__icon-glow { animation-delay: 1.5s; }

.segment-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  animation: segment-icon-float 5s ease-in-out infinite;
}

.segment-card:nth-child(1) .segment-card__icon { animation-delay: 0s; }
.segment-card:nth-child(2) .segment-card__icon { animation-delay: 0.8s; }
.segment-card:nth-child(3) .segment-card__icon { animation-delay: 1.6s; }
.segment-card:nth-child(4) .segment-card__icon { animation-delay: 0.4s; }
.segment-card:nth-child(5) .segment-card__icon { animation-delay: 1.2s; }
.segment-card:nth-child(6) .segment-card__icon { animation-delay: 2s; }

.segment-card:hover .segment-card__icon {
  animation: segment-icon-pulse 1.2s ease-in-out infinite;
}

.segment-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
}

.segment-card__desc {
  font-size: 0.875rem;
  color: #C8D0DC;
  line-height: 1.7;
  flex: 1;
}

@keyframes segment-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes segment-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes segment-icon-pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-neon-purple); }
  50% { transform: scale(1.08); box-shadow: var(--shadow-neon-purple), var(--shadow-neon-magenta); }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-left: 3px solid rgba(28, 201, 71, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(28, 201, 71, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial__quote {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial__name { font-size: 0.875rem; font-weight: 600; color: var(--color-text); }
.testimonial__role { font-size: 0.75rem; color: var(--color-text-subtle); }

/* Leadership */
.leader {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}

.leader__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.leader__photo img { width: 100%; }

.leader__name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.leader__role {
  font-size: 1rem;
  color: var(--color-accent-cyan);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.leader__bio {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.leader__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.leader__tag {
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
}

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; }

.faq__item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--color-accent); }

.faq__item summary .icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-subtle);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}

.faq__item[open] summary .icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq__answer {
  padding-bottom: 1.35rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* CTA */
.cta-premium {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gradient-cta-section);
  border: 1px solid rgba(46, 245, 98, 0.22);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  color: var(--color-text);
  box-shadow: var(--shadow-neon-purple), inset 0 0 60px rgba(28, 201, 71, 0.06);
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 245, 98, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.cta-premium__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-premium__desc {
  color: var(--color-text-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* Ingresso / Lotes */
.section--ingresso {
  position: relative;
  padding-top: 0;
  background: var(--gradient-ingresso-section);
  overflow: hidden;
}

.section--ingresso > .marquee {
  position: relative;
  z-index: 2;
}

.section--ingresso::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(8, 92, 116, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(46, 245, 98, 0.06) 0%, transparent 38%);
  pointer-events: none;
}

.section--ingresso > .container {
  position: relative;
  z-index: 1;
}

.section--ingresso .section__header .eyebrow {
  color: var(--color-accent);
}

.section--ingresso .section__title {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ingresso__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 0.9rem 1.35rem 0.9rem 2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(28, 201, 71, 0.14) 0%, rgba(8, 92, 116, 0.1) 100%);
  border: 1px solid rgba(46, 245, 98, 0.22);
  backdrop-filter: blur(10px);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(100, 255, 144, 0.06);
}

.ingresso__urgency .icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.ingresso__urgency strong {
  color: var(--color-accent);
}

.ingresso__urgency-pulse {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 14px rgba(46, 245, 98, 0.85);
  animation: urgency-pulse 1.8s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.35); }
}

.ingresso__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.ingresso-lote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(4, 26, 18, 0.6) 0%, rgba(9, 18, 38, 0.85) 100%);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ingresso-lote--active {
  background: var(--gradient-ingresso-card);
  border-color: rgba(46, 245, 98, 0.35);
  box-shadow: var(--shadow-ingresso);
  transform: scale(1.03);
  z-index: 2;
}

.ingresso-lote--active::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.ingresso-lote--active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 245, 98, 0.4), transparent);
  pointer-events: none;
}

.ingresso-lote--locked {
  opacity: 0.68;
  background: linear-gradient(180deg, rgba(12, 8, 14, 0.6) 0%, rgba(9, 18, 38, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.05);
}

.ingresso-lote__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ingresso-lote__badge--live {
  background: rgba(46, 245, 98, 0.15);
  border: 1px solid rgba(46, 245, 98, 0.42);
  color: var(--color-accent);
  box-shadow: 0 0 20px rgba(46, 245, 98, 0.18);
}

.ingresso-lote__badge--soon {
  background: rgba(46, 245, 98, 0.08);
  border: 1px solid rgba(46, 245, 98, 0.22);
  color: var(--color-text-subtle);
}

.ingresso-lote__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(46, 245, 98, 0.85);
  animation: urgency-pulse 1.5s ease-in-out infinite;
}

.ingresso-lote__lock {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 245, 98, 0.06);
  border: 1px solid var(--color-border);
  color: var(--color-text-subtle);
}

.ingresso-lote__lock .icon {
  width: 1rem;
  height: 1rem;
}

.ingresso-lote__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.ingresso-lote__label {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
  margin-bottom: 1.25rem;
}

.ingresso-lote__price {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.15rem;
}

.ingresso-lote__amount-wrap {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.12rem;
  line-height: 1;
}

.ingresso-lote__period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  line-height: 1;
  padding-bottom: 0.45rem;
}

.ingresso-lote__price--muted .ingresso-lote__amount,
.ingresso-lote__price--muted .ingresso-lote__currency {
  color: var(--color-text-subtle);
  -webkit-text-fill-color: var(--color-text-subtle);
  background: none;
}

.ingresso-lote__currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-deep);
  margin-top: 0.5rem;
}

.ingresso-lote--active .ingresso-lote__currency {
  color: var(--color-accent);
}

.ingresso-lote__amount {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ingresso-lote--active .ingresso-lote__amount {
  filter: drop-shadow(0 0 18px rgba(46, 245, 98, 0.35));
}

.ingresso-lote__installments {
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  margin-top: 0.15rem;
  margin-bottom: 1.15rem;
}

.ingresso-lote__diff {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
  margin-bottom: 1.25rem;
}

.ingresso-lote__diff strong {
  color: var(--color-accent);
}

.ingresso-countdown {
  margin-bottom: 1.25rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(4, 26, 18, 0.65) 0%, rgba(8, 92, 116, 0.08) 100%);
  border: 1px solid rgba(46, 245, 98, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(100, 255, 144, 0.06);
}

.ingresso-countdown__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.ingresso-countdown__label .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--color-accent-deep);
}

.ingresso-countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.ingresso-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.25rem;
}

.ingresso-countdown__value {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(28, 201, 71, 0.15);
  border: 1px solid rgba(46, 245, 98, 0.2);
  min-width: 2.75rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(100, 255, 144, 0.08);
}

.ingresso-countdown__suffix {
  font-size: 0.65rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.ingresso-countdown__sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(46, 245, 98, 0.4);
  margin-bottom: 1rem;
  line-height: 1;
}

.ingresso-lote__scarcity {
  margin-bottom: 1.25rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(28, 201, 71, 0.08);
  border: 1px solid rgba(46, 245, 98, 0.14);
}

.ingresso-lote__scarcity-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.55rem;
}

.ingresso-lote__scarcity-head strong {
  color: var(--color-accent);
  font-weight: 700;
}

.ingresso-lote__scarcity-pct {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent-magenta);
  white-space: nowrap;
}

.ingresso-lote__progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: 1px solid rgba(46, 245, 98, 0.12);
}

.ingresso-lote__progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent-deep) 0%, var(--color-accent) 55%, var(--color-accent-magenta) 100%);
  box-shadow: 0 0 14px rgba(46, 245, 98, 0.4);
  transition: width 1.2s ease;
}

.ingresso-lote__perks {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.ingresso-lote__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(46, 245, 98, 0.08);
}

.ingresso-lote__perks li:last-child {
  border-bottom: none;
}

.ingresso-lote__perks .icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-accent);
}

.ingresso-lote__perks--muted li {
  padding-left: 0.25rem;
  border-bottom: none;
}

.ingresso-lote__perks--muted li::before {
  content: '·';
  margin-right: 0.5rem;
  color: rgba(46, 245, 98, 0.35);
}

.ingresso-offer {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.ingresso-lote__cta {
  font-size: 18px;
  padding: 1rem 1.25rem;
}

.ingresso-lote__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--color-text-subtle);
}

.ingresso-lote__secure .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--color-teal-mid);
}

.ingresso__triggers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ingresso-trigger {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(28, 201, 71, 0.08) 0%, rgba(8, 92, 116, 0.08) 100%);
  border: 1px solid rgba(46, 245, 98, 0.12);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ingresso-trigger:hover {
  border-color: rgba(46, 245, 98, 0.28);
  box-shadow: 0 4px 24px rgba(46, 245, 98, 0.1);
}

.ingresso-trigger .icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 0.1rem;
}

.ingresso-trigger strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.ingresso-trigger span {
  font-size: 0.78rem;
  color: var(--color-text-subtle);
  line-height: 1.45;
}

.ingresso-lote .btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border);
  opacity: 0.72;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.contact__info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.contact__info > p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact__items { display: flex; flex-direction: column; gap: 1.15rem; }

.contact__item { display: flex; align-items: center; gap: 1rem; }

.contact__item-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.contact__item-value {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--color-text);
}

.contact__item-value a:hover { color: var(--color-accent); }

.contact__social { display: flex; gap: 0.65rem; margin-top: 2rem; }

.contact__social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact__social a .icon { width: 18px; height: 18px; color: var(--color-text-muted); }

.contact__social a:hover {
  background: rgba(28, 201, 71, 0.1);
  border-color: rgba(28, 201, 71, 0.3);
  transform: translateY(-2px);
}

.contact__social a:hover .icon { color: var(--color-accent); }

.contact__form {
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: rgba(255, 255, 255, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-subtle); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(28, 201, 71, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact__form .btn { width: 100%; }

/* Footer */
.footer {
  background: var(--color-bg);
  color: var(--color-text-muted);
  padding: 30px 10px;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand img {
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(28, 201, 71, 0.3));
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer__col h4 {
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.45rem; }

.footer__col a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--color-accent); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer__legal { opacity: 0.7; }

.footer__disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.68rem;
  line-height: 1.65;
  color: var(--color-text-subtle);
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.footer__disclaimer strong {
  font-weight: 600;
  color: var(--color-text-muted);
}

.footer--event .footer__disclaimer {
  border-top-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.55);
}

.footer--event .footer__disclaimer strong {
  color: rgba(0, 0, 0, 0.7);
}

/* FABs — scroll to top + WhatsApp */
.fab-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}

.scroll-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(28, 201, 71, 0.45);
  background: rgba(9, 13, 20, 0.94);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.92);
  pointer-events: none;
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.scroll-top .icon {
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
  color: var(--color-accent);
}

.scroll-top:hover {
  border-color: rgba(46, 245, 98, 0.65);
  box-shadow: 0 6px 24px rgba(28, 201, 71, 0.35);
  transform: translateY(0) scale(1.04);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top.is-visible:hover {
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1024px) {
  .scroll-top {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 0;
  border: none;
  cursor: pointer;
  font: inherit;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab::before,
.whatsapp-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  z-index: -1;
  pointer-events: none;
  animation: whatsapp-glow 2.4s ease-out infinite;
}

.whatsapp-fab::after {
  animation-delay: 1.2s;
}

@keyframes whatsapp-glow {
  0% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    opacity: 0.15;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
    box-shadow: 0 0 24px 8px rgba(37, 211, 102, 0);
  }
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: var(--color-text);
}

.whatsapp-fab__tooltip {
  position: absolute;
  right: 70px;
  background: var(--color-bg-secondary);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-fab:hover .whatsapp-fab__tooltip { opacity: 1; }

/* Lead modal — WhatsApp */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  visibility: hidden;
  pointer-events: none;
  perspective: 1200px;
}

.lead-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal.is-open[hidden] {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 20, 0.82);
  backdrop-filter: blur(8px);
  clip-path: circle(0% at calc(100% - 2.75rem) calc(100% - 2.75rem));
  transition: clip-path 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}

.lead-modal.is-open .lead-modal__backdrop {
  clip-path: circle(165% at calc(100% - 2.75rem) calc(100% - 2.75rem));
}

.lead-modal__panel {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  max-height: min(92vh, 700px);
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.35rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
  border: 1px solid #dce3ec;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transform: scale(0.55) translateY(72px) rotate(4deg);
  transform-origin: calc(100% - 2.5rem) calc(100% + 0.5rem);
  transition: transform 0.58s cubic-bezier(0.34, 1.45, 0.64, 1);
  will-change: transform;
}

.lead-modal.is-open .lead-modal__panel {
  transform: scale(1) translateY(0) rotate(0deg);
}

.lead-modal.is-closing .lead-modal__panel {
  transform: scale(0.62) translateY(56px) rotate(-3deg);
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.45);
}

.lead-modal.is-closing .lead-modal__backdrop {
  clip-path: circle(0% at calc(100% - 2.75rem) calc(100% - 2.75rem));
  transition-duration: 0.48s;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.45);
}

.lead-modal--exit .lead-modal__panel {
  border-color: rgba(28, 201, 71, 0.42);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.18),
    0 0 0 3px rgba(28, 201, 71, 0.14);
}

.lead-modal--exit .lead-modal__title {
  color: #0f172a;
}

.lead-modal.is-open .lead-modal__progress-wrap {
  animation: lead-modal-slide-in 0.52s cubic-bezier(0.34, 1.25, 0.64, 1) 0.14s both;
}

.lead-modal.is-open .lead-modal__title--entry {
  animation: lead-modal-slide-in 0.52s cubic-bezier(0.34, 1.25, 0.64, 1) 0.2s both;
}

.lead-modal.is-open .lead-modal__desc--entry {
  animation: lead-modal-slide-in 0.52s cubic-bezier(0.34, 1.25, 0.64, 1) 0.26s both;
}

.lead-modal.is-open .lead-modal__form-fields {
  animation: lead-modal-slide-in 0.52s cubic-bezier(0.34, 1.25, 0.64, 1) 0.32s both;
}

.lead-modal.is-open .lead-modal__close {
  animation: lead-modal-close-in 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) 0.38s both;
}

.lead-modal__panel--to-success .lead-modal__progress-wrap,
.lead-modal__panel--to-success .lead-modal__title--entry,
.lead-modal__panel--to-success .lead-modal__desc--entry,
.lead-modal__panel--to-success .lead-modal__form-fields {
  animation: lead-modal-slide-out 0.32s cubic-bezier(0.55, 0.06, 0.68, 0.45) forwards;
}

.lead-modal__success.is-animated {
  animation: lead-modal-success-in 0.52s cubic-bezier(0.34, 1.35, 0.64, 1) both;
}

.lead-modal__success.is-animated .lead-modal__success-icon {
  animation: lead-modal-check-pop 0.55s cubic-bezier(0.34, 1.65, 0.64, 1) 0.1s both;
}

@keyframes lead-modal-slide-in {
  from {
    transform: translateX(-28px) scale(0.96);
  }
  to {
    transform: translateX(0) scale(1);
  }
}

@keyframes lead-modal-slide-out {
  from {
    transform: translateX(0) scale(1);
  }
  to {
    transform: translateX(28px) scale(0.94);
  }
}

@keyframes lead-modal-close-in {
  from {
    transform: rotate(-90deg) scale(0);
  }
  to {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes lead-modal-success-in {
  from {
    transform: translateY(32px) scale(0.88) rotate(-2deg);
  }
  to {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes lead-modal-check-pop {
  0% {
    transform: scale(0) rotate(-120deg);
  }
  65% {
    transform: scale(1.12) rotate(8deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.lead-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #d1dbe6;
  border-radius: 50%;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.lead-modal__close .icon {
  width: 1.1rem;
  height: 1.1rem;
  transform: rotate(45deg);
}

.lead-modal__close:hover {
  border-color: rgba(28, 201, 71, 0.45);
  color: #16a34a;
  background: #f0fdf4;
}

.lead-modal__progress-wrap {
  margin-bottom: 1.35rem;
  padding-right: 2rem;
}

.lead-modal__progress {
  height: 9px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  margin-bottom: 0.5rem;
}

.lead-modal__progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16a34a 0%, #2ef562 55%, #1cc947 100%);
  box-shadow: 0 0 10px rgba(28, 201, 71, 0.35);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lead-modal__progress-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
  margin: 0;
}

.lead-modal__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.lead-modal__desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lead-modal__form .form-group label {
  color: #334155;
}

.lead-modal__form .form-group label span {
  color: #16a34a;
}

.lead-modal__form .form-group input {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

.lead-modal__form .form-group input::placeholder {
  color: #94a3b8;
}

.lead-modal__form .form-group input:focus {
  border-color: rgba(28, 201, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(28, 201, 71, 0.14);
}

.phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.phone-input__country {
  position: relative;
  flex: 0 0 auto;
}

.country-select__trigger {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 7.25rem;
  padding: 0.85rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.country-select.is-open .country-select__trigger,
.country-select__trigger:focus {
  outline: none;
  border-color: rgba(28, 201, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(28, 201, 71, 0.14);
}

.country-select__flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.country-select__code {
  line-height: 1;
}

.country-select__chevron {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: #64748b;
  transition: transform 0.2s ease;
}

.country-select.is-open .country-select__chevron {
  transform: rotate(180deg);
}

.country-select__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 30;
  min-width: 100%;
  width: max-content;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.country-select__list[hidden] {
  display: none;
}

.country-select__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  white-space: nowrap;
}

.country-select__option:hover,
.country-select__option.is-selected {
  background: #f0fdf4;
}

.country-select__option img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.phone-input input {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

.phone-input input:focus {
  border-color: rgba(28, 201, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(28, 201, 71, 0.14);
}

.lead-modal__submit {
  margin-top: 0.35rem;
}

.lead-modal__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.74rem;
  color: #64748b;
}

.lead-modal__secure .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: #16a34a;
}

.lead-modal__error {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #dc2626;
  text-align: center;
}

.lead-modal__success {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.lead-modal__success-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid rgba(28, 201, 71, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.lead-modal__success-icon .icon {
  width: 1.6rem;
  height: 1.6rem;
}

.lead-modal__desc--success {
  margin-bottom: 1.35rem;
}

.lead-modal__whatsapp-btn {
  margin-top: 0.25rem;
}

.lead-modal__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__item--wide { grid-column: span 2; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .segments__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-column: span 1; }
  .testimonials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .ingresso__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .section--planos .ingresso-lote--starter { order: 1; }
  .section--planos .ingresso-lote--business { order: 2; }
  .section--planos .ingresso-lote--pro { order: 3; }

  .ingresso-lote--active {
    transform: none;
  }

  .section--planos .ingresso-lote--active {
    order: 2;
  }

  .ingresso__triggers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --event-bar-h: 0px;
    --header-h: 80px;
    --header-h-scroll: 60px;
    --section-py: clamp(2.75rem, 7vw, 3.75rem);
    --mobile-title: 1.5rem;
    --mobile-lead: 0.875rem;
    --mobile-body: 0.8125rem;
    --mobile-cta: 1rem;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: max(20px, 5vw);
    box-sizing: border-box;
  }

  .header__inner {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .section {
    overflow-x: clip;
  }

  .nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(2, 9, 20, 0.82);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.35rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-bottom: 1px solid rgba(46, 245, 98, 0.14);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      visibility 0s linear 0.38s;
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.34s ease,
      visibility 0s linear 0s;
  }

  .nav__list li {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.28s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav__list.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__list.open li:nth-child(1) { transition-delay: 0.04s; }
  .nav__list.open li:nth-child(2) { transition-delay: 0.07s; }
  .nav__list.open li:nth-child(3) { transition-delay: 0.1s; }
  .nav__list.open li:nth-child(4) { transition-delay: 0.13s; }
  .nav__list.open li:nth-child(5) { transition-delay: 0.16s; }
  .nav__list.open li:nth-child(6) { transition-delay: 0.19s; }

  .nav__toggle { display: flex; }
  .nav > .btn { display: none; }

  .nav__list .nav__link {
    font-size: 1.0625rem;
    padding: 0.7rem 1rem;
    width: 100%;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(1.5rem, 4vw, 2.25rem);
    align-items: center;
    text-align: center;
  }

  .hero__inner.container {
    padding-inline: max(1.25rem, 6vw);
  }

  .hero__content {
    align-self: auto;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero__title {
    margin-inline: auto;
    padding-inline: 0.15rem;
    margin-bottom: 0.85rem;
  }

  .hero__clients {
    margin-inline: auto;
    margin-block: 0.85rem 1rem;
    max-width: 100%;
    width: min(100%, 453px);
    height: auto;
    box-sizing: border-box;
  }

  .hero__subtitle {
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 1.5rem;
    max-width: 100%;
    padding-inline: 0.35rem;
    box-sizing: border-box;
  }

  .hero__actions {
    width: 100%;
    padding-inline: 0;
    margin-bottom: 0;
  }

  .hero__visual {
    order: -1;
    align-items: center;
    align-self: center;
    margin-bottom: 0;
    margin-left: 0;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .hero__visual-wrap {
    max-width: min(560px, 96%);
  }

  .hero__inner > * {
    min-width: 0;
  }

  .hero__portrait {
    width: min(500px, 82%);
    animation: none;
  }

  .hero__portrait img {
    max-height: none;
    aspect-ratio: 3 / 4;
  }

  .hero__portrait-glow { inset: -8%; }
  .hero__portrait-ring--1 { inset: -4%; }
  .hero__portrait-ring--2 { inset: -7%; }

  .section__header {
    margin-bottom: 1.75rem;
  }

  .section__title {
    font-size: var(--mobile-title);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .section__desc {
    font-size: var(--mobile-lead);
    line-height: 1.55;
    max-width: none;
  }

  .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
  }

  .section__cta {
    margin-top: 2rem;
  }

  main .section__cta .btn,
  main .video-block__cta .btn,
  .hero__actions .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 1.35;
    font-size: var(--mobile-cta);
    padding: 0.875rem 1.15rem;
    min-height: 3rem;
  }

  main .section__cta .btn span[aria-hidden="true"],
  main .video-block__cta .btn span[aria-hidden="true"],
  .hero__actions .btn span[aria-hidden="true"] {
    display: inline;
    white-space: nowrap;
  }

  .video-block__cta {
    width: 100%;
  }

  .section--planos .ingresso-lote__cta {
    font-size: var(--mobile-cta);
    white-space: normal;
    text-wrap: balance;
    line-height: 1.35;
    padding: 0.875rem 1rem;
    min-width: 0;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8.2vw, 2.25rem);
    line-height: 1.12;
  }

  .hero__subtitle {
    font-size: var(--mobile-lead);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 0;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .feature-card {
    padding: 1.25rem 1.15rem;
  }

  .feature-card__title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .feature-card__desc {
    font-size: var(--mobile-body);
    line-height: 1.5;
  }

  .section--audience .service-card {
    padding: 1.35rem 1.25rem;
    min-height: 0;
  }

  .section--audience .services__grid--4 {
    gap: 1rem;
  }

  .section--audience .section__header {
    padding-inline: 0.15rem;
  }

  .section--audience .service-card__title {
    font-size: 0.95rem;
  }

  .section--audience .service-card__desc {
    font-size: var(--mobile-body);
    line-height: 1.5;
  }

  .service-card__title {
    font-size: 0.95rem;
  }

  .service-card__desc {
    font-size: var(--mobile-body);
    line-height: 1.5;
  }

  .video-block__intro {
    font-size: var(--mobile-lead);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .faq__item summary {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .faq__answer {
    font-size: var(--mobile-body);
    line-height: 1.55;
  }

  .logo img { height: 40px; }

  .trust-bar { margin-top: -20px; }

  .trust-bar__item { border-right: none !important; padding: 0.5rem 0; }
  .trust-bar__inner--3 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    font-size: 0.8125rem;
    padding-block: 1rem;
  }

  .trust-bar__inner--3 .trust-bar__item {
    justify-content: flex-start;
    text-align: left;
  }

  .services__grid { grid-template-columns: 1fr; }
  .segments__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .team-card { grid-column: span 1; }
  .product__stats { justify-content: center; }

  .product {
    min-width: 0;
    width: 100%;
  }

  .product__content,
  .product__visual {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .product__title,
  .product__desc,
  .product__features li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product__features li {
    min-width: 0;
    align-items: flex-start;
  }

  .product__actions {
    flex-direction: column;
    width: 100%;
  }

  .product__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product__visual {
    overflow: hidden;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }

  .product__visual-card {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .product__visual img {
    max-width: 100%;
    width: auto;
    height: auto;
  }

  .product__visual-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
  }

  .product__visual-badges span {
    font-size: 0.6rem;
    padding: 0.35rem 0.35rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .segment-card__icon-wrap,
  .segment-card__icon {
    width: 72px;
    height: 72px;
  }

  .segment-card__icon .icon {
    width: 36px;
    height: 36px;
  }

  .about__hub--marcos {
    padding-top: 0;
  }

  .about__visual-stack {
    max-width: min(380px, 92%);
  }

  .about__hub--marcos .about__portrait {
    width: min(380px, 92%);
    --portrait-anchor-y: calc(58% * 1.08);
  }

  .about__highlights--visual {
    margin-top: 0.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .about__highlights--visual .about__highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 1rem 0.65rem;
  }

  .about__highlights--visual .about__highlight .icon-wrap {
    margin-inline: auto;
  }

  .about__highlights--visual .about__highlight > div {
    width: 100%;
  }

  .about__highlights--visual .about__highlight h4 {
    font-size: var(--mobile-body);
    line-height: 1.35;
    margin-bottom: 0.15rem;
  }

  .about__highlights--visual .about__highlight p {
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  .about__highlights:not(.about__highlights--visual) {
    grid-template-columns: 1fr;
  }

  .about__grid,
  .product,
  .contact__grid,
  .leader,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .about__text {
    padding-inline: 0.15rem;
  }

  .about__text p {
    font-size: var(--mobile-lead);
    line-height: 1.55;
  }

  .about__visual {
    min-height: 360px;
    overflow: visible;
  }

  .about__portrait {
    width: min(380px, 92%);
    --portrait-anchor-y: calc(58% * 1.08);
  }

  .about__portrait img {
    transform: scale(1.08);
  }

  .about__security-hub {
    width: min(280px, 85%);
  }

  .ingresso-countdown__unit {
    min-width: 2.75rem;
  }

  .ingresso-countdown__value {
    font-size: 1.35rem;
    min-width: 2.25rem;
    padding: 0.3rem 0.35rem;
  }

  .timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-step { display: flex; gap: 1rem; text-align: left; align-items: flex-start; }
  .process-step__num { margin: 0; width: 44px; height: 44px; font-size: 0.875rem; flex-shrink: 0; }

  .bento { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .whatsapp-fab { width: 52px; height: 52px; }

  .fab-group {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .lead-modal__panel,
  .lead-modal__backdrop {
    transition: none !important;
    transform: none !important;
    clip-path: none !important;
  }
  .lead-modal.is-open .lead-modal__progress-wrap,
  .lead-modal.is-open .lead-modal__title--entry,
  .lead-modal.is-open .lead-modal__desc--entry,
  .lead-modal.is-open .lead-modal__form-fields,
  .lead-modal__panel--to-success .lead-modal__progress-wrap,
  .lead-modal__panel--to-success .lead-modal__title--entry,
  .lead-modal__panel--to-success .lead-modal__desc--entry,
  .lead-modal__panel--to-success .lead-modal__form-fields,
  .lead-modal__success.is-animated,
  .lead-modal__success.is-animated .lead-modal__success-icon {
    animation: none !important;
  }
  .hero__particles,
  .hero__stars { display: none; }
  .about__security-hub { animation: none; }
  .hero__portrait { animation: none; }
  .about__portrait { animation: none; }
  .about__security-hub-glow,
  .about__security-hub-ring,
  .about__portrait-ring--1,
  .about__portrait-ring--2 { animation: none; }
  .segment-card__icon,
  .segment-card__icon-glow { animation: none; }
  .hero__visual-float,
  .hero__panel,
  .hero__visual-glow,
  .hero__visual-neon-core,
  .hero__visual-neon-band { animation: none !important; }
  .hero__visual-glow { opacity: 0.85; }
  .hero__title .text-gradient--shine,
  .hero__title .text-gradient--shine::after { animation: none !important; }
}

/* Hero monitor — motion via JS (initHeroVisualMotion) */

.marquee__track {
  animation: marquee-scroll 28s linear infinite !important;
}

/* ============================================================
   Acelerador — Design System (modelo verde · padrão Agência)
   Tipografia: Poppins 300–800
   Gradiente UI: verde #1cc947 → #2ef562 (CTAs/títulos) · teal #085C74 só no neon do retrato
   Ornamentos: anéis + glow radial + grid sutil
   ============================================================ */

:root {
  --event-bar-h: 0px;
  --header-h-scroll: 68px;
  --neon-teal: 8, 92, 116;
  --neon-teal-deep: 5, 68, 84;
  --font-display: 'Poppins', system-ui, sans-serif;
  --radius-btn: 6px;
}

h1, h2, h3, h4, .hero__title, .section__title, .cta-premium__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-accent-magenta);
  margin-bottom: 1rem;
  opacity: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__clients {
  width: min(100%, 453px);
  margin: 0;
  opacity: 0.9;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
}

.hero__bg {
  background:
    var(--gradient-hero-glow),
    linear-gradient(165deg, #020914 0%, #091226 50%, #061018 100%);
}

.hero__stars { z-index: 2; }
.hero__particles { z-index: 2; }
.hero__grid { z-index: 3; }

.event-bar {
  display: none;
}

.header {
  top: 0;
  border-bottom-color: rgba(46, 245, 98, 0.12);
}

.header.scrolled {
  border-bottom-color: rgba(46, 245, 98, 0.28);
  box-shadow: 0 4px 30px rgba(28, 201, 71, 0.12);
}

html {
  scroll-padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: var(--header-h);
}

.hero {
  padding-top: var(--header-h);
  min-height: 90vh;
  justify-content: center;
  padding-bottom: 10px;
}

.hero__inner {
  padding-top: 0px;
}

.hero__particles {
  opacity: 0.28;
}

.hero__eyebrow-sep {
  color: var(--color-accent);
  -webkit-text-fill-color: var(--color-accent);
}

.hero__badge-warn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(46, 245, 98, 0.08);
  border: 1px solid rgba(46, 245, 98, 0.35);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
}

.hero__badge-warn strong {
  color: var(--color-accent);
  font-weight: 700;
}

.btn--ingresso {
  font-size: 18px;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
}

main .btn,
.sticky-cta .btn,
.cta-premium .btn,
.lead-modal .btn {
  font-size: 18px;
}

@keyframes ingresso-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ingresso-shine {
  0% { background-position: 130% 0; }
  35%, 100% { background-position: -50% 0; }
}

.text-green {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-liberty {
  display: inline-block;
  background: var(--gradient-brand);
  color: #000;
  -webkit-text-fill-color: #000;
  padding: 0.1rem 0.65rem;
  border-radius: 5px;
  font-weight: 700;
}

.video-block {
  max-width: 680px;
  margin-inline: auto;
}

.video-block__intro {
  text-align: center;
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  padding: 3px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(46, 245, 98, 0.42) 0%,
    rgba(8, 92, 116, 0.55) 48%,
    rgba(28, 201, 71, 0.32) 100%
  );
  box-shadow:
    0 0 0 1px rgba(46, 245, 98, 0.22),
    0 10px 36px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(46, 245, 98, 0.1);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-wrapper::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 11px;
  border: 1px solid rgba(46, 245, 98, 0.14);
  pointer-events: none;
  z-index: 3;
}

.video-wrapper.is-playing {
  box-shadow:
    0 0 0 1px rgba(46, 245, 98, 0.32),
    0 10px 36px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(46, 245, 98, 0.16);
}

.video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-overlay__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background var(--transition);
}

.video-overlay__play .icon {
  width: clamp(52px, 10vw, 88px);
  height: clamp(52px, 10vw, 88px);
  color: var(--color-accent);
  filter: drop-shadow(0 0 20px rgba(46, 245, 98, 0.45));
  transition: transform var(--transition);
}

.video-overlay:hover .video-overlay__play {
  background: rgba(0, 0, 0, 0.38);
}

.video-overlay:hover .video-overlay__play .icon {
  transform: scale(1.08);
}

.video-embed {
  position: absolute;
  inset: 0;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-block__outro {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about__hub--marcos .about__security-hub-core {
  background: var(--gradient-brand);
}

.about__hub--marcos {
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -87px;
}

.about__visual-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(560px, 105%);
  margin-inline: auto;
}

.about__hub--marcos .about__portrait {
  position: relative;
  z-index: 1;
  width: min(560px, 105%);
  margin-inline: auto 0;
  margin-bottom: 0;
  overflow: visible;
  --portrait-anchor-y: calc(58% * 1.14);
}

.about__hub--marcos .about__portrait img {
  position: relative;
  z-index: 1;
}

.about__highlights--visual {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: -1.25rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about__hub--marcos .neuron-canvas {
  top: -40px;
  height: calc(100% + 200px);
}

.about__portrait {
  position: relative;
  z-index: 2;
  width: min(560px, 105%);
  margin-inline: auto 0;
  overflow: visible;
  --portrait-anchor-y: calc(58% * 1.14);
}

.about__portrait-fx {
  position: absolute;
  top: var(--portrait-anchor-y);
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.about__portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.30);
  transform-origin: center top;
  margin-top: -151px;
  margin-bottom: -84px;
}

.about__portrait-glow {
  position: absolute;
  inset: -14%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(46, 245, 98, 0.32) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 30% 55%, rgba(28, 201, 71, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 72% 50%, rgba(8, 92, 116, 0.1) 0%, transparent 52%);
  filter: blur(20px);
  animation: portrait-glow 5s ease-in-out infinite;
  pointer-events: none;
}

.about__portrait-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.about__portrait-ring--1 {
  inset: -6%;
  border: 1px solid rgba(46, 245, 98, 0.42);
  box-shadow:
    0 0 24px rgba(46, 245, 98, 0.3),
    0 0 48px rgba(28, 201, 71, 0.12),
    inset 0 0 24px rgba(100, 255, 144, 0.1);
  animation: portrait-ring 30s linear infinite;
}

.about__portrait-ring--2 {
  inset: -12%;
  border: 1px solid rgba(8, 92, 116, 0.24);
  box-shadow:
    0 0 32px rgba(8, 92, 116, 0.12),
    0 0 56px rgba(8, 92, 116, 0.06);
  animation: portrait-ring 45s linear infinite reverse;
}

.about__hub-badges li {
  background: rgba(46, 245, 98, 0.12);
  border-color: rgba(46, 245, 98, 0.35);
  color: var(--color-accent);
}

.cta-premium::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.cta-premium > * {
  position: relative;
  z-index: 1;
}

.cta-premium__price {
  display: block;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin: 0.5rem 0 1.25rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer--event {
  background: var(--color-accent);
  color: #000;
  border-top: none;
}

.footer--event .footer__brand p,
.footer--event .footer__col a,
.footer--event .footer__bottom span {
  color: rgba(0, 0, 0, 0.75);
}

.footer--event .footer__col h4,
.footer--event .footer__col a:hover {
  color: #000;
}

.footer--event .footer__brand img {
  filter: none;
  max-width: none;
}

@media (max-width: 768px) {
  :root {
    --event-bar-h: 0px;
    --header-h-scroll: 60px;
  }
}

/* ── eventos.html extras ── */

.hero__microcopy {
  font-size: 0.8125rem;
  color: #C8D0DC;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

.trust-bar__inner--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.trust-bar__inner--5 .trust-bar__item {
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  color: #E2E8F0;
  padding: 0.85rem 0.5rem;
}

.trust-bar__inner--5 .trust-bar__item strong {
  color: #FFFFFF;
}

.services__grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .services__grid--4 {
    grid-template-columns: 1fr;
  }

  .section--audience .icon-wrap--topic,
  #recursos .icon-wrap--topic {
    width: 92px;
    height: 92px;
    border-width: 2.5px;
  }

  .section--audience .icon-wrap--topic .icon,
  #recursos .icon-wrap--topic .icon {
    width: 44px;
    height: 44px;
  }

  .section--audience .service-card__icon,
  #recursos .feature-card__icon {
    margin-bottom: 1.45rem;
  }
}

@media (min-width: 1024px) {
  .services__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nao-e__list {
  list-style: none;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nao-e__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  color: #C8D0DC;
  line-height: 1.65;
}

.nao-e__item .icon {
  width: 22px;
  height: 22px;
  color: #F87171;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.nao-e__item strong {
  color: #FFFFFF;
}

#nao-e-title em {
  font-style: normal;
  color: #F87171;
}

.local__grid {
  align-items: center;
}

.local__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.local__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.local__checklist .icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.local__map-wrap {
  min-width: 0;
  width: 100%;
}

.local__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(46, 245, 98, 0.22);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-neon-purple);
}

.garantia-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
  padding: 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(46, 245, 98, 0.22);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-neon-purple);
}

.garantia-card__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
}

.garantia-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.garantia-card__desc strong {
  color: #FFFFFF;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9980;
  background: rgba(9, 13, 20, 0.96);
  border-top: 1px solid rgba(46, 245, 98, 0.25);
  padding: 0.75rem 0;
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(12px);
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.sticky-cta__text strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.sticky-cta__text span {
  font-size: 0.75rem;
  color: #C8D0DC;
}

.page-eventos .fab-group {
  bottom: 24px;
}

@media (max-width: 1024px) {
  .trust-bar__inner--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-bar__inner--5 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    font-size: 0.8125rem;
    padding-block: 1rem;
  }

  .trust-bar__inner--5 .trust-bar__item {
    justify-content: flex-start;
    text-align: left;
    padding: 0.5rem 0;
  }

  .garantia-card {
    flex-direction: column;
    padding: 1.5rem;
  }

  .page-eventos .fab-group {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta {
    display: block;
  }

  body.page-eventos {
    padding-bottom: 72px;
  }
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

/* ── AutoEnvia SaaS landing ── */

.logo--autoenvia {
  text-decoration: none;
}

.logo--autoenvia .logo__text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo--footer .logo__text {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.logo--footer img {
  display: block;
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: none;
}

.section--vsl {
  padding-top: 2rem;
}

.section--ia {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(28, 201, 71, 0.09) 0%, transparent 62%),
    var(--color-bg);
  border-bottom: 1px solid rgba(28, 201, 71, 0.08);
}

.section--termometro {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 100% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0a0608 0%, #091018 48%, #020914 100%);
  border-block: 1px solid rgba(251, 191, 36, 0.08);
}

.section--conversas {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 70% 60% at 100% 40%, rgba(56, 189, 248, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 0% 90%, rgba(99, 102, 241, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #020914 0%, #08101f 52%, #060d18 100%);
  border-bottom: 1px solid rgba(56, 189, 248, 0.08);
}

.section--equipe {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 68% 58% at 0% 42%, rgba(167, 139, 250, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 52% 48% at 100% 88%, rgba(99, 102, 241, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #060d18 0%, #0c0a18 48%, #020914 100%);
  border-block: 1px solid rgba(167, 139, 250, 0.1);
}

.ia-showcase__neon--shield .ia-showcase__neon-glow {
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(167, 139, 250, 0.36) 0%, rgba(99, 102, 241, 0.26) 40%, rgba(129, 140, 248, 0.14) 62%, transparent 78%);
}

.ia-showcase__neon--shield .ia-showcase__neon-core {
  background: radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.34) 0%, rgba(167, 139, 250, 0.14) 45%, transparent 72%);
}

.ia-showcase__neon--shield .ia-showcase__neon-band--1 {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(167, 139, 250, 0.28) 28%,
    rgba(99, 102, 241, 0.3) 50%,
    rgba(196, 181, 253, 0.16) 72%,
    transparent 100%
  );
}

.ia-showcase__neon--shield .ia-showcase__neon-band--2 {
  background: linear-gradient(
    -75deg,
    transparent 0%,
    rgba(99, 102, 241, 0.2) 35%,
    rgba(167, 139, 250, 0.22) 55%,
    transparent 100%
  );
}

.section--equipe .ia-showcase__frame {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.32) 0%,
    rgba(99, 102, 241, 0.28) 42%,
    rgba(129, 140, 248, 0.26) 100%
  );
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.22),
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(99, 102, 241, 0.12);
}

.section--equipe .ia-showcase__img {
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 48px rgba(167, 139, 250, 0.1));
}

.section--equipe .feature-split__shot-tag {
  border-color: rgba(167, 139, 250, 0.32);
}

.section--equipe .feature-split__shot .ia-showcase__img {
  width: 100%;
  height: auto;
}

.section--equipe .feature-split__item {
  border-color: rgba(167, 139, 250, 0.14);
}

.section--equipe .feature-split__item:hover {
  border-color: rgba(99, 102, 241, 0.32);
}

.section--equipe .feature-split__icon.icon-wrap--topic {
  border-color: rgba(167, 139, 250, 0.38);
  color: #c4b5fd;
}

.section--equipe .feature-flow__next a:hover {
  color: #c4b5fd;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.feature-split--media-right {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.feature-split__media .ia-showcase__visual {
  max-width: 100%;
  margin-inline: 0;
}

.feature-split__media--stack .feature-split__visual-stack {
  width: 100%;
}

.feature-split__shots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  width: 100%;
}

.feature-split__shot {
  position: relative;
  margin: 0;
}

.feature-split__shot-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e2e8f0;
  background: rgba(2, 9, 20, 0.72);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.section--conversas .feature-split__shot .ia-showcase__img {
  width: 100%;
  height: auto;
}

.feature-split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.feature-split__content .eyebrow {
  margin-bottom: 0.85rem;
}

.feature-split__desc {
  margin-bottom: 1.35rem;
}

.feature-split__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-split__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), background var(--transition);
}

.feature-split__item:hover {
  background: rgba(255, 255, 255, 0.045);
}

.section--termometro .feature-split__item {
  border-color: rgba(251, 191, 36, 0.12);
}

.section--termometro .feature-split__item:hover {
  border-color: rgba(239, 68, 68, 0.28);
}

.section--conversas .feature-split__item {
  border-color: rgba(56, 189, 248, 0.12);
}

.section--conversas .feature-split__item:hover {
  border-color: rgba(99, 102, 241, 0.28);
}

.feature-split__icon.icon-wrap--topic {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.feature-split__icon.icon-wrap--topic .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.section--termometro .feature-split__icon.icon-wrap--topic {
  border-color: rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

.section--conversas .feature-split__icon.icon-wrap--topic {
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

.feature-split__item-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 0.2rem;
}

.feature-split__item-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}

.feature-split__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-flow__next {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.feature-flow__next a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.feature-flow__next a:hover {
  color: var(--color-accent);
}

.section--termometro .feature-flow__next a:hover {
  color: #fbbf24;
}

.section--conversas .feature-flow__next a:hover {
  color: #38bdf8;
}

.section--ia .feature-flow__next a:hover {
  color: var(--color-accent);
}

.section--vsl .video-block__cta .feature-flow__next {
  margin-top: 0.85rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 960px) {
  .feature-split,
  .feature-split--media-right {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .feature-split__media {
    order: 1;
  }

  .feature-split__content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .feature-split,
  .feature-split--media-right {
    gap: 1.25rem;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-split > * {
    min-width: 0;
    max-width: 100%;
  }

  .feature-split__media {
    overflow: hidden;
    width: 100%;
  }

  .feature-split__visual-stack,
  .feature-split__shots,
  .feature-split__shot,
  .feature-split__shot picture {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .feature-split__media .ia-showcase__visual,
  #termometro .ia-showcase__visual,
  #gestao-equipe .ia-showcase__visual,
  #conversas .ia-showcase__visual {
    max-width: 100%;
    width: 100%;
    margin-inline: 0;
  }

  .feature-split__media .ia-showcase__neon,
  #termometro .ia-showcase__neon,
  #gestao-equipe .ia-showcase__neon,
  #conversas .ia-showcase__neon {
    inset: 0;
    overflow: hidden;
  }

  .feature-split__media .ia-showcase__neon-glow,
  .feature-split__media .ia-showcase__neon-band {
    width: 92%;
    height: 80%;
  }

  .ia-showcase__frame {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section--termometro .ia-showcase__img,
  .section--conversas .feature-split__shot .ia-showcase__img,
  .section--equipe .feature-split__shot .ia-showcase__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.42));
  }

  .feature-split__content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    align-items: stretch;
  }

  .feature-split__content .section__title,
  .feature-split__content .section__desc,
  .feature-split__desc {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .feature-split__list,
  .feature-split__item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-split__item-desc {
    overflow-wrap: break-word;
  }

  .feature-split__cta {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  .feature-split__cta .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  #vsl .ia-showcase {
    gap: 0.85rem;
  }

  #vsl .ia-showcase__visual {
    max-width: 100%;
    width: 100%;
  }
}

.ia-showcase__neon--warm .ia-showcase__neon-glow {
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(239, 68, 68, 0.38) 0%, rgba(251, 191, 36, 0.22) 35%, rgba(28, 201, 71, 0.18) 58%, transparent 78%);
}

.ia-showcase__neon--warm .ia-showcase__neon-core {
  background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.38) 0%, rgba(239, 68, 68, 0.14) 45%, transparent 72%);
}

.ia-showcase__neon--warm .ia-showcase__neon-band--1 {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(239, 68, 68, 0.28) 28%,
    rgba(251, 191, 36, 0.32) 50%,
    rgba(46, 245, 98, 0.16) 72%,
    transparent 100%
  );
}

.ia-showcase__neon--warm .ia-showcase__neon-band--2 {
  background: linear-gradient(
    -75deg,
    transparent 0%,
    rgba(251, 191, 36, 0.2) 35%,
    rgba(239, 68, 68, 0.22) 55%,
    transparent 100%
  );
}

.section--termometro .ia-showcase__frame {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.35) 0%,
    rgba(251, 191, 36, 0.28) 42%,
    rgba(28, 201, 71, 0.32) 100%
  );
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.22),
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(239, 68, 68, 0.12);
}

.section--termometro .ia-showcase__img {
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 48px rgba(251, 191, 36, 0.12));
}

.ia-showcase__neon--chat .ia-showcase__neon-glow {
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(56, 189, 248, 0.36) 0%, rgba(99, 102, 241, 0.24) 38%, rgba(28, 201, 71, 0.16) 58%, transparent 78%);
}

.ia-showcase__neon--chat .ia-showcase__neon-core {
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.34) 0%, rgba(56, 189, 248, 0.14) 45%, transparent 72%);
}

.ia-showcase__neon--chat .ia-showcase__neon-band--1 {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(56, 189, 248, 0.28) 28%,
    rgba(99, 102, 241, 0.3) 50%,
    rgba(46, 245, 98, 0.14) 72%,
    transparent 100%
  );
}

.ia-showcase__neon--chat .ia-showcase__neon-band--2 {
  background: linear-gradient(
    -75deg,
    transparent 0%,
    rgba(99, 102, 241, 0.2) 35%,
    rgba(56, 189, 248, 0.22) 55%,
    transparent 100%
  );
}

.section--conversas .ia-showcase__frame {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.32) 0%,
    rgba(99, 102, 241, 0.28) 42%,
    rgba(28, 201, 71, 0.3) 100%
  );
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(99, 102, 241, 0.12);
}

.section--conversas .ia-showcase__img {
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 48px rgba(56, 189, 248, 0.1));
}

.section--temas {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.section--temas .section__header {
  margin-bottom: 1.1rem;
}

.section--temas .theme-showcase {
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.ia-showcase__neon--palette .ia-showcase__neon-glow {
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(167, 139, 250, 0.34) 0%, rgba(244, 114, 182, 0.22) 32%, rgba(56, 189, 248, 0.2) 55%, rgba(46, 245, 98, 0.14) 72%, transparent 82%);
}

.ia-showcase__neon--palette .ia-showcase__neon-core {
  background: radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.32) 0%, rgba(167, 139, 250, 0.16) 48%, transparent 72%);
}

.ia-showcase__neon--palette .ia-showcase__neon-band--1 {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(167, 139, 250, 0.26) 22%,
    rgba(244, 114, 182, 0.28) 42%,
    rgba(56, 189, 248, 0.24) 62%,
    rgba(46, 245, 98, 0.14) 78%,
    transparent 100%
  );
}

.ia-showcase__neon--palette .ia-showcase__neon-band--2 {
  background: linear-gradient(
    -75deg,
    transparent 0%,
    rgba(56, 189, 248, 0.2) 30%,
    rgba(244, 114, 182, 0.22) 52%,
    transparent 100%
  );
}

.section--temas .theme-showcase__frame {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.3) 0%,
    rgba(244, 114, 182, 0.26) 38%,
    rgba(56, 189, 248, 0.24) 68%,
    rgba(28, 201, 71, 0.28) 100%
  );
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.2),
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(244, 114, 182, 0.1);
}

.theme-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 1140px;
  margin-inline: auto;
}

.theme-showcase__img {
  transition: opacity 0.22s ease;
}

.theme-showcase__img.is-fading {
  opacity: 0.35;
}

/* Zoom nos prints dos passos */
#vsl .ia-showcase__frame,
#termometro .ia-showcase__frame,
#conversas .feature-split__shot,
#gestao-equipe .feature-split__shot {
  cursor: zoom-in;
}

#vsl .ia-showcase__frame:focus-visible,
#termometro .ia-showcase__frame:focus-visible,
#conversas .feature-split__shot:focus-visible,
#gestao-equipe .feature-split__shot:focus-visible {
  outline: 2px solid rgba(46, 245, 98, 0.75);
  outline-offset: 3px;
}

.showcase-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  visibility: hidden;
  pointer-events: none;
}

.showcase-lightbox.is-open {
  visibility: visible;
  pointer-events: auto;
}

.showcase-lightbox[hidden] {
  display: none;
}

.showcase-lightbox.is-open[hidden] {
  display: flex;
}

.showcase-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 20, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.showcase-lightbox.is-open .showcase-lightbox__backdrop {
  opacity: 1;
}

.showcase-lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1280px);
  max-height: 92vh;
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.showcase-lightbox.is-open .showcase-lightbox__stage {
  transform: scale(1);
  opacity: 1;
}

.showcase-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius-md);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.65);
}

.showcase-lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(9, 18, 38, 0.92);
  color: #e2e8f0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.showcase-lightbox__close:hover {
  color: #ffffff;
  border-color: rgba(46, 245, 98, 0.45);
  background: rgba(12, 24, 41, 0.98);
}

.showcase-lightbox__close .icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* Theme book — virar página */
.theme-showcase__frame--book {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.theme-book {
  position: relative;
  width: 100%;
  perspective: 2000px;
  perspective-origin: 50% 42%;
}

.theme-book__flipper {
  position: relative;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 0.82s cubic-bezier(0.42, 0.08, 0.12, 1);
  will-change: transform;
}

.theme-book__flipper.is-turning-next {
  transform: rotateY(-168deg);
}

.theme-book__flipper.is-turning-prev {
  transform-origin: right center;
  transform: rotateY(168deg);
}

.theme-book__flipper.is-animating::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 28%,
    transparent 52%
  );
  pointer-events: none;
  animation: theme-page-shadow 0.82s cubic-bezier(0.42, 0.08, 0.12, 1) forwards;
}

.theme-book__flipper.is-turning-prev.is-animating::after {
  background: linear-gradient(
    -105deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 28%,
    transparent 52%
  );
}

@keyframes theme-page-shadow {
  0% { opacity: 0; }
  35% { opacity: 1; }
  100% { opacity: 0; }
}

.theme-book__side {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.3) 0%,
    rgba(244, 114, 182, 0.26) 38%,
    rgba(56, 189, 248, 0.24) 68%,
    rgba(28, 201, 71, 0.28) 100%
  );
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.2),
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(244, 114, 182, 0.1);
}

.theme-book__side--b {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}

.theme-book__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 2px);
}

.theme-showcase.is-busy .theme-showcase__btn {
  pointer-events: none;
  opacity: 0.72;
}

@media (prefers-reduced-motion: reduce) {
  .theme-book__flipper {
    transition-duration: 0.01ms;
  }

  .theme-book__flipper.is-animating::after {
    animation: none;
    opacity: 0;
  }

  .showcase-lightbox__stage {
    transition-duration: 0.01ms;
  }
}

.theme-showcase__picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: min(920px, 100%);
  margin-inline: auto;
  margin-bottom: 0.15rem;
}

.theme-showcase__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.theme-showcase__btn:hover {
  color: #ffffff;
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.12);
}

.theme-showcase__btn:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.85);
  outline-offset: 2px;
}

.theme-showcase__btn.is-active {
  color: #0b1220;
  border-color: transparent;
  background: linear-gradient(135deg, #c4b5fd 0%, #f9a8d4 45%, #7dd3fc 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 8px 22px rgba(167, 139, 250, 0.28);
}

.section--temas .video-block__cta {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (max-width: 640px) {
  .theme-showcase__picker {
    gap: 0.4rem;
  }

  .theme-showcase__btn {
    font-size: 0.75rem;
    padding: 0.48rem 0.78rem;
  }
}

.section--vsl .video-block {
  max-width: 880px;
  margin-inline: auto;
}

.video-overlay--vsl {
  background: linear-gradient(145deg, rgba(9, 18, 38, 0.95), rgba(2, 9, 20, 0.98));
  border: 1px solid rgba(46, 245, 98, 0.2);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.video-overlay__placeholder-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-accent);
  opacity: 0.6;
}

.video-block__cta {
  text-align: center;
  margin-top: 1.25rem;
}

/* IA & Facilidade showcase */
.ia-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  max-width: 1140px;
  margin-inline: auto;
}

.ia-showcase__visual {
  position: relative;
  width: 100%;
  max-width: min(1080px, 96vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.ia-showcase__neon {
  position: absolute;
  inset: -4% -2%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.ia-showcase__neon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82%;
  height: 88%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(46, 245, 98, 0.55) 0%, rgba(28, 201, 71, 0.28) 38%, transparent 78%);
  filter: blur(64px);
  animation: ia-neon-pulse 5.5s ease-in-out infinite;
}

.ia-showcase__neon-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  height: 52%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(46, 245, 98, 0.45) 0%, rgba(28, 201, 71, 0.16) 45%, transparent 72%);
  filter: blur(36px);
  animation: ia-neon-pulse 4.2s ease-in-out infinite reverse;
}

.ia-showcase__neon-band {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.ia-showcase__neon-band--1 {
  width: 115%;
  height: 42%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(46, 245, 98, 0.32) 30%,
    rgba(28, 201, 71, 0.4) 50%,
    rgba(8, 92, 116, 0.18) 72%,
    transparent 100%
  );
  animation: ia-neon-drift-1 9s ease-in-out infinite;
}

.ia-showcase__neon-band--2 {
  width: 88%;
  height: 34%;
  background: linear-gradient(
    -75deg,
    transparent 0%,
    rgba(8, 92, 116, 0.22) 35%,
    rgba(46, 245, 98, 0.28) 55%,
    transparent 100%
  );
  animation: ia-neon-drift-2 11s ease-in-out infinite;
}

.ia-showcase__neon-band--3 {
  width: 70%;
  height: 70%;
  border: 1px solid rgba(46, 245, 98, 0.12);
  background: transparent;
  filter: blur(0);
  animation: ia-neon-rotate 22s linear infinite;
}

@keyframes ia-neon-pulse {
  0%, 100% { opacity: 0.62; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes ia-neon-drift-1 {
  0%, 100% { transform: translate(-50%, -50%) rotate(-10deg) translateY(0); opacity: 0.45; }
  50% { transform: translate(-50%, -50%) rotate(8deg) translateY(-20px); opacity: 0.75; }
}

@keyframes ia-neon-drift-2 {
  0%, 100% { transform: translate(-50%, -50%) rotate(6deg) translateX(0); opacity: 0.35; }
  50% { transform: translate(-50%, -50%) rotate(-12deg) translateX(18px); opacity: 0.6; }
}

@keyframes ia-neon-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ia-showcase__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(46, 245, 98, 0.48) 0%,
    rgba(8, 92, 116, 0.55) 48%,
    rgba(28, 201, 71, 0.34) 100%
  );
  box-shadow:
    0 0 0 1px rgba(46, 245, 98, 0.28),
    0 22px 52px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(46, 245, 98, 0.16);
  overflow: hidden;
}

.ia-showcase__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 48px rgba(46, 245, 98, 0.18));
}

.ia-showcase__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: stretch;
}

.ia-showcase__step {
  position: relative;
  aspect-ratio: 2 / 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.65rem 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-accent);
  background: rgba(9, 13, 20, 0.55);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.24);
  text-align: left;
  overflow: hidden;
}

.ia-showcase__step-num {
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(46, 245, 98, 0.35);
  font-variant-numeric: tabular-nums;
}

.ia-showcase__step-icon {
  flex-shrink: 0;
}

.ia-showcase .ia-showcase__step-icon.icon-wrap--topic {
  width: 46px;
  height: 46px;
}

.ia-showcase .ia-showcase__step-icon.icon-wrap--topic .icon {
  width: 22px;
  height: 22px;
}

.ia-showcase__step-copy {
  min-width: 0;
}

.ia-showcase__step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.ia-showcase__step-desc {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  margin: 0;
}

.section--vsl .video-block__cta {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.section--termometro .feature-split__cta .btn,
.section--conversas .feature-split__cta .btn,
.section--equipe .feature-split__cta .btn {
  width: auto;
}

@media (max-width: 640px) {
  .feature-split__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .ia-showcase__step {
    aspect-ratio: auto;
    min-height: 88px;
  }
}

@media (max-width: 640px) {
  .ia-showcase__steps {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .ia-showcase__step {
    aspect-ratio: 2.2 / 1;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ia-showcase__neon-glow,
  .ia-showcase__neon-core,
  .ia-showcase__neon-band {
    animation: none !important;
  }
}

.trust-bar__inner--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar__inner--4 .trust-bar__item {
  justify-content: center;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: rgba(9, 18, 38, 0.6);
  border: 1px solid rgba(46, 245, 98, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(46, 245, 98, 0.35);
  transform: translateY(-2px);
}

.feature-card__icon {
  margin-bottom: 0.85rem;
}

.feature-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.45rem;
}

.feature-card__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.comparativo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.comparativo__col {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparativo__col--before {
  background: rgba(9, 13, 20, 0.5);
}

.comparativo__col--after {
  background: rgba(46, 245, 98, 0.06);
  border-color: rgba(46, 245, 98, 0.25);
}

.comparativo__heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #fff;
}

.comparativo__col--after .comparativo__heading {
  color: var(--color-accent);
}

.comparativo__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comparativo__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.comparativo__col--before .comparativo__list .icon {
  color: rgba(255, 100, 100, 0.7);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.comparativo__col--after .comparativo__list .icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.hero__mockup-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(46, 245, 98, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__mockup-frame {
  position: relative;
  background: rgba(9, 18, 38, 0.85);
  border: 1px solid rgba(46, 245, 98, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.hero__mockup-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.hero__mockup-bar span:first-child {
  background: rgba(255, 95, 95, 0.6);
}

.hero__mockup-bar span:nth-child(2) {
  background: rgba(255, 200, 80, 0.6);
}

.hero__mockup-bar span:nth-child(3) {
  background: rgba(46, 245, 98, 0.6);
}

.hero__mockup-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__mockup-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__mockup-stat--accent {
  border-color: rgba(46, 245, 98, 0.3);
  background: rgba(46, 245, 98, 0.08);
}

.hero__mockup-stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.hero__mockup-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.ingresso-lote--recommended {
  z-index: 2;
}

.planos__footnote {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  margin-top: 1.5rem;
}

/* ── Planos — fundo claro ── */

.section--planos {
  --planos-bg: #f3f7f5;
  --planos-bg-card: #ffffff;
  --planos-text: #0c1829;
  --planos-text-muted: #3d4a5c;
  --planos-text-subtle: #64748b;
  --planos-border: rgba(12, 24, 41, 0.1);
  --planos-border-accent: rgba(28, 201, 71, 0.45);

  background: linear-gradient(180deg, #f8fbf9 0%, #eef4f0 50%, #e3eae6 100%);
  padding-bottom: 0;
}

.section--planos::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(28, 201, 71, 0.07) 0%, transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(8, 92, 116, 0.05) 0%, transparent 38%);
}

.section--planos .section__header .eyebrow {
  color: var(--color-accent-deep);
}

.section--planos .section__title {
  background: none;
  -webkit-text-fill-color: var(--planos-text);
  color: var(--planos-text);
}

.section--planos .section__desc {
  color: var(--planos-text-muted);
}

.section--planos .ingresso-lote {
  background: var(--planos-bg-card);
  border-color: var(--planos-border);
  box-shadow: 0 4px 24px rgba(12, 24, 41, 0.06);
}

.section--planos .ingresso-lote--active {
  background: var(--planos-bg-card);
  border-color: var(--planos-border-accent);
  box-shadow:
    0 8px 40px rgba(28, 201, 71, 0.14),
    0 4px 20px rgba(12, 24, 41, 0.07);
}

.section--planos .ingresso-lote--active::before {
  opacity: 0.75;
}

.section--planos .ingresso-lote--active::after {
  background: linear-gradient(90deg, transparent, rgba(28, 201, 71, 0.35), transparent);
}

.section--planos .ingresso-lote__name {
  color: var(--planos-text);
}

.section--planos .ingresso-lote__label,
.section--planos .ingresso-lote__installments,
.section--planos .ingresso-lote__diff {
  color: var(--planos-text-subtle);
}

.section--planos .ingresso-lote__diff strong {
  color: #0f7a30;
  font-weight: 700;
}

.section--planos .ingresso-lote__currency {
  color: var(--color-accent-deep);
}

.section--planos .ingresso-lote--active .ingresso-lote__currency {
  color: #0f7a30;
}

.section--planos .ingresso-lote__amount {
  background: linear-gradient(135deg, #0f7a30 0%, #1cc947 55%, #15993a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--planos .ingresso-lote--active .ingresso-lote__amount {
  filter: none;
}

.section--planos .ingresso-lote__badge--live {
  background: rgba(28, 201, 71, 0.12);
  border-color: rgba(28, 201, 71, 0.35);
  color: #0f7a30;
  box-shadow: none;
}

.section--planos .ingresso-lote__badge--soon {
  background: rgba(28, 201, 71, 0.08);
  border-color: rgba(28, 201, 71, 0.2);
  color: var(--planos-text-muted);
}

.section--planos .ingresso-lote__perks li {
  color: var(--planos-text-muted);
  border-bottom-color: rgba(12, 24, 41, 0.06);
}

.section--planos .ingresso-lote__perks .icon {
  color: var(--color-accent-deep);
}

.section--planos .ingresso-lote__perks strong {
  color: var(--planos-text);
  font-weight: 700;
}

.section--planos .ingresso-lote__secure {
  color: var(--planos-text-subtle);
}

.section--planos .ingresso-lote__secure .icon {
  color: var(--color-teal);
}

/* Faixa complementar — garantias abaixo dos planos */
.planos-assurance {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
  padding-block: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, #e3eae6 0%, #d9e2dd 100%);
  border-top: 1px solid rgba(12, 24, 41, 0.07);
}

.planos-assurance__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planos-assurance__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.planos-assurance__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem clamp(1rem, 2.5vw, 2rem);
  text-align: left;
}

.planos-assurance__item:not(:last-child) {
  border-right: 1px solid rgba(12, 24, 41, 0.08);
}

.planos-assurance__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #0f7a30;
  box-shadow:
    0 1px 2px rgba(12, 24, 41, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.planos-assurance__icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.planos-assurance__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.planos-assurance__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0c1829;
  line-height: 1.25;
}

.planos-assurance__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #5f6b7c;
}

/* Card PRO — destaque premium */
.section--planos .ingresso-lote--pro {
  border-color: rgba(12, 24, 41, 0.18);
  box-shadow: 0 6px 32px rgba(12, 24, 41, 0.1);
}

.section--planos .ingresso-lote__badge--pro {
  background: linear-gradient(135deg, #0c1829 0%, #1a3a2e 100%);
  border: 1px solid rgba(28, 201, 71, 0.35);
  color: #fff;
  box-shadow: 0 4px 16px rgba(12, 24, 41, 0.15);
}

.section--planos .ingresso-lote--pro .ingresso-lote__amount {
  background: linear-gradient(135deg, #0c1829 0%, #0f7a30 45%, #1cc947 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar__inner--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparativo {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparativo__col {
    padding: 1.35rem 1.25rem;
  }

  .comparativo__heading {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .comparativo__list {
    gap: 0.65rem;
  }

  .comparativo__list li {
    font-size: var(--mobile-body);
    line-height: 1.45;
  }

  .trust-bar__inner--4 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .trust-bar__inner--4 .trust-bar__item {
    justify-content: flex-start;
    text-align: left;
  }

  .planos-assurance__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .planos-assurance__item {
    justify-content: flex-start;
    padding: 0;
  }

  .planos-assurance__item:not(:last-child) {
    border-right: none;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(12, 24, 41, 0.08);
  }
}

/* iOS/mobile — evita crash do renderer ao rolar com backdrop-filter + canvas */
@media (max-width: 768px), (pointer: coarse) {
  .header.scrolled,
  .sticky-cta,
  .nav__list {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #particles-canvas,
  #stars-canvas,
  #neuron-canvas {
    display: none !important;
  }
  #inicio .hero__title, #vsl .section__title {
    letter-spacing: -1px !important;
    font-size: 25px !important;
  }
  .about__portrait img {
    margin-top: 12px !important;
  }
  .footer--minimal .logo--footer {
    max-width: 250px !important;
  }
  #inicio .hero__eyebrow {
    font-weight: 500 !important;
  }
}
