:root {
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --fg: #f5f5f5;
  --gray-soft: #c6c6c6;
  --gray-mute: #8a8a8f;
  --gray-dim: #5c5c61;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-2: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-2: rgba(255, 255, 255, 0.16);
  --orange: #ff6a00;
  --purple: #8a3cff;
  --blue: #2e8bff;
  --red: #ff2d2d;
  --blur: blur(22px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --maxw: 1180px;
  --pad: clamp(22px, 6vw, 92px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Rubik, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

main {
  overflow-x: clip;
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(46, 139, 255, .08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 106, 0, .12), transparent 32%),
    linear-gradient(180deg, #080809 0%, #0b0b0d 45%, #070708 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(255, 106, 0, .32);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  z-index: 1000;
  background: linear-gradient(90deg, var(--orange), var(--purple));
}

/* Navegador novo, mantido */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 11, .68);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.brand img {
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  position: relative;
  isolation: isolate;
  transition: padding .26s var(--ease), border-radius .26s var(--ease), background .25s ease;
}

.nav::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px var(--glass-border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.nav.has-subnav::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 0;
  width: 222px;
  height: 78px;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow:
    inset 0 0 0 1px var(--glass-border),
    0 18px 34px rgba(0, 0, 0, .22);
  clip-path: path("M 82 0 H 196 C 210 0 222 12 222 26 V 50 C 222 66 210 78 194 78 H 28 C 12 78 0 66 0 50 V 32 C 0 16 12 4 28 4 H 54 C 67 4 72 0 82 0 Z");
  pointer-events: none;
}

@media (min-width: 761px) {
  .nav.has-subnav {
    align-self: center;
    margin-top: 0;
  }
}

.nav a {
  position: relative;
  z-index: 2;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--gray-soft);
  font-size: 13px;
  font-weight: 600;
  transition: color .25s ease, background .25s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.nav .nav-action {
  color: #111;
  background: #fff;
}

.nav-dropdown {
  position: relative;
  z-index: 3;
}

.nav-dropdown-trigger {
  position: relative;
  z-index: 4;
  min-height: 39px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: transparent;
  color: var(--gray-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .25s ease, color .25s ease, border-radius 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav .nav-dropdown-trigger.nav-action {
  color: var(--gray-soft);
  background: transparent;
}

.nav-dropdown-trigger:focus,
.nav-dropdown-trigger:focus-visible {
  outline: none;
  box-shadow: none;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  opacity: .72;
  transition: transform .25s var(--ease), opacity .25s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 999px;
}

.nav-dropdown.open .nav-dropdown-trigger {
  background: rgba(255, 255, 255, .07);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.open .nav-dropdown-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 4;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 11, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 999px;
  transition: 
    opacity 0.3s ease, 
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.3s ease;
  width: max-content;
  white-space: nowrap;
}

/* Connective Pointer Triangle */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(10, 10, 11, 0.85);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: -1;
}

/* Hover Bridge Area */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
  z-index: -2;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--gray-soft);
  background: transparent;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

/* Login global (Teko Accounts) — agrupa navegação + conta à direita */
.site-header .nav {
  margin-left: auto;
}

.auth-widget {
  position: relative;
  margin-left: 14px;
  display: flex;
  align-items: center;
  min-height: 40px;
}

.auth-widget[data-state="loading"] {
  width: 0;
  margin-left: 0;
  overflow: hidden;
}

.auth-enter {
  height: 40px;
  padding: 0 20px;
  border: 1px solid var(--glass-border-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.auth-enter:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--glass-border-2);
  transform: translateY(-1px);
}

.auth-enter.auth-pending {
  color: var(--gray-mute);
  cursor: default;
}

.auth-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 4px 14px 4px 4px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.auth-chip:hover {
  border-color: var(--glass-border-2);
  background: rgba(255, 255, 255, .08);
}

.auth-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.auth-avatar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, .16);
  border: 1px solid rgba(255, 106, 0, .34);
  color: var(--orange);
  font-family: Teko, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.auth-name {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

.auth-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: rgba(14, 14, 16, .92);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--ease);
  z-index: 120;
}

.auth-widget.open .auth-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.auth-menu-email {
  padding: 8px 12px 10px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--gray-mute);
  font-size: 12px;
  word-break: break-all;
}

.auth-menu-link {
  display: block;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease;
}

.auth-menu-link:hover {
  background: rgba(255, 255, 255, .08);
}

.auth-logout {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}

.auth-logout:hover {
  background: rgba(255, 45, 45, .14);
  color: #ff6b6b;
}

@media (max-width: 760px) {
  /* nav vira overlay fixo no mobile; a conta é empurrada à direita, antes do menu */
  .auth-widget {
    margin-left: auto;
    margin-right: 8px;
  }
  .auth-name {
    display: none;
  }
  .auth-chip {
    padding: 4px;
  }
  .auth-enter {
    padding: 0 14px;
    font-size: 12px;
  }
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease);
}

.nav-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gray-mute);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}

.accent {
  color: var(--orange);
}

.section-title {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 600;
  line-height: .98;
}

.section-lead {
  max-width: 580px;
  margin-top: 22px;
  color: var(--gray-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 300;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform .35s var(--ease), background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: #fff;
  color: #090909;
}

.button-dark {
  background: rgba(255, 255, 255, .045);
  border-color: var(--glass-border-2);
  color: #fff;
}

.nav a.is-current {
  color: #fff;
}

/* Hero antigo do Claude, mais limpo */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px var(--pad) 86px;
  text-align: center;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(115px);
  opacity: .42;
  pointer-events: none;
}

.glow-a {
  top: -10%;
  left: -8%;
  background: rgba(255, 106, 0, .5);
}

.glow-b {
  right: -8%;
  bottom: -16%;
  background: rgba(138, 60, 255, .38);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(62px, 10vw, 138px);
  font-weight: 600;
  line-height: .9;
}

.hero-title span {
  background: linear-gradient(100deg, var(--orange), #ffa14d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--gray-soft);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.manifesto {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(90px, 14vh, 180px) var(--pad);
  text-align: center;
}

.manifesto-text {
  color: var(--gray-dim);
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(34px, 5.1vw, 66px);
  font-weight: 500;
  line-height: 1.08;
}

.manifesto-text span {
  color: #fff;
}

.section,
.prepos {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(82px, 11vh, 140px) var(--pad);
  scroll-margin-top: 92px;
}

.section-head {
  max-width: 730px;
  margin-bottom: 58px;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sol-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: transform .4s var(--ease), border-color .3s ease, background .3s ease;
}

.sol-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-2);
  background: var(--glass-bg-2);
}

.sol-num {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.sol-card h3,
.step h3 {
  margin-top: 42px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.sol-card p,
.step p {
  margin-top: 12px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
}

.prepos {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.prepos::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 50%;
  width: 720px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 106, 0, .15), transparent 66%);
  filter: blur(90px);
  pointer-events: none;
}

.prepos > * {
  position: relative;
  z-index: 1;
}

.prepos .section-head,
.prepos .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.prepos-title {
  margin: 4px 0 4px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(70px, 12vw, 150px);
  font-weight: 700;
  line-height: .9;
}

.prepos-tag {
  color: var(--gray-soft);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 300;
}

.prepos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-border);
}

.prepos-stats div {
  padding: 24px;
  background: rgba(255, 255, 255, .045);
}

.prepos-stats strong {
  display: block;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 54px;
  line-height: .9;
}

.prepos-stats span {
  color: var(--gray-mute);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding: 34px 28px 30px 0;
  border-top: 1px solid var(--glass-border);
}

.step span {
  color: var(--gray-dim);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.legado {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.legado-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}

.legado-logos {
  display: grid;
  gap: 14px;
}

.legado-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass-bg);
}

.legado-chip img {
  width: 150px;
  height: 30px;
  object-fit: contain;
  object-position: left center;
}

.legado-chip span {
  color: var(--gray-mute);
  font-size: 14px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.sobre-img {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
}

.sobre-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sobre-text .button {
  margin-top: 30px;
}

.contato {
  padding: clamp(82px, 11vh, 140px) var(--pad) 38px;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .28));
  scroll-margin-top: 92px;
}

.contato-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: stretch;
}

.form-contato {
  display: grid;
  gap: 14px;
  max-width: 470px;
  margin-top: 28px;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 15px 17px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  resize: vertical;
}

.form-contato input:focus,
.form-contato textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, .72);
}

.activation-hero {
  padding-bottom: clamp(42px, 7vh, 76px);
}

.activation-hero.compact {
  min-height: auto;
}

/* Lead proporcional a uma tela de formulário (o título já é tratado mais
   abaixo em .page-hero.activation-hero .page-title-xl). */
.activation-hero .page-lead {
  font-size: clamp(16px, 1.6vw, 19px);
}

.activation-section {
  padding-top: 18px;
}

.activation-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .78fr);
  gap: 28px;
  align-items: start;
}

.checkout-grid {
  grid-template-columns: minmax(0, .96fr) minmax(360px, .8fr);
}

.activation-card,
.activation-summary {
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .035), transparent 42%),
    rgba(255, 255, 255, .022);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.activation-card {
  padding: clamp(24px, 3vw, 38px);
}

.activation-title {
  margin-top: 10px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  line-height: .95;
}

.activation-form {
  display: grid;
  gap: 16px;
}

.activation-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-soft);
  font-size: 13px;
  font-weight: 600;
}

.activation-form input,
.activation-form textarea,
.activation-form select {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font: inherit;
  color-scheme: dark;
}

.activation-form textarea {
  resize: vertical;
}

.activation-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gray-mute) 50%), linear-gradient(135deg, var(--gray-mute) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.activation-form select option {
  background: #111;
  color: #fff;
}

.activation-form select option:checked,
.activation-form select option:hover {
  background: #ff6a00;
  color: #000;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .035), transparent 48%),
    rgba(255, 255, 255, .04);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.custom-select-trigger span {
  color: #fff;
}

.custom-select-trigger i {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gray-mute);
  border-bottom: 2px solid var(--gray-mute);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease), border-color .25s ease;
}

.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus {
  outline: none;
  border-color: rgba(255, 106, 0, .72);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .08);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .07), transparent 48%),
    rgba(255, 255, 255, .055);
}

.custom-select.open .custom-select-trigger i {
  border-color: var(--orange);
  transform: rotate(225deg) translate(-2px, -2px);
}

.custom-select.invalid .custom-select-trigger {
  border-color: rgba(255, 68, 68, .72);
  box-shadow: 0 0 0 3px rgba(255, 68, 68, .08);
}

.custom-select-menu {
  position: absolute;
  z-index: 30;
  inset: calc(100% + 8px) 0 auto;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 106, 0, .24);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .055), transparent 52%),
    rgba(12, 12, 12, .96);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--ease);
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-select-menu button {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--gray-soft);
  font: inherit;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.custom-select-menu button:hover,
.custom-select-menu button.selected {
  border-color: rgba(255, 106, 0, .22);
  background: rgba(255, 106, 0, .095);
  color: #fff;
}

.activation-form input:focus,
.activation-form textarea:focus,
.activation-form select:focus {
  outline: none;
  border-color: rgba(255, 106, 0, .72);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .08);
}

.google-auth-button {
  width: 100%;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .025);
  color: #fff;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s var(--ease);
}

.google-auth-button:hover,
.google-auth-button.connected {
  border-color: rgba(255, 106, 0, .5);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .08), transparent 60%),
    rgba(255, 255, 255, .035);
  transform: translateY(-1px);
}

.google-auth-button.invalid {
  border-color: rgba(255, 68, 68, .72);
  box-shadow: 0 0 0 3px rgba(255, 68, 68, .08);
}

.google-auth-button:focus {
  outline: none;
  border-color: rgba(255, 106, 0, .72);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .08);
}

.google-auth-button .google-mark {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1a73e8;
  font-weight: 800;
  font-size: 19px;
}

.google-auth-button strong,
.google-auth-button small {
  display: block;
}

.google-auth-button strong {
  font-size: 15px;
}

.google-auth-button small {
  margin-top: 4px;
  color: var(--gray-mute);
  font-size: 12px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.activation-note {
  color: var(--gray-mute);
  font-size: 12px;
  line-height: 1.55;
}

.activation-summary {
  position: sticky;
  top: 102px;
  padding: clamp(24px, 3vw, 34px);
}

.summary-logo img {
  height: 28px;
  opacity: .92;
  margin-bottom: 28px;
}

.activation-summary h2 {
  margin-top: 12px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: .9;
}

.summary-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
}

.summary-price span,
.summary-total strong {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.summary-price small {
  color: var(--gray-mute);
}

.activation-summary > p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--gray-soft);
  font-size: 14px;
  line-height: 1.55;
}

.step-line,
.order-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--gray-soft);
}

.step-line {
  justify-content: flex-start;
  align-items: center;
}

.step-line span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  font-size: 12px;
  font-weight: 800;
}

.step-line.muted span {
  background: rgba(255, 255, 255, .07);
  color: var(--gray-mute);
}

.step-line strong,
.order-line strong {
  color: #fff;
  font-size: 14px;
}

.order-line span,
.summary-total span {
  color: var(--gray-mute);
  font-size: 13px;
}

.summary-total {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--glass-border);
}

.summary-total strong {
  display: block;
  margin-top: 8px;
}

.summary-total small {
  display: block;
  margin-top: 6px;
  color: var(--gray-soft);
  font-size: 13px;
  line-height: 1.45;
}

.secure-strip {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 106, 0, .18);
  border-radius: 18px;
  background: rgba(255, 106, 0, .055);
}

.secure-strip strong,
.secure-strip span {
  display: block;
}

.secure-strip strong {
  color: #fff;
  font-size: 14px;
}

.secure-strip span {
  margin-top: 6px;
  color: var(--gray-soft);
  font-size: 12.5px;
  line-height: 1.5;
}

.card-preview {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 106, 0, .25);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 106, 0, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .018));
}

.card-preview span,
.card-preview small {
  color: var(--gray-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.card-preview strong {
  display: block;
  margin-top: 34px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Aviso de carrinho / contratação em andamento (prepos.html) */
.cart-resume {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 106, 0, .34);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 106, 0, .10), rgba(255, 106, 0, .03));
  color: #fff;
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}

.cart-resume[hidden] { display: none; }

.cart-resume:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, .6);
  background: linear-gradient(135deg, rgba(255, 106, 0, .16), rgba(255, 106, 0, .05));
}

.cart-resume-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 106, 0, .18);
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
}

.cart-resume-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cart-resume-text strong {
  font-size: 15px;
  font-weight: 600;
}

.cart-resume-text span {
  color: var(--gray-soft);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-resume-text { text-decoration: none; color: inherit; }

.cart-resume-go {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cart-resume-remove {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--gray-mute);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.cart-resume-remove:hover {
  color: #ff6b6b;
  border-color: rgba(255, 45, 45, .4);
  background: rgba(255, 45, 45, .12);
}

.buy-login-hint {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 12px 18px;
  border: 1px solid rgba(46, 139, 255, .3);
  border-radius: 14px;
  background: rgba(46, 139, 255, .08);
  color: var(--gray-soft);
  font-size: 14px;
  text-align: center;
}

.buy-login-hint[hidden] { display: none; }

@media (max-width: 600px) {
  .cart-resume-go { display: none; }
}

/* Indicador flutuante de compra em andamento (site-wide, injetado pelo auth-ui.js) */
.cart-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--glass-border-2);
  border-radius: 999px;
  background: rgba(20, 20, 22, .72);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.cart-fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-fab-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 106, 0, .18);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
}

.cart-fab-link {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.cart-fab-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--gray-mute);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: color .2s ease, background .2s ease;
}

.cart-fab-close:hover {
  color: #ff6b6b;
  background: rgba(255, 45, 45, .12);
}

@media (max-width: 600px) {
  .cart-resume-go { display: none; }
  .cart-fab { left: 12px; right: 12px; bottom: 12px; }
  .cart-fab-link { white-space: normal; }
}

/* Página de login obrigatório (entrar.html) */
.login-gate {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px var(--pad) 80px;
}

.login-gate-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .06), transparent 45%),
    rgba(255, 255, 255, .022);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.login-gate-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 106, 0, .14);
  border: 1px solid rgba(255, 106, 0, .3);
  color: var(--orange);
}

.login-gate-title {
  margin-top: 8px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1;
}

.login-gate-lead {
  max-width: 400px;
  margin: 16px auto 26px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.login-gate-card .google-auth-button {
  max-width: 360px;
  margin: 0 auto;
}

.login-gate-msg { min-height: 18px; margin-top: 14px; color: #ff6b6b; font-size: 13px; }

.login-gate-back {
  display: inline-block;
  margin-top: 10px;
  color: var(--gray-mute);
  font-size: 14px;
  font-weight: 600;
}

.login-gate-back:hover { color: #fff; }

/* Campos seguros do Mercado Pago (iframes montados pelo SDK) */
.mp-field {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mp-field iframe {
  width: 100%;
  height: 24px;
  border: 0;
}

.mp-field.mp-focus {
  border-color: rgba(255, 106, 0, .72);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .08);
}

.mp-error {
  min-height: 18px;
  margin-top: -4px;
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 500;
}

.mp-error:empty {
  display: none;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.check-row a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 106, 0, .65);
  text-underline-offset: 3px;
}

.legal-acceptance {
  margin-top: -4px;
}

/* Paginas legais */
.legal-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding: 150px clamp(24px, 7vw, 110px) 70px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 106, 0, .18), transparent 34%),
    linear-gradient(115deg, rgba(2, 8, 15, .94), rgba(9, 9, 10, .98) 48%, rgba(41, 15, 2, .82));
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.legal-hero-inner {
  width: min(980px, 100%);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-meta span {
  padding: 10px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--gray-soft);
  font-size: 13px;
  font-weight: 600;
}

.legal-section-wrap {
  padding-top: 76px;
}

.legal-layout {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.legal-nav a:hover {
  color: #fff;
}

.legal-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, .11), transparent 38%),
    rgba(255, 255, 255, .026);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.legal-nav,
.legal-card {
  opacity: 1;
  transform: none;
}

.legal-block {
  scroll-margin-top: 130px;
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.legal-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-block h2 {
  margin: 6px 0 16px;
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: .95;
  color: #fff;
}

.legal-block p,
.legal-list li {
  color: var(--gray-soft);
  font-size: 17px;
  line-height: 1.75;
}

.legal-block p {
  margin: 0 0 16px;
}

.legal-block a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 106, 0, .65);
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 106, 0, .65);
}

.legal-list strong {
  color: #fff;
}

.legal-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 106, 0, .2);
  border-radius: 20px;
  background: rgba(255, 106, 0, .065);
}

.legal-note strong {
  color: #fff;
}

.legal-note span {
  color: var(--gray-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: relative;
    top: auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px;
    border-radius: 18px;
  }

  .legal-nav::-webkit-scrollbar {
    display: none;
  }

  .legal-nav strong {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
  }
}

@media (max-width: 640px) {
  .legal-hero {
    min-height: 62vh;
    padding: 128px 22px 52px;
  }

  .legal-layout {
    width: calc(100% - 28px);
    gap: 18px;
  }

  .legal-card {
    border-radius: 24px;
  }

  .legal-block p,
  .legal-list li {
    font-size: 15px;
  }
}

.onboarding-grid {
  grid-template-columns: minmax(0, .92fr) minmax(340px, .7fr);
}

.onboarding-actions {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.onboarding-option {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.onboarding-option:hover,
.onboarding-option.is-selected {
  border-color: rgba(255, 106, 0, .55);
  background: rgba(255, 106, 0, .07);
  transform: translateY(-2px);
}

.onboarding-option strong,
.onboarding-option span {
  display: block;
}

.onboarding-option strong {
  color: #fff;
  font-size: 15px;
}

.onboarding-option span {
  margin-top: 8px;
  color: var(--gray-soft);
  font-size: 13px;
  line-height: 1.5;
}

.onboarding-checklist {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.onboarding-checklist span {
  padding: 13px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--gray-soft);
  font-size: 13px;
}

.onboarding-checklist span.done {
  border-color: rgba(255, 106, 0, .26);
  background: rgba(255, 106, 0, .06);
  color: #fff;
}

.contato-info {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  color: var(--gray-mute);
  font-size: 14px;
}

.contato-info a {
  color: #fff;
  font-weight: 500;
}

.contato-mapa {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: #101010;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 380px;
  filter: grayscale(.2);
}

.map-pin {
  position: relative;
  width: 16px;
  height: 16px;
  background: none !important;
  border: none !important;
}

.map-pin-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .28), 0 0 16px rgba(255, 106, 0, .48);
  z-index: 2;
}

.map-pin-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 106, 0, .55);
  z-index: 1;
}

.map-pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 106, 0, .35);
  animation: mapPulse 2.4s cubic-bezier(.2, .8, .4, 1) infinite;
  z-index: 0;
}

.map-pin-pulse:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes mapPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(4); opacity: 0; }
}

/* ── Leaflet Popup Custom Styling ── */
.leaflet-popup-content-wrapper {
  background: rgba(15, 15, 17, 0.85) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: var(--blur) !important;
  -webkit-backdrop-filter: var(--blur) !important;
  color: var(--fg) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
  font-family: Rubik, system-ui, sans-serif !important;
}

.leaflet-popup-tip {
  background: rgba(15, 15, 17, 0.85) !important;
  border-left: 1px solid var(--glass-border) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  box-shadow: none !important;
}

.leaflet-popup-content {
  margin: 14px 20px !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.leaflet-popup-content b {
  color: #fff !important;
  font-family: Teko, Rubik, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

.leaflet-popup-close-button {
  color: var(--gray-mute) !important;
  padding: 8px 8px 0 0 !important;
}

.leaflet-popup-close-button:hover {
  color: #fff !important;
  background: none !important;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 78px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--gray-dim);
  font-size: 13px;
}

.footer-bottom img {
  height: 30px;
  opacity: .82;
}

/* Multi-page structure */
/* Molduras de imagem com proporção controlada — evita crop acidental.
   A proporção bate com a nativa das fotos (3:2), então object-fit:cover
   mostra a imagem inteira sem distorção nem corte. */
.ratio {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
}

.ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-2-3 { aspect-ratio: 2 / 3; }

.ratio-contain { background: #0c0c0d; }
.ratio-contain img { object-fit: contain; }

.page-hero {
  position: relative;
  max-width: none;
  min-height: 82svh;
  margin: 0 auto;
  padding: 150px max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad))) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 106, 0, .14), transparent 34%),
    radial-gradient(circle at 18% 38%, rgba(46, 139, 255, .08), transparent 30%);
  pointer-events: none;
}

.page-title-xl {
  max-width: 1040px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(62px, 9vw, 118px);
  font-weight: 600;
  line-height: .9;
}

.page-lead {
  max-width: 720px;
  margin-top: 28px;
  color: var(--gray-soft);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.55;
}

.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.pillar-grid,
.path-grid,
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card,
.path-card,
.pain-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    var(--glass-bg);
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease;
}

.path-card:hover,
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-2);
  background: var(--glass-bg-2);
}

.pillar-card h3,
.path-card h3,
.pain-grid strong {
  display: block;
  margin-top: 46px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.path-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pillar-card p,
.path-card p,
.pain-grid p {
  margin-top: 14px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
}

/* ── Seção Filosofia ── */
.philosophy-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.philosophy-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255, 106, 0, 0.07), transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}


.philosophy-title {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 28px;
  letter-spacing: -0.02em;
}

.philosophy-title span {
  color: var(--orange);
}

.philosophy-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-lead em {
  font-style: normal;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,106,0,0.4);
  padding-bottom: 1px;
}

.philosophy-pillars {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.phil-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,106,0,0.04);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.phil-pill:hover {
  border-color: rgba(255,106,0,0.5);
  background: rgba(255,106,0,0.08);
  color: #fff;
}

.phil-icon {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}


.cta-band {
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: radial-gradient(circle at 50% 0%, rgba(255, 106, 0, .10), transparent 48%);
}

.cta-band .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.cta-band .button {
  margin-top: 30px;
}

.cta-band .reveal {
  opacity: 1;
  transform: none;
}

.mini-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 42px var(--pad) 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--glass-border);
  color: var(--gray-soft);
}

.mini-footer img {
  height: 30px;
}

.mini-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mini-footer strong {
  color: #fff;
  font-weight: 500;
}

.mini-footer a,
.intent-grid a {
  color: #fff;
  font-weight: 600;
}

.feature-grid .sol-card {
  min-height: 235px;
}

.deep-steps .step {
  padding-right: 22px;
}

.page-contact {
  border-top: 0;
  padding-top: 30px;
}

.intent-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  max-width: 470px;
}

.intent-grid a {
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  transition: transform .25s var(--ease), border-color .25s ease;
}

.intent-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--glass-border-2);
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lab-card {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .04);
}

.lab-card > img:first-child {
  width: auto;
  height: 34px;
  margin: 24px;
  object-fit: contain;
}

.lab-card video,
.lab-card .lab-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  opacity: .88;
}

.lab-card h2 {
  margin: 24px 24px 8px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 34px;
  font-weight: 500;
}

.lab-card p {
  margin: 0 24px 26px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
}

.legacy-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: stretch;
}

.legacy-list {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--glass-border);
}

.legacy-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--glass-border);
}

.legacy-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.legacy-item h3 {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.legacy-item p {
  max-width: 520px;
  margin-top: 10px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
}

.legacy-item a,
.footer-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.legacy-item a {
  display: inline-flex;
  margin-top: 14px;
}

.hub-panel {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    radial-gradient(circle at 76% 14%, rgba(255, 106, 0, .16), transparent 36%);
}

.hub-panel img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  opacity: .9;
}

.hub-panel-content {
  padding: 34px;
}

.hub-panel h2 {
  max-width: 520px;
  margin-top: 12px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: .92;
}

.hub-panel p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--gray-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-footer {
  max-width: var(--maxw);
  margin: 88px auto 0;
  padding: 42px var(--pad) 54px;
  border-top: 1px solid var(--glass-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, .55fr));
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  height: 30px;
  opacity: .9;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 300;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: var(--gray-dim);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--gray-soft);
}

.footer-links a:hover {
  color: #fff;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--gray-dim);
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-email {
  color: var(--gray-dim);
  font-size: 12px;
  transition: color .25s ease;
}

.footer-email:hover {
  color: #fff;
}

.hub-product {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.hub-product-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .035);
}

.hub-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.support-card {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--glass-border);
}

.support-card:last-child {
  border-right: 0;
}

.support-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.support-card h3 {
  margin-top: 70px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.support-card p {
  margin-top: 14px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
}

.manual-list p strong {
  color: var(--orange);
  font-weight: 700;
}

.compat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.compat-list span {
  padding: 12px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  font-size: 14px;
  font-weight: 600;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.download-band .section-lead {
  max-width: 720px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.support-hero .page-lead {
  max-width: 820px;
}

.support-central {
  padding-top: clamp(72px, 10vh, 124px);
}

.support-category-grid {
  max-width: var(--maxw);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.support-category,
.support-step-grid article,
.support-download-card,
.assistant-panel,
.support-faq-grid article {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, .024);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.support-category {
  min-height: 290px;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .25s ease, background .25s ease;
}

.support-category:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, .36);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .055), transparent 52%),
    rgba(255, 255, 255, .03);
}

.support-category span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.support-category h3 {
  margin-top: auto;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: .95;
}

.support-category p {
  margin-top: 12px;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.support-category a {
  width: fit-content;
  margin-top: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.support-assistant {
  padding-top: 28px;
}

.assistant-panel {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 106, 0, .16), transparent 34%),
    rgba(255, 255, 255, .022);
}

.assistant-preview {
  display: grid;
  gap: 10px;
}

.chat-line {
  max-width: 92%;
  padding: 13px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: var(--gray-soft);
  background: rgba(255, 255, 255, .035);
  font-size: 13px;
  line-height: 1.45;
}

.chat-line.user {
  justify-self: end;
  color: #fff;
  border-color: rgba(255, 106, 0, .28);
  background: rgba(255, 106, 0, .09);
}

.support-topic {
  max-width: var(--maxw);
  margin: 0 auto;
}

.support-topic-head {
  max-width: 820px;
}

.support-step-grid,
.support-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.support-step-grid article,
.support-faq-grid article {
  border-radius: 20px;
  padding: 22px;
}

.support-step-grid article strong,
.support-faq-grid article strong,
.support-download-card strong {
  color: #fff;
  font-size: 15px;
}

.support-step-grid article p,
.support-faq-grid article p,
.support-download-card p {
  margin-top: 10px;
  color: var(--gray-soft);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.58;
}

.support-download-card {
  margin-top: 32px;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-download-card p {
  max-width: 690px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-faq-grid {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.simu-hero {
  min-height: 100svh;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 128px var(--pad) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: 48px;
  align-items: center;
}

.simu-logo {
  width: min(360px, 72vw);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 18px 42px rgba(255, 106, 0, .18));
}

.simu-hero .page-title-xl {
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 78px);
}

.simu-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  align-self: center;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, .035);
}

.simu-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 106, 0, .14), transparent 40%),
    linear-gradient(180deg, transparent 64%, rgba(5, 5, 5, .5));
  pointer-events: none;
}

.simu-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.simuhub-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.simu-stat {
  padding: 32px 30px;
  border-right: 1px solid var(--glass-border);
}

.simu-stat:last-child {
  border-right: 0;
}

.simu-stat span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.simu-stat strong {
  display: block;
  margin-top: 54px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.simu-stat p {
  max-width: 300px;
  margin-top: 12px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
}

.product-focus {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, .9fr);
  gap: 52px;
  align-items: center;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
  display: block;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-points span {
  padding: 10px 13px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: transform, opacity;
}

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .sol-grid,
  .steps,
  .prepos-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .legado-inner,
  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 22px;
  }

  body {
    background:
      radial-gradient(circle at 50% -8%, rgba(255, 106, 0, .20), transparent 34%),
      radial-gradient(circle at 50% 36%, rgba(138, 60, 255, .14), transparent 30%),
      #070708;
  }

  .site-header {
    height: 70px;
    padding: 0 22px;
    background: linear-gradient(180deg, rgba(7, 7, 8, .84), rgba(7, 7, 8, .36));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .brand img {
    height: 34px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav {
    position: fixed;
    inset: 78px 22px auto;
    z-index: 101;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 24px;
    padding: 10px;
    background:
      linear-gradient(145deg, rgba(255, 106, 0, .08), transparent 55%),
      #080809;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
    transition: opacity .25s ease, transform .25s var(--ease);
  }

  .nav::before,
  .nav.has-subnav::after {
    display: none;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav.has-subnav {
    padding: 10px;
    border-radius: 24px;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
  }

  /* Mobile: dissolve dropdown, show links directly in the nav grid */
  .nav-dropdown {
    display: contents;
  }

  .nav-dropdown-trigger {
    display: none;
  }

  .nav-dropdown-menu {
    display: contents;
    position: static;
    width: auto;
    min-width: 0;
    margin: 0;
    gap: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-radius: 0;
    overflow: visible;
    white-space: normal;
  }

  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after {
    display: none;
  }

  .nav-dropdown-seta {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: contents;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: contents;
  }

  .nav-dropdown-menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
    background: transparent;
    border-radius: 999px;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, .08);
  }

  .nav-dropdown-menu a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 22px 72px;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(56px, 18vw, 78px);
    line-height: .86;
    max-width: 340px;
    margin: 0 auto;
    text-wrap: balance;
  }

  .hero-sub {
    max-width: 342px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 344px);
    margin: 32px auto 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-glow {
    width: 340px;
    height: 340px;
  }

  .glow-a {
    left: -120px;
  }

  .glow-b {
    right: -130px;
  }

  .manifesto {
    padding: 74px 22px 58px;
  }

  .manifesto-text {
    padding: 26px 22px;
    border: 1px solid var(--glass-border);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    font-size: clamp(30px, 10vw, 42px);
    text-align: left;
  }

  .section,
  .prepos {
    padding: 72px 22px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 2.6px;
  }

  .section-title {
    font-size: clamp(42px, 14vw, 58px);
    line-height: .94;
    text-wrap: balance;
  }

  .section-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .sol-grid,
  .steps,
  .prepos-stats {
    grid-template-columns: 1fr;
  }

  .sol-grid {
    gap: 12px;
  }

  .sol-card {
    min-height: 0;
    padding: 22px;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(255, 106, 0, .07), transparent 42%),
      rgba(255, 255, 255, .045);
  }

  .sol-card h3,
  .step h3 {
    margin-top: 28px;
    font-size: 28px;
  }

  .prepos {
    padding-top: 82px;
  }

  .prepos::before {
    width: 430px;
    height: 360px;
    top: 0;
  }

  .prepos-title {
    font-size: clamp(72px, 23vw, 96px);
  }

  .prepos-tag {
    max-width: 310px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.45;
  }

  .demo-switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 28px;
    border-radius: 26px;
    padding: 9px;
    background: rgba(255, 255, 255, .055);
  }

  .demo-pill {
    display: none;
  }

  .demo-tab {
    width: auto;
    min-height: 48px;
    justify-content: center;
    border-radius: 18px;
    padding: 10px 8px;
    font-size: 12px;
    white-space: normal;
  }

  .demo-tab.is-active {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
  }

  .demo-caption {
    margin-top: 24px;
  }

  .demo-cap-text {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.45;
  }

  .demo-live {
    max-width: 320px;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }

  .prepos-stats {
    margin-top: 38px;
    border-radius: 24px;
  }

  .prepos-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
  }

  .prepos-stats strong {
    font-size: 42px;
  }

  .steps {
    gap: 12px;
  }

  .step {
    padding: 22px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035);
  }

  .legado {
    border-top: 0;
    border-bottom: 0;
  }

  .legado-inner,
  .sobre-grid,
  .contato-grid {
    gap: 34px;
  }

  .legado-chip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
  }

  .legado-chip img {
    width: 138px;
  }

  .sobre-img {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  }

  .sobre-text .button {
    width: 100%;
    min-height: 52px;
  }

  .contato {
    padding: 72px 22px 32px;
  }

  .form-contato {
    max-width: none;
  }

  .form-contato input,
  .form-contato textarea {
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, .055);
  }

  .form-contato .button {
    min-height: 54px;
  }

  .contato-mapa {
    min-height: 280px;
    border-radius: 24px;
  }

  #map {
    min-height: 280px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 86svh;
    padding: 118px 22px 72px;
  }

  .page-title-xl {
    font-size: clamp(54px, 16vw, 76px);
    line-height: .88;
    text-wrap: balance;
  }

  .page-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .pillar-grid,
  .path-grid,
  .pain-grid,
  .lab-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar-card,
  .path-card,
  .pain-grid article {
    min-height: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .pillar-card h3,
  .path-card h3,
  .pain-grid strong {
    margin-top: 30px;
    font-size: 30px;
  }

  .split-proof {
    grid-template-columns: 1fr;
    gap: 24px;
    border-top: 0;
    border-bottom: 0;
  }

  .proof-text {
    font-size: 16px;
  }

  .cta-band {
    margin-left: 0;
    margin-right: 0;
    padding: 42px 22px;
  }

  .mini-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 22px 46px;
  }

  .mini-footer div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .lab-card {
    border-radius: 22px;
  }

  .lab-card video,
  .lab-card .lab-image {
    height: 190px;
  }

  .legacy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legacy-item {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .legacy-item h3 {
    font-size: 30px;
  }

  .hub-panel {
    min-height: 0;
    border-radius: 24px;
  }

  .hub-panel img {
    height: 210px;
  }

  .hub-panel-content {
    padding: 26px;
  }

  .site-footer {
    margin-top: 56px;
    padding: 34px 22px 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-line {
    flex-direction: column;
  }

  .hub-product,
  .download-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hub-product-media {
    aspect-ratio: 3 / 2;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .support-card:last-child {
    border-bottom: 0;
  }

  .support-card h3 {
    margin-top: 34px;
    font-size: 30px;
  }

  .compat-list {
    justify-content: flex-start;
  }

  .compat-list span {
    font-size: 13px;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .simu-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 118px 22px 56px;
  }

  .simu-logo {
    width: min(270px, 78vw);
    margin-bottom: 26px;
  }

  .simu-hero-media {
    aspect-ratio: 2 / 3;
    max-width: 320px;
    justify-self: center;
    margin: 0 auto;
    border-radius: 24px;
  }

  .simuhub-strip {
    grid-template-columns: 1fr;
  }

  .simu-stat {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .simu-stat:last-child {
    border-bottom: 0;
  }

  .simu-stat strong {
    margin-top: 28px;
    font-size: 30px;
  }

  .product-focus {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery img {
    height: 260px;
    border-radius: 22px;
  }

  .product-gallery img:first-child {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  main {
    opacity: 1 !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Page transitions ── */
main {
  animation: pageFadeIn .42s var(--ease) forwards;
}

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

body.is-leaving main {
  animation: pageFadeOut .26s ease forwards;
  pointer-events: none;
}

@keyframes pageFadeOut {
  to { opacity: 0; transform: translateY(-8px); }
}



/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 106, 0, .38);
  opacity: 0;
  transform: translateY(20px) scale(.94);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease), box-shadow .25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta:hover {
  box-shadow: 0 14px 48px rgba(255, 106, 0, .54);
  transform: translateY(-3px) scale(1.03);
  color: #000;
}

@media (max-width: 760px) {
  .floating-cta {
    bottom: 18px;
    right: 18px;
    padding: 13px 18px;
    font-size: 13px;
  }
}

/* ── Pricing ── */
.pricing-section {
  text-align: center;
}

.pricing-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-price {
  margin-top: 18px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(38px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1;
}

.pricing-price span {
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-mute);
  margin-left: 4px;
}

.pricing-price .price-val {
  font-family: Teko, Rubik, sans-serif;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin-left: 0;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
  }
}

.pricing-card {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  text-align: left;
  transition: transform .38s var(--ease), border-color .3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-2);
}

.pricing-card.featured {
  border-color: rgba(255, 106, 0, .36);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, .07), rgba(255, 106, 0, .02)),
    var(--glass-bg);
}

.pricing-card.featured:hover {
  border-color: rgba(255, 106, 0, .68);
}

.pricing-card.elite {
  border-color: rgba(138, 60, 255, .36);
  background:
    linear-gradient(145deg, rgba(138, 60, 255, .07), rgba(138, 60, 255, .02)),
    var(--glass-bg);
}

.pricing-card.elite:hover {
  border-color: rgba(138, 60, 255, .68);
}

.pricing-card.elite .pricing-list li::before {
  border-color: rgba(138, 60, 255, .44);
  background-color: rgba(138, 60, 255, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%238a3cff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-card.elite .button-dark {
  border-color: rgba(138, 60, 255, .4);
}

.pricing-card.elite .button-dark:hover {
  background: rgba(138, 60, 255, .1);
  border-color: rgba(138, 60, 255, .8);
}

.pricing-badge {
  position: absolute;
  top: -1px; right: 26px;
  padding: 5px 14px;
  border-radius: 0 0 14px 14px;
  background: var(--orange);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.pricing-plan-name {
  color: var(--gray-mute);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.pricing-headline {
  margin-top: 20px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: .95;
}

.pricing-sub {
  margin-top: 4px;
  color: var(--gray-mute);
  font-size: 14px;
}

.pricing-desc {
  margin-top: 18px;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  border-top: 1px solid var(--glass-border);
  padding-top: 18px;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, .44);
  background: rgba(255, 106, 0, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23ff6a00' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.pricing-list li.not-included::before {
  border-color: rgba(255, 45, 45, 0.32);
  background: rgba(255, 45, 45, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3L3 9' stroke='%23ff2d2d' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.pricing-cta {
  width: 100%;
  margin-top: 28px;
  min-height: 50px;
}

.pricing-note {
  margin-top: 22px;
  color: var(--gray-dim);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .pricing-card {
    padding: 28px 24px 26px;
  }
}

/* Billing Switcher */
.billing-switcher-container {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 24px;
}

.billing-switcher {
  display: inline-flex;
  padding: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  position: relative;
  gap: 4px;
}

.billing-tab {
  background: transparent;
  border: none;
  color: var(--gray-mute);
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  outline: none;
}

.billing-tab:hover {
  color: #fff;
}

.billing-tab.active {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.billing-tab .badge-discount {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2.5px 6px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  background: rgba(255, 106, 0, 0.15);
  color: var(--orange);
  transition: background 0.3s ease, color 0.3s ease;
}

.billing-tab.active .badge-discount {
  background: var(--orange);
  color: #000;
}

.billing-tab[data-billing="annual"] .badge-discount {
  background: rgba(138, 60, 255, 0.15);
  color: var(--purple);
}

.billing-tab.active[data-billing="annual"] .badge-discount {
  background: var(--purple);
  color: #fff;
}

.pricing-price {
  transition: opacity 0.25s ease;
}

.pricing-billing-detail {
  font-size: 12.5px;
  color: var(--gray-mute);
  margin-top: 6px;
  font-weight: 400;
  opacity: 0.85;
  min-height: 18px;
  transition: opacity 0.25s ease;
}

/* Trust Bar */
.pricing-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 58px;
  padding: 32px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.015);
  text-align: left;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item h4 {
  font-family: Teko, Rubik, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.25;
}

.trust-item h4 svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-item p {
  font-size: 13.5px;
  color: var(--gray-soft);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .pricing-trust-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}

/* Add-ons Section */
.addons-section {
  margin-top: 68px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 64px;
}

.addons-title {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
}

.addons-subtitle {
  color: var(--gray-soft);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  margin-top: 10px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}

.addon-card {
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.35s var(--ease), border-color 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-2);
}

.addon-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-tag {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: 999px;
}

.addon-tag.single {
  background: rgba(46, 139, 255, 0.15);
  color: var(--blue);
}

.addon-tag.recurring {
  background: rgba(255, 106, 0, 0.12);
  color: var(--orange);
}

.addon-card h4 {
  font-family: Teko, Rubik, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}

.addon-desc {
  font-size: 13.5px;
  color: var(--gray-soft);
  font-weight: 300;
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 20px;
}

.addon-footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.addon-price {
  font-family: Teko, Rubik, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.addon-price span {
  font-family: Rubik, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-mute);
  margin-left: 2px;
}

.addon-note {
  font-size: 11.5px;
  color: var(--gray-mute);
}

@media (max-width: 980px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .addons-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .addon-card {
    min-height: auto;
  }
}

/* ── Testimonial ── */
.testimonial-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 106, 0, .07), transparent 58%);
  pointer-events: none;
}

.testimonial-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  display: block;
  color: var(--orange);
  font-family: Teko, sans-serif;
  font-size: 130px;
  font-weight: 700;
  line-height: .55;
  opacity: .25;
  user-select: none;
  margin-bottom: 28px;
}

.quote-text {
  color: #fff;
  font-family: Rubik, system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}

.quote-text em {
  font-style: normal;
  color: var(--orange);
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding: 14px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 106, 0, .14);
  border: 1.5px solid rgba(255, 106, 0, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-family: Teko, sans-serif;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.quote-name strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.quote-name span {
  color: var(--gray-mute);
  font-size: 12px;
  text-align: left;
  display: block;
}

@media (max-width: 760px) {
  .quote-mark { font-size: 96px; }
  .quote-text { font-size: clamp(26px, 9vw, 36px); }
  .quote-author { flex-direction: row; }
}

/* Checkboxes in Add-ons */
.addon-card {
  cursor: pointer;
  position: relative;
  border: 1px solid var(--glass-border);
  transition: all 0.35s var(--ease);
}

.addon-card.selected {
  border-color: rgba(255, 106, 0, 0.44) !important;
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.04), rgba(255, 106, 0, 0.01)), var(--glass-bg) !important;
}

.addon-card.selected.elite-included {
  border-color: rgba(138, 60, 255, 0.44) !important;
  background: linear-gradient(145deg, rgba(138, 60, 255, 0.04), rgba(138, 60, 255, 0.01)), var(--glass-bg) !important;
}

.addon-checkbox-container {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-soft);
  cursor: pointer;
  user-select: none;
}

.addon-checkbox-container input {
  display: none;
}

.addon-custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--glass-border-2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.addon-checkbox-container input:checked + .addon-custom-checkbox {
  background: var(--orange);
  border-color: var(--orange);
}

.addon-checkbox-container input:checked + .addon-custom-checkbox::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.addon-checkbox-container.disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.addon-checkbox-container.disabled .addon-custom-checkbox {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}

.addon-checkbox-container.disabled input:checked + .addon-custom-checkbox {
  background: var(--purple);
  border-color: var(--purple);
}

.addon-checkbox-container.disabled input:checked + .addon-custom-checkbox::after {
  border-color: #fff;
}

/* Sticky Summary Bar */
.pricing-calculator-bar {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 860px;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-2);
  border-radius: 20px;
  padding: 18px 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  transition: bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.pricing-calculator-bar.visible {
  bottom: 24px;
  opacity: 1;
  pointer-events: auto;
}

.calc-bar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.calc-bar-plan {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gray-mute);
}

.calc-bar-plan span {
  color: var(--orange);
  font-weight: 800;
}

.calc-bar-plan.elite span {
  color: var(--purple);
}

.calc-bar-price {
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.calc-bar-price .period {
  font-family: Rubik, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-mute);
}

.calc-bar-price .one-time {
  font-size: 14px;
  font-family: Rubik, sans-serif;
  color: var(--gray-soft);
  font-weight: 400;
  margin-left: 6px;
  border-left: 1px solid var(--glass-border-2);
  padding-left: 8px;
}

.calc-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 760px) {
  .pricing-calculator-bar {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    text-align: center;
    bottom: -180px;
    width: 94%;
  }
  .pricing-calculator-bar.visible {
    bottom: 12px;
  }
  .calc-bar-price {
    justify-content: center;
    font-size: 26px;
  }
  .calc-bar-price .one-time {
    font-size: 12.5px;
  }
  .calc-bar-cta {
    width: 100%;
  }
  .calc-bar-cta .button {
    width: 100%;
  }
}

/* Collapsible Comparison Table */
.comparison-section {
  margin-top: 58px;
  border-top: 1px solid var(--glass-border);
  padding-top: 48px;
  text-align: center;
}

.comparison-toggle-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  outline: none;
}

.comparison-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-2);
  transform: translateY(-2px);
}

.comparison-toggle-btn svg {
  transition: transform 0.3s ease;
}

.comparison-toggle-btn.active svg {
  transform: rotate(180deg);
}

.comparison-table-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.comparison-table-wrapper.open {
  max-height: 2500px;
  opacity: 1;
  margin-top: 36px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.comparison-table th, 
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 13.5px;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 600;
  font-family: Teko, Rubik, sans-serif;
  font-size: 19px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.comparison-table tr.category-row td {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.comparison-table td {
  color: var(--gray-soft);
  font-weight: 300;
}

.comparison-table td:first-child {
  font-weight: 400;
  color: #fff;
  width: 40%;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  width: 20%;
}

.comparison-table td svg {
  display: inline-block;
  vertical-align: middle;
}

.comparison-table td svg.check-orange {
  color: var(--orange);
}

.comparison-table td svg.check-purple {
  color: var(--purple);
}

.comparison-table td svg.cross-red {
  color: var(--red);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

@media (max-width: 680px) {
  .comparison-table th, 
  .comparison-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
  .comparison-table th {
    font-size: 15px;
  }
}

/* FAQ Accordion */
.faq-section {
  margin-top: 86px;
  border-top: 1px solid var(--glass-border);
  padding-top: 68px;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-title {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 38px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--glass-border-2);
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  padding: 20px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--gray-soft);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
}

.faq-item.open {
  border-color: var(--glass-border-2);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-question svg {
  color: var(--gray-mute);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--orange);
}

/* ── Refined Add-ons and Stepper Styles ── */
.addon-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.addon-per-period {
  font-family: Rubik, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-mute);
  margin-left: 2px;
}

.addon-card.is-included {
  border-color: rgba(0, 230, 118, 0.25) !important;
  background: linear-gradient(145deg, rgba(0, 230, 118, 0.03), transparent), var(--glass-bg) !important;
  cursor: default !important;
}

.addon-card.is-included:hover {
  transform: none !important;
  border-color: rgba(0, 230, 118, 0.35) !important;
}

.addon-included-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00e676;
  font-size: 13px;
  font-weight: 500;
  margin-top: 18px;
  background: rgba(0, 230, 118, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 230, 118, 0.2);
  width: fit-content;
  animation: fadeIn 0.3s ease;
}

.addon-included-badge svg {
  flex-shrink: 0;
}

.addon-mechanics-interactive-wrapper {
  margin-top: 14px;
}

.addon-mechanics-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  width: fit-content;
  animation: fadeIn 0.25s ease-out;
}

.stepper-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-soft);
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stepper-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
  outline: none;
}

.stepper-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.stepper-val {
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-width: 16px;
  text-align: center;
}

/* ── Elite All-Inclusive Premium Box ── */
.elite-all-inclusive {
  position: relative;
  max-width: 860px;
  margin: 36px auto 0;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(138, 60, 255, 0.08), rgba(138, 60, 255, 0.02)), var(--glass-bg);
  border: 1px solid rgba(138, 60, 255, 0.36);
  box-shadow: 0 16px 40px rgba(138, 60, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  text-align: center;
  animation: slideDown 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-box-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(80px);
  opacity: 0.18;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.elite-box-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.elite-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(138, 60, 255, 0.12);
  border: 1.5px solid rgba(138, 60, 255, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  box-shadow: 0 8px 24px rgba(138, 60, 255, 0.15);
  margin-bottom: 6px;
}

.elite-all-inclusive h3 {
  font-family: Teko, Rubik, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.8px;
  line-height: 1;
}

.elite-all-inclusive p {
  font-size: 14.5px;
  color: var(--gray-soft);
  font-weight: 300;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.elite-badge-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 60, 255, 0.08);
  border: 1px solid rgba(138, 60, 255, 0.22);
  color: #d1b3ff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.elite-badge:hover {
  background: rgba(138, 60, 255, 0.16);
  border-color: rgba(138, 60, 255, 0.4);
  color: #fff;
}

.elite-badge svg {
  color: #a873ff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Selected active pricing cards feedback */
.pricing-card.active-plan {
  border-color: rgba(255, 106, 0, 0.62) !important;
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.pricing-card.elite.active-plan {
  border-color: rgba(138, 60, 255, 0.62) !important;
  box-shadow: 0 12px 32px rgba(138, 60, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* ── Pricing Select Button Styling ── */
.pricing-select-btn {
  width: 100%;
  margin-top: 28px;
  min-height: 50px;
  transition: all 0.3s var(--ease);
}

.pricing-card.active-plan .pricing-select-btn {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #000 !important;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.32);
}

.pricing-card.elite.active-plan .pricing-select-btn {
  background: var(--purple) !important;
  border-color: var(--purple) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(138, 60, 255, 0.32);
}

/* ── Checkout Summary Card Styles ── */
.checkout-summary-card {
  max-width: 860px;
  margin: 36px auto 0;
  padding: 36px 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border-2);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: slideDown 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.checkout-summary-details {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 28px;
}

.checkout-plan-info h4 {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gray-mute);
  margin-bottom: 8px;
}

.checkout-plan-title {
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.checkout-addons-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.checkout-addons-list li {
  font-size: 13.5px;
  color: var(--gray-soft);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-addons-list li::before {
  content: "+";
  color: var(--orange);
  font-weight: bold;
}

.checkout-price-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.checkout-price-label {
  font-size: 12px;
  color: var(--gray-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.checkout-total-price {
  font-family: Teko, Rubik, sans-serif;
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-top: 4px;
}

.checkout-total-price .period {
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-mute);
  margin-left: 4px;
}

.checkout-one-time {
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 400;
  margin-top: 6px;
}

.checkout-action-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.checkout-final-btn {
  min-height: 52px;
  padding: 0 38px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: #000;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.checkout-final-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.28);
}

.checkout-guarantee {
  font-size: 13px;
  color: var(--gray-mute);
  font-weight: 300;
}

@media (max-width: 760px) {
  .checkout-summary-card {
    padding: 24px;
  }
  .checkout-summary-details {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .checkout-price-info {
    align-items: flex-start;
    text-align: left;
  }
  .checkout-total-price {
    font-size: 38px;
  }
  .checkout-action-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }}

/* ==========================================================================
   High-Conversion 3-Tier Pricing Grid Styles
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: var(--maxw);
  margin: 54px auto;
  position: relative;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-2);
  background: rgba(255, 255, 255, 0.025);
}

/* ── Pro Card Visual Center-Stage Highlight ── */
.pricing-card.featured {
  transform: translateY(-12px);
  border-color: rgba(255, 106, 0, 0.45);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.02), transparent 40%), rgba(255, 255, 255, 0.018);
  box-shadow: 0 24px 50px rgba(255, 106, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.pricing-card.featured:hover {
  transform: translateY(-16px) scale(1.01);
  border-color: rgba(255, 106, 0, 0.65);
  box-shadow: 0 32px 60px rgba(255, 106, 0, 0.18);
}

.pricing-badge-wrapper {
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pricing-badge {
  background: var(--orange);
  color: #000;
  font-family: Rubik, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}

/* ── Elite Card visual highlight (Anchoring) ── */
.pricing-card.elite-card {
  border-color: rgba(138, 60, 255, 0.25);
  background: linear-gradient(180deg, rgba(138, 60, 255, 0.02), transparent 40%), rgba(255, 255, 255, 0.015);
}

.pricing-card.elite-card:hover {
  border-color: rgba(138, 60, 255, 0.45);
  box-shadow: 0 20px 40px rgba(138, 60, 255, 0.08);
}

/* Card typography & base elements */
.pricing-plan-name {
  font-family: Teko, Rubik, sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-mute);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-plan-name {
  color: var(--orange);
}

.pricing-card.elite-card .pricing-plan-name {
  color: #b388ff;
}

.pricing-price {
  font-family: Teko, Rubik, sans-serif;
  font-size: 54px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price span {
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-mute);
}

/* Price daily framing */
.price-framing {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--orange);
  margin-top: 8px;
  background: rgba(255, 106, 0, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 106, 0, 0.15);
  width: fit-content;
  animation: fadeIn 0.3s ease;
}

.pricing-billing-detail {
  font-size: 12.5px;
  color: var(--gray-mute);
  font-weight: 300;
  margin-top: 6px;
  min-height: 18px;
}

.pricing-sub {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-top: 18px;
  min-height: 22px;
  line-height: 1.4;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 10px;
  min-height: 64px;
}

.pricing-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 24px 0;
}

/* Features List */
.pricing-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-list li {
  font-size: 13.5px;
  color: var(--gray-soft);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-list li::before {
  content: none;
}

.pricing-list li svg {
  flex-shrink: 0;
  margin-top: 3.5px;
  color: var(--orange);
}

.pricing-list li svg.check-icon {
  color: var(--orange);
}

.pricing-card.elite-card .pricing-list li svg.check-icon {
  color: #b388ff;
}

/* Loss Aversion styles (missing features crossed out) */
.pricing-list li.missing {
  color: var(--gray-mute);
  opacity: 0.45;
}

.pricing-list li.missing svg {
  color: var(--gray-dim);
}

.pricing-list li.missing svg.cross-icon {
  color: var(--gray-dim);
}

.pricing-list li.missing span {
  text-decoration: line-through;
}

/* CTA buttons & helper text */
.pricing-cta-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pricing-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 700;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-btn.button-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-2);
  color: #fff;
}

.pricing-btn.button-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
}

.pricing-card.featured .pricing-btn {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.25);
}

.pricing-card.featured .pricing-btn:hover {
  background: #ff8533;
  border-color: #ff8533;
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.35);
}

.pricing-card-helper-text {
  font-size: 12px;
  color: var(--gray-mute);
  text-align: center;
  font-weight: 300;
}

.pricing-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--maxw);
  margin: 34px auto 0;
  text-align: left;
}

.pricing-proof-grid article,
.pricing-faq-grid article {
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.pricing-proof-grid strong,
.pricing-faq-grid strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.pricing-proof-grid span,
.pricing-faq-grid p {
  display: block;
  margin-top: 8px;
  color: var(--gray-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
}

.pricing-mini-compare {
  max-width: var(--maxw);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.pricing-mini-compare div {
  padding: 24px;
  border-right: 1px solid var(--glass-border);
}

.pricing-mini-compare div:last-child {
  border-right: 0;
}

.pricing-mini-compare span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.pricing-mini-compare strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.pricing-mini-compare p {
  margin-top: 10px;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.pricing-mini-compare .is-pro {
  background: rgba(255, 106, 0, 0.045);
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--maxw);
  margin: 36px auto 0;
  text-align: left;
}

/* ── Billing Switcher ── */
.billing-switcher-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.billing-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 4px;
}

.billing-tab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  color: var(--gray-mute);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}

.billing-tab:hover {
  color: #fff;
}

.billing-tab.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.badge-discount {
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 106, 0, 0.16);
  color: var(--orange);
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* ── Trust Bar ── */
.pricing-trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: var(--maxw);
  margin: 64px auto 32px;
  border-top: 1px solid var(--glass-border);
  padding-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item h4 svg {
  color: var(--orange);
}

.trust-item p {
  font-size: 13px;
  color: var(--gray-mute);
  font-weight: 300;
  line-height: 1.5;
}

/* ── Media queries (responsiveness) ── */
@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .pricing-trust-bar {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
  }
}

@media (max-width: 760px) {
  .billing-switcher {
    width: 100%;
    max-width: 420px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 18px;
  }

  .billing-tab {
    justify-content: center;
    white-space: nowrap;
  }

  .pricing-proof-grid,
  .pricing-mini-compare,
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-mini-compare div {
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .pricing-mini-compare div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 920px) {
  .activation-grid,
  .checkout-grid,
  .onboarding-grid {
    grid-template-columns: 1fr;
  }

  .activation-summary {
    position: static;
  }

  .support-category-grid,
  .assistant-panel,
  .support-step-grid,
  .support-faq-grid {
    grid-template-columns: 1fr;
  }

  .support-category {
    min-height: 230px;
  }

  .support-download-card {
    align-items: stretch;
    flex-direction: column;
  }

  .support-download-card .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .activation-card,
  .activation-summary {
    border-radius: 22px;
  }

  .form-row.two,
  .form-row.three {
    grid-template-columns: 1fr;
  }

  .activation-form input,
  .activation-form textarea,
  .activation-form select {
    min-height: 48px;
  }

  .card-preview {
    min-height: 160px;
  }
}

.page-hero.activation-hero {
  min-height: auto;
  padding-top: clamp(118px, 14vh, 150px);
  padding-bottom: clamp(36px, 6vh, 72px);
}

.page-hero.activation-hero .page-title-xl {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 50px);
}

.page-hero.activation-hero .page-lead {
  max-width: 760px;
}

.page-hero.activation-hero.compact {
  padding-bottom: clamp(28px, 5vh, 54px);
}

@media (max-width: 640px) {
  .page-hero.activation-hero {
    padding-top: 116px;
    padding-bottom: 34px;
  }

  .page-hero.activation-hero .page-title-xl {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ==========================================================================
   INTERACTIVE & CREATIVE REDESIGN STYLES
   ========================================================================== */

/* ── 1. Connected Audience Panel (prepos.html) ── */
.audience-connected-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: var(--maxw);
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 42px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.connected-column {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.connected-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 28px;
}

.connected-column:not(:first-child) {
  padding-left: 28px;
}

.connected-column:hover {
  transform: translateY(-4px);
}

.col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.col-header .col-num {
  font-family: Teko, Rubik, sans-serif;
  font-size: 26px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1;
}

.col-header .col-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--gray-soft);
}

.connected-column h3 {
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 14px 0;
}

.connected-column p {
  font-size: 14px;
  color: var(--gray-soft);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* Elementos Visuais Ilustrativos */
.col-visual {
  margin-top: 24px;
  height: 80px;
  display: flex;
  align-items: flex-end;
}

.col-visual-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  width: 100%;
  height: 70px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Visual Mecânico (Mini Checklist) */
.mec-visual {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.visual-checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mini-checkbox {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

.mini-checkbox.done {
  background: #30D158;
  border-color: #30D158;
  color: #000;
}

.mini-checkbox.active {
  border-color: var(--orange);
  position: relative;
}

.mini-checkbox.active::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  top: 3px;
  left: 3px;
}

.mini-line-placeholder {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  width: 60%;
}

.mini-line-placeholder.short {
  width: 40%;
}

/* Visual Gestão (Mini KPIs) */
.dono-visual {
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.visual-kpis {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kpi-mini-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}

.kpi-mini-bar .bar-fill {
  height: 100%;
  border-radius: 3px;
}

.kpi-mini-bar .bar-fill.orange {
  background: var(--orange);
}

.kpi-mini-bar .bar-fill.blue {
  background: #00BFFF;
}

/* Visual Cliente (Mini Timeline) */
.client-visual {
  justify-content: center;
}

.visual-timeline {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 80%;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.timeline-dot.completed {
  background: #30D158;
}

.timeline-dot.active {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.timeline-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  flex: 1;
}

.timeline-line.completed {
  background: #30D158;
}

/* Responsividade Connected Panel */
@media (max-width: 991px) {
  .audience-connected-panel {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 36px;
  }
  
  .connected-column:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 0;
    padding-bottom: 36px;
  }
  
  .connected-column:not(:first-child) {
    padding-left: 0;
  }
}

/* ── 2. Bento Grid Pillar Styles (index.html) ── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--maxw);
  margin: 48px auto 0;
}

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px !important;
  position: relative;
  overflow: hidden;
}

/* Texto ancorado na base dos cards 01 e 02 */
.bento-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 20px;
}

.bento-card-text .sol-num {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.bento-card-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.bento-card-text p {
  font-size: 0.85rem;
  color: var(--gray-mute);
  margin: 0;
  line-height: 1.5;
}

.bento-card-full {
  grid-column: 1 / 3;
  min-height: auto !important; /* Altura flexível para o split grid */
  padding: 42px !important;
}

/* Ilustração Acessibilidade: Mini Mockup UI */
.bento-mockup-ui {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  height: 120px;
  margin-top: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Ilustração Acessibilidade: Mini Mockup UI */
.bento-mockup-ui {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .m-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

/* Abas do mockup */
.m-tab {
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
  font-family: var(--font-sans, sans-serif);
  letter-spacing: 0.02em;
}

.m-tab.active {
  background: rgba(255,106,0,0.12);
  color: var(--orange);
}

.mockup-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Rows de lista de projetos */
.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.mockup-row.muted {
  opacity: 0.4;
}

.mrow-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,106,0,0.2);
  flex-shrink: 0;
}

.mrow-avatar.pulse {
  background: rgba(255,106,0,0.35);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.1);
  animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,106,0,0.1); }
  50% { box-shadow: 0 0 0 6px rgba(255,106,0,0.05); }
}

.mrow-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mrow-line {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  width: 60%;
}

.mrow-line.wide { width: 80%; }
.mrow-line.short { width: 40%; background: rgba(255,255,255,0.04); }

.mrow-badge {
  font-size: 8px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mrow-badge.done {
  background: rgba(39,201,63,0.1);
  color: #27c93f;
}

.mrow-badge.active {
  background: rgba(255,106,0,0.12);
  color: var(--orange);
}

.mockup-input-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  width: 70%;
}

.mockup-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mockup-card-mini {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-card-mini .mini-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.15);
}

.mockup-card-mini .mini-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  flex: 1;
}

/* Ilustração Custo Justo: Comparação de Números Grandes */
.bento-chart-ui {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.chart-compare {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  gap: 6px;
}

.chart-compare.featured {
  background: rgba(255,106,0,0.05);
}

.chart-big-num {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.trad-num {
  color: rgba(255,255,255,0.18);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.1);
}

.teko-num {
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255,106,0,0.4);
}

.chart-big-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
}

.chart-compare.featured .chart-big-label {
  color: rgba(255,106,0,0.7);
}

.chart-divider-line {
  width: 1px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chart-bar .bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.chart-bar.trad .bar-info {
  color: var(--gray-mute);
}

.chart-bar.teko .bar-info {
  color: #fff;
  font-weight: 600;
}

.chart-bar.teko .bar-value {
  color: var(--orange);
}

.bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.chart-bar.trad .bar-fill {
  background: rgba(255, 255, 255, 0.15);
}

.chart-bar.teko .bar-fill {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
}

/* Stats no card de Alta Engenharia */
.bento-stat-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.bento-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bstat-val {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}

.bstat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

/* Layout Horizontal Interno do Card Completo */
.bento-split {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.bento-split-left .sol-num {
  margin-bottom: 8px;
  display: block;
}

.bento-split-left h3 {
  margin-top: 0;
}

/* Terminal de Telemetria no Bento Grid */
.bento-split-right .terminal-widget {
  background: #050507;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  height: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.7);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #111115;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
}

/* Badge LIVE no terminal */
.term-status-badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(39,201,63,0.15);
  color: #27c93f;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.term-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.term-dot:nth-child(1) { background: #ff5f56; }
.term-dot:nth-child(2) { background: #ffbd2e; }
.term-dot:nth-child(3) { background: #27c93f; }

.term-title {
  font-family: monospace;
  font-size: 9px;
  color: var(--gray-mute);
  margin-left: 6px;
}

.terminal-body {
  padding: 10px 12px;
  font-family: monospace;
  font-size: 10px;
  color: #27c93f;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.35;
  scrollbar-width: none;
}

.terminal-body::-webkit-scrollbar {
  display: none;
}

.term-line {
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typingLine 0.7s steps(20, end) forwards;
}

.term-line.system { color: #27c93f; }
.term-line.telemetry { color: #58a6ff; }
.term-line.warning { color: #d29922; }

@keyframes typingLine {
  from { width: 0; }
  to { width: 100%; }
}

/* Responsividade Bento Grid */
@media (max-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bento-card {
    grid-column: 1 / -1 !important;
    min-height: auto !important;
  }
  
  .bento-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── 3. Path Portal Glows & Hover Elements (index.html) ── */
.portal-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease) !important;
}

.portal-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.portal-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portal-card:hover .portal-svg-bg {
  opacity: 0.3;
  transform: scale(1.03);
}

.portal-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  color: var(--gray-mute);
  transition: all 0.3s ease;
  transform: translateX(-6px);
  opacity: 0;
  line-height: 1;
  z-index: 2;
  display: flex;
  align-items: center;
}

.portal-card:hover .portal-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* Brand Customizations */
.portal-prepos .portal-glow {
  background: radial-gradient(circle at 100% 100%, rgba(255, 106, 0, 0.06) 0%, transparent 60%);
}

.portal-prepos:hover {
  border-color: rgba(255, 106, 0, 0.35) !important;
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.portal-prepos:hover h3 {
  color: var(--orange) !important;
}

.portal-prepos:hover .portal-arrow {
  color: var(--orange) !important;
}

.portal-software .portal-glow {
  background: radial-gradient(circle at 100% 100%, rgba(0, 191, 255, 0.06) 0%, transparent 60%);
}

.portal-software:hover {
  border-color: rgba(0, 191, 255, 0.35) !important;
  box-shadow: 0 20px 45px rgba(0, 191, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.portal-software:hover h3 {
  color: #00BFFF !important;
}

.portal-software:hover .portal-arrow {
  color: #00BFFF !important;
}

.portal-simuhub .portal-glow {
  background: radial-gradient(circle at 100% 100%, rgba(191, 64, 191, 0.08) 0%, transparent 60%);
}

.portal-simuhub:hover {
  border-color: rgba(191, 64, 191, 0.35) !important;
  box-shadow: 0 20px 45px rgba(191, 64, 191, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.portal-simuhub:hover h3 {
  color: #d85ce4 !important;
}

.portal-simuhub:hover .portal-arrow {
  color: #d85ce4 !important;
}

.portal-card:hover .portal-glow {
  opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 880px) {
  .role-showcase-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .role-phone-mockup {
    height: 570px;
  }
}

/* ───────────────────────── Minha Conta (conta.html) ───────────────────────── */
.account-gate { text-align: left; }
.account-gate-note { margin-top: 18px; color: var(--red); font-size: 14px; min-height: 18px; }

.account-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 128px var(--pad) 90px;
}

.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--glass-border);
}

.account-id { display: flex; align-items: center; gap: 16px; }

.account-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 106, 0, .16);
  border: 1.5px solid rgba(255, 106, 0, .34);
  color: var(--orange);
  font-family: Teko, sans-serif;
  font-size: 30px; font-weight: 600;
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }

.account-name-title {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: .95;
}
.account-email-sub { color: var(--gray-mute); font-size: 14px; margin-top: 2px; }

.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 38px;
  margin-top: 38px;
  align-items: start;
}

.account-side {
  display: grid;
  gap: 4px;
  position: sticky;
  top: 100px;
}

.account-side-link {
  text-align: left;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.account-side-link:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.account-side-link.is-active {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: #fff;
}
.account-side-danger { margin-top: 8px; }

.account-content { display: block; }
.account-panel { display: none; }
.account-panel.is-active { display: block; animation: pageFadeIn .4s var(--ease); }

.account-card {
  padding: 30px 32px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.account-card + .account-card { margin-top: 18px; }

.account-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 24px;
}
.account-card-head h2 {
  color: #fff;
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px; font-weight: 500; line-height: 1;
}

.account-chip {
  padding: 6px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--gray-soft);
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.account-status {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(48, 209, 88, .14);
  border: 1px solid rgba(48, 209, 88, .34);
  color: #30D158;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}

.account-field { margin-bottom: 22px; }
.account-field:last-child { margin-bottom: 0; }
.account-field > label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-mute);
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
}
.account-field-row { display: flex; gap: 10px; align-items: stretch; }
.account-field-row input {
  flex: 1;
  padding: 13px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
}
.account-field-row input:focus { outline: none; border-color: rgba(255, 106, 0, .72); }
.account-save { min-height: 0; padding: 0 22px; white-space: nowrap; }

.account-readonly {
  padding: 13px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  color: var(--gray-soft);
}
.account-field-hint { display: block; margin-top: 7px; color: var(--gray-dim); font-size: 12px; }
.account-field-msg { display: block; margin-top: 7px; font-size: 12px; min-height: 14px; color: var(--gray-mute); }
.account-field-msg.ok { color: #30D158; }
.account-field-msg.err { color: var(--red); }

.sub-plan-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid var(--glass-border);
}
.sub-plan-name { color: #fff; font-family: Teko, Rubik, sans-serif; font-size: 38px; font-weight: 600; line-height: .9; }
.sub-plan-cycle { color: var(--gray-mute); font-size: 14px; margin-top: 4px; }
.sub-plan-price strong { color: #fff; font-family: Teko, sans-serif; font-size: 40px; }
.sub-plan-price span { color: var(--gray-mute); font-size: 15px; }

.sub-meta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 26px;
}
.sub-meta-grid span { display: block; color: var(--gray-mute); font-size: 12px; margin-bottom: 4px; }
.sub-meta-grid strong { color: #fff; font-size: 15px; font-weight: 500; }

.account-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.account-actions .button { min-height: 46px; }

.account-empty { text-align: center; }
.account-empty h2 { margin-bottom: 12px; }
.account-empty p { color: var(--gray-soft); font-size: 15px; font-weight: 300; max-width: 460px; margin: 0 auto 22px; }
.account-empty .button { margin: 0 auto; }
.account-empty-inline { color: var(--gray-mute); font-size: 14px; margin-bottom: 18px; }

.pay-method {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px; margin-bottom: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
}
.pay-card-visual { display: flex; flex-direction: column; gap: 6px; }
.pay-brand { color: var(--gray-mute); font-size: 11px; font-weight: 700; letter-spacing: 2px; }
.pay-card-visual strong { color: #fff; font-size: 17px; letter-spacing: 2px; }

.account-note { margin-top: 18px; color: var(--gray-dim); font-size: 13px; line-height: 1.6; }

.account-danger { color: #ff8f8f; }
.account-danger:hover {
  border-color: rgba(255, 45, 45, .45);
  background: rgba(255, 45, 45, .12);
  color: #ff6b6b;
}

.change-card {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
}

.change-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.change-card-head strong { color: #fff; font-size: 15px; }

.change-card-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--gray-mute);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}

.change-card-close:hover { color: #fff; background: rgba(255, 255, 255, .12); }

.change-card label { display: grid; gap: 8px; color: var(--gray-soft); font-size: 13px; font-weight: 600; }

.change-card input {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.change-card input:focus { outline: none; border-color: rgba(255, 106, 0, .72); }
.change-card .button { min-height: 48px; }

.security-id {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.security-id strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.security-id span {
  color: var(--gray-mute);
  font-size: 14px;
  word-break: break-all;
}

@media (max-width: 860px) {
  .account-section { padding: 110px 22px 64px; }
  .account-layout { grid-template-columns: 1fr; gap: 22px; }
  .account-side {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
  }
  .account-side-danger { margin-top: 0; }
  .account-card { padding: 24px; }
  .sub-meta-grid { grid-template-columns: 1fr; gap: 12px; }
  .account-head { padding-bottom: 24px; }
}

/* ── Seção "O que criamos" (software-sob-medida) ── */
.what-section {
  border-top: 1px solid var(--glass-border);
}

.what-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.what-header .section-title {
  margin-top: 10px;
}

.what-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--glass-border);
}

.what-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 24px;
  margin: 0 -24px;
  border-radius: 8px;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.2s;
  cursor: default;
}

.what-item:hover {
  background: rgba(255, 106, 0, 0.03);
}

.what-item:hover .what-num {
  color: var(--orange);
  opacity: 1;
}

.what-num {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  transition: color 0.2s, opacity 0.2s;
  letter-spacing: -0.02em;
}

.what-body h3 {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1;
}

.what-body p {
  font-size: 0.9rem;
  color: var(--gray-mute);
  margin: 0;
  line-height: 1.5;
  max-width: 480px;
}

.what-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 106, 0, 0.6);
  border: 1px solid rgba(255, 106, 0, 0.15);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  background: rgba(255, 106, 0, 0.03);
}

@media (max-width: 768px) {
  .what-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 24px 16px;
    margin: 0 -16px;
  }

  .what-tag {
    display: none;
  }

  .what-num {
    font-size: 2rem;
  }
}

/* ══════════════════════════════════════
   NOVA PÁGINA DE CONTATO
══════════════════════════════════════ */

/* Hero */
.contact-hero-v2 {
  position: relative;
  padding: clamp(120px, 18vh, 200px) var(--pad) clamp(60px, 8vh, 100px);
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.contact-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(255, 106, 0, 0.1), transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255, 106, 0, 0.04), transparent 60%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.contact-hero-title {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}

.contact-hero-title span {
  color: var(--orange);
}

.contact-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-soft);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.65;
}

/* Main section */
.contact-main-section {
  padding: clamp(60px, 8vh, 100px) var(--pad);
}

.contact-main-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 72px;
  align-items: start;
}

/* Intent buttons */
.contact-intents {
  margin-bottom: 32px;
}

.intent-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  margin-bottom: 12px;
}

.intent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intent-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: inherit;
}

.intent-btn:hover {
  border-color: rgba(255,106,0,0.4);
  color: #fff;
  background: rgba(255,106,0,0.06);
}

.intent-btn.active {
  border-color: var(--orange);
  background: rgba(255,106,0,0.1);
  color: var(--orange);
}

/* Form com labels flutuantes */
.form-contato-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 20px 16px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
  resize: none;
}

.form-field textarea {
  padding-top: 22px;
  min-height: 130px;
  resize: vertical;
}

.form-field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  transition: top 0.18s, font-size 0.18s, color 0.18s, transform 0.18s;
}

.form-field textarea ~ label {
  top: 20px;
  transform: none;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: 8px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255,106,0,0.5);
  background: rgba(255,255,255,0.05);
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.contact-submit-btn:hover {
  background: #ff7a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,0.3);
}

.contact-submit-btn svg {
  transition: transform 0.2s;
}

.contact-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Info side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 56px;
}

.contact-info-block {
  margin-bottom: 24px;
}

.contact-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value:hover { color: var(--orange); }
.contact-info-value.muted { color: var(--gray-soft); font-weight: 300; }

.contact-info-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 24px 0 28px;
}

.contact-info-why-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-teko, 'Teko', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.7;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-why-list li div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.contact-why-list li div p {
  font-size: 0.82rem;
  color: var(--gray-mute);
  margin: 0;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info-side {
    padding-top: 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .intent-buttons {
    flex-direction: column;
  }
  .intent-btn {
    text-align: left;
  }
}

/* ══════════════════════════════════════
   SEÇÃO DIAGNÓSTICO DE PROBLEMAS (prepos.html)
   ══════════════════════════════════════ */
.pain-connected-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: var(--maxw);
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 42px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.pain-connected-panel .connected-column {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.pain-connected-panel .connected-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 28px;
}

.pain-connected-panel .connected-column:not(:first-child) {
  padding-left: 28px;
}

.pain-connected-panel .connected-column:hover {
  transform: translateY(-4px);
}

.pain-connected-panel .col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pain-connected-panel .col-header .col-num {
  font-family: Teko, Rubik, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.pain-num-crit {
  color: var(--red);
}

.pain-num-high {
  color: var(--orange);
}

.pain-connected-panel .col-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
}

.pain-badge-crit {
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.15);
  color: #ff554d;
}

.pain-badge-high {
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: #ff9f0a;
}

.pain-connected-panel h3 {
  font-family: Teko, Rubik, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin: 0 0 14px 0;
}

.pain-connected-panel p {
  margin: 0 0 24px 0;
  color: var(--gray-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  flex-grow: 1;
}

.pain-consequence {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-mute);
  transition: color 0.3s ease;
}

.connected-column:hover .pain-consequence {
  color: var(--gray-soft);
}

.consequence-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.crit-dot {
  background-color: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.high-dot {
  background-color: var(--orange);
  box-shadow: 0 0 6px var(--orange);
}

/* Responsive */
@media (max-width: 900px) {
  .pain-connected-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  
  .pain-connected-panel .connected-column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 0;
    padding-bottom: 24px;
  }
  
  .pain-connected-panel .connected-column:not(:first-child) {
    padding-left: 0;
    padding-top: 8px;
  }
}

/* PrepOS waitlist */
.waitlist-section {
  padding-top: 40px;
}

.waitlist-card {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 106, 0, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.waitlist-copy .section-title {
  max-width: 650px;
  margin-bottom: 18px;
}

.waitlist-copy .section-lead {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}

.waitlist-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.waitlist-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--gray-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: rgba(8, 8, 10, 0.72);
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.waitlist-field span {
  color: var(--gray-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-field input,
.waitlist-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-field textarea {
  resize: vertical;
  min-height: 104px;
}

.waitlist-field input:focus,
.waitlist-field textarea:focus {
  border-color: rgba(255, 106, 0, 0.72);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.waitlist-submit {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.waitlist-submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.waitlist-status {
  min-height: 20px;
  margin: 0;
  color: var(--gray-mute);
  font-size: 0.86rem;
  line-height: 1.45;
}

.waitlist-status.ok {
  color: #32d66b;
}

.waitlist-status.error {
  color: #ff5148;
}

.waitlist-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .waitlist-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 620px) {
  .waitlist-section {
    padding-top: 20px;
  }

  .waitlist-card {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .waitlist-fields {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    padding: 14px;
  }
}

/* ============================================================
   PRINCÍPIOS (sobre.html) — visuais criativos dos 3 cards
   ============================================================ */

/* Base compartilhada dos "palcos" de ilustração */
.pr-guide,
.pr-net {
  flex: 1;
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

/* --- 01 Clareza: fluxo guiado --- */
.pr-guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 26px 22px;
}
.pr-guide-row { display: flex; align-items: center; gap: 12px; }
.pr-gr-ico {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-mute);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pr-guide-row.done .pr-gr-ico { background: rgba(48, 209, 88, 0.16); color: #30D158; border-color: rgba(48, 209, 88, 0.35); }
.pr-guide-row.next .pr-gr-ico { background: rgba(255, 159, 10, 0.18); color: var(--orange); border-color: rgba(255, 159, 10, 0.5); box-shadow: 0 0 0 4px rgba(255, 159, 10, 0.10); }
.pr-gr-line { height: 8px; border-radius: 4px; flex: 1; background: rgba(255, 255, 255, 0.06); }
.pr-guide-row.done .pr-gr-line { background: rgba(255, 255, 255, 0.11); }
.pr-guide-row.next .pr-gr-line.lead { background: linear-gradient(90deg, rgba(255, 159, 10, 0.55), rgba(255, 159, 10, 0.05)); }
.pr-gr-cta {
  font-size: 11px; font-weight: 700; white-space: nowrap;
  color: var(--orange);
  background: rgba(255, 159, 10, 0.12);
  border: 1px solid rgba(255, 159, 10, 0.4);
  padding: 5px 11px; border-radius: 999px;
  animation: prNudge 1.8s ease-in-out infinite;
}
@keyframes prNudge { 0%, 100% { transform: translateX(0); opacity: 0.75; } 50% { transform: translateX(4px); opacity: 1; } }

/* --- 02 Integração: módulos conectados --- */
.pr-net {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 18px;
}
.pr-node {
  font-size: 12px; font-weight: 700; white-space: nowrap;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px; padding: 10px 13px;
}
.pr-node.accent { color: var(--orange); border-color: rgba(255, 159, 10, 0.45); background: rgba(255, 159, 10, 0.1); }
.pr-wire { position: relative; height: 2px; flex: 1; min-width: 22px; background: rgba(255, 255, 255, 0.13); }
.pr-packet {
  position: absolute; top: 50%; left: 0;
  width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 9px var(--orange);
  animation: prPacket 1.8s linear infinite;
}
@keyframes prPacket { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

/* --- 03 Qualidade: monitor de carga --- */
.pr-monitor {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
  min-height: 180px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pr-monitor-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--gray-mute); }
.pr-mon-dot { width: 8px; height: 8px; border-radius: 50%; background: #30D158; box-shadow: 0 0 8px #30D158; animation: prBlink 1.6s ease-in-out infinite; }
@keyframes prBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.pr-mon-badge {
  margin-left: auto; font-size: 10px; font-weight: 800; letter-spacing: 0.03em;
  color: #30D158; background: rgba(48, 209, 88, 0.14);
  border: 1px solid rgba(48, 209, 88, 0.3); padding: 3px 9px; border-radius: 999px;
}
.pr-bars { height: 104px; display: flex; align-items: flex-end; gap: 6px; }
.pr-bars span {
  flex: 1; height: var(--h); border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--orange), rgba(255, 159, 10, 0.22));
  transform-origin: bottom;
  animation: prBar 2.4s ease-in-out infinite;
}
@keyframes prBar { 0%, 100% { transform: scaleY(0.82); } 50% { transform: scaleY(1.06); } }
.pr-monitor-foot { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--gray-mute); border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 11px; }
.pr-mon-tick { width: 7px; height: 7px; border-radius: 2px; background: #30D158; box-shadow: 0 0 6px rgba(48, 209, 88, 0.6); }

@media (prefers-reduced-motion: reduce) {
  .pr-gr-cta, .pr-packet, .pr-mon-dot, .pr-bars span { animation: none; }
}

/* Empilha o card 03 no mobile */
@media (max-width: 720px) {
  .pr-net { flex-wrap: wrap; gap: 8px; }
  .pr-wire { min-width: 16px; }
}
