.page {
  display: none;
}
.page.active {
  display: block;
}
/* ============================================================
   VARIÃVEIS GLOBAIS â€” UNO SoluÃ§Ãµes
   ============================================================ */

:root {
  /* Cores primÃ¡rias */
  --o: #f05a00;
  --ol: #ff7120;
  --od: rgba(240, 90, 0, 0.12);

  /* Backgrounds */
  --bk: #080604;
  --dk: #0e0b08;
  --sf: #090909;
  --s1: #111111;
  --s2: #161616;

  /* Bordas */
  --br: rgba(255, 255, 255, 0.09);
  --bro: rgba(240, 90, 0, 0.18);
  --bs: rgba(255, 255, 255, 0.07);

  /* Texto */
  --wh: #ffffff;
  --gy: #666666;
  --g2: #999999;
  --g3: #cccccc;
  --g2a: #c0bab2;

  /* Tipografia */
  --font-display: "Montserrat", sans-serif;
  --font-serif: "DM Serif Display", serif;
  --font-body: "Inter", sans-serif;

  /* EspaÃ§amentos padrÃ£o */
  --sec-pad: 100px 5vw;
  --sec-pad-sm: 60px 20px;
}
/* ============================================================
   RESET & BASE â€” UNO SoluÃ§Ãµes
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bk);
  color: var(--wh);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: none;
}

/* â”€â”€ Cursor customizado â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--o);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240, 90, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    left 0.12s,
    top 0.12s;
}

/* â”€â”€ AnimaÃ§Ãµes globais â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

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

@keyframes scan {
  from {
    top: -2px;
  }
  to {
    top: 100%;
  }
}

@keyframes gb {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes sp {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.9;
  }
}

/* â”€â”€ Reveal on scroll â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================================
   COMPONENTES REUTILIZÃVEIS â€” UNO SoluÃ§Ãµes
   ============================================================ */

/* â”€â”€ BotÃµes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-p {
  padding: 14px 36px;
  background: var(--o);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  border: none;
}
.btn-p:hover {
  opacity: 0.85;
}

.btn-p--lg {
  padding: 18px 36px;
  font-size: 13px;
}
.btn-p--lg:hover {
  background: var(--ol);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 90, 0, 0.3);
}

.btn-o {
  padding: 13px 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  background: none;
}
.btn-o:hover {
  border-color: var(--o);
  color: var(--o);
}

.btn-ghost {
  padding: 8px 18px;
  border: 1px solid var(--br);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g2);
  text-decoration: none;
  transition: all 0.2s;
  background: none;
}
.btn-ghost:hover {
  border-color: var(--o);
  color: var(--o);
}

.btn-cta {
  padding: 9px 22px;
  background: var(--o);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
}
.btn-cta:hover {
  opacity: 0.85;
}

/* â”€â”€ Tags / Labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 14px;
}

.stag--line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stag--line::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--o);
  flex-shrink: 0;
}

/* â”€â”€ Headings de seÃ§Ã£o â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}
.sh2 em {
  font-style: italic;
  color: var(--o);
}

.sh2--mono {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -1px;
}
.sh2--mono .o {
  color: var(--o);
}

.sec-hdr {
  text-align: center;
  margin-bottom: 72px;
}

/* â”€â”€ Dot pulsante â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dot {
  width: 6px;
  height: 6px;
  background: var(--o);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

/* â”€â”€ Divisor com linha laranja â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stripe-top {
  position: relative;
}
.stripe-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o), transparent);
}

/* â”€â”€ Check item â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.chk {
  width: 22px;
  height: 22px;
  border: 1px solid var(--o);
  color: var(--o);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* â”€â”€ Ticker de palavras â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker {
  border-top: 1px solid var(--bs);
  border-bottom: 1px solid var(--bs);
  padding: 15px 0;
  overflow: hidden;
  background: var(--s2);
}
.t-track {
  display: flex;
  gap: 56px;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gy);
  font-weight: 500;
}
.t-dot {
  width: 5px;
  height: 5px;
  background: var(--o);
  border-radius: 50%;
  flex-shrink: 0;
}

/* â”€â”€ Badge de produto â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--od);
  border: 1px solid rgba(240, 90, 0, 0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--o);
}

/* â”€â”€ Divider de seÃ§Ã£o com texto â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-divider {
  text-align: center;
  padding: 32px 0;
  position: relative;
}
.prod-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5vw;
  right: 5vw;
  height: 1px;
  background: var(--br);
}
.prod-divider span {
  position: relative;
  background: var(--bk);
  padding: 0 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--o);
}
/* ============================================================
   NAVEGAÃ‡ÃƒO â€” UNO SoluÃ§Ãµes
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo {
  text-decoration: none;
}

.nl {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nl a,
.nl button {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g2);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
}
.nl a:hover,
.nl button:hover {
  color: #fff;
}

/* Ãrea direita */
.nav-r {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* BotÃ£o voltar */
.back-btn {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--o);
  background: none;
  border: none;
  transition: opacity 0.2s;
}
.back-btn:hover {
  opacity: 0.7;
}
.ft-sep {
  width: 1px;
  height: 22px;
  background: var(--bs);
}
/* JORNADA */
.jornada-sec {
  padding: 100px 5vw;
  background: var(--sf);
}
.jornada-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.jornada-img img {
  border: 1px solid var(--br);
}
@media (max-width: 960px) {
  .jornada-inner {
    grid-template-columns: 1fr;
  }
  .jornada-img {
    order: -1;
  }
}

@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }
  .nl {
    display: none;
  }
}

#page-hub .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5vw 100px;
  position: relative;
  overflow: hidden;
}

#page-hub .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 90, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 90, 0, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 100%
  );
}

#page-hub .hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(240, 90, 0, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#page-hub .h-eye {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.45em;
  color: var(--o);
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  margin-top: -20px;
}

#page-hub .hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
}
#page-hub .hero h1 em {
  font-style: italic;
  color: var(--o);
}

#page-hub .hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--g2);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.85;
  position: relative;
}

#page-hub .hero-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

#page-hub .h-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
}
#page-hub .h-scroll span {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

#page-hub .scroll-ln {
  width: 1px;
  height: 36px;
  background: linear-gradient(#fff, transparent);
  animation: sp 2s ease-in-out infinite;
}

/* â”€â”€ NÃºmeros â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--s1);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
}
#page-hub .num-i {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--br);
}
#page-hub .num-i:last-child {
  border-right: none;
}
#page-hub .num-v {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 58px);
  color: var(--o);
  line-height: 1;
}
#page-hub .num-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gy);
  margin-top: 8px;
}

#page-hub .hub-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

#page-hub .hub-card.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(240, 90, 0, 0.35) !important;
  box-shadow:
    0 0 0 1px rgba(240, 90, 0, 0.1),
    0 8px 40px rgba(240, 90, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  transition:
    background 0.35s,
    box-shadow 0.35s,
    border-color 0.35s,
    transform 0.25s;
}

#page-hub .hub-card.glass-card:hover {
  background: rgba(240, 90, 0, 0.06) !important;
  border-color: rgba(240, 90, 0, 0.65) !important;
  box-shadow:
    0 0 0 1px rgba(240, 90, 0, 0.25),
    0 16px 56px rgba(240, 90, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

#page-hub .hub-card.glass-card::after {
  display: none;
}

/* â”€â”€ Card: Desenvolvimento â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .hub-card.dev::before,
#page-hub .hub-card.consult::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 90, 0, 0.5),
    transparent
  );
}

@media (max-width: 1100px) {
  #page-hub .hub-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  #page-hub .hub-grid-4 {
    grid-template-columns: 1fr;
  }
}

#page-hub .hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

#page-hub .hub-card {
  position: relative;
  padding: 60px 52px 52px;
  background: var(--s1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  border: none;
  text-align: left;
  width: 100%;
}
#page-hub .hub-card:hover {
  background: #131313;
}
#page-hub .hub-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
#page-hub .hub-card.erp::after {
  background: linear-gradient(90deg, var(--o), rgba(240, 90, 0, 0.2));
}
#page-hub .hub-card.ai::after {
  background: linear-gradient(90deg, rgba(240, 90, 0, 0.2), var(--o));
}

#page-hub .hub-eye {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#page-hub .hub-eye::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--o);
}

#page-hub .hub-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #fff;
}
#page-hub .hub-card h3 em {
  font-style: italic;
  color: var(--o);
}

#page-hub .hub-card > p {
  font-size: 13px;
  color: var(--g2);
  line-height: 1.9;
  margin-bottom: 36px;
  flex: 1;
}

#page-hub .hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
#page-hub .hub-tag {
  padding: 5px 14px;
  border: 1px solid var(--br);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g2);
}

#page-hub .hub-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--o);
  margin-top: auto;
  transition: gap 0.2s;
}
#page-hub .hub-card:hover .hub-link {
  gap: 16px;
}

#page-hub .hub-bg-num {
  position: absolute;
  bottom: 32px;
  right: 40px;
  font-family: var(--font-serif);
  font-size: 120px;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
}

/* â”€â”€ MÃ³dulos â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .modulos {
  padding: var(--sec-pad);
  background: var(--s1);
}

#page-hub .mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
#page-hub .mod-card {
  padding: 36px 32px;
  background: var(--s2);
  border: 1px solid transparent;
  transition:
    border-color 0.25s,
    background 0.25s;
}
#page-hub .mod-card:hover {
  border-color: rgba(240, 90, 0, 0.25);
  background: #181818;
}
#page-hub .mod-icon {
  font-size: 26px;
  margin-bottom: 16px;
}
#page-hub .mod-card h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
#page-hub .mod-card p {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.75;
}
#page-hub .mod-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--o);
  text-decoration: none;
  margin-top: 14px;
  transition: gap 0.15s;
}
#page-hub .mod-card a:hover {
  gap: 10px;
}

/* â”€â”€ Segmentos â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .segs {
  padding: var(--sec-pad);
}
#page-hub .seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
#page-hub .seg-card {
  padding: 32px 28px;
  background: var(--s1);
  border-top: 2px solid transparent;
  transition: border-color 0.25s;
}
#page-hub .seg-card:hover {
  border-color: var(--o);
}
#page-hub .seg-n {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(240, 90, 0, 0.3);
  margin-bottom: 10px;
}
#page-hub .seg-card h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
#page-hub .seg-card p {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.7;
}

.ft-ai {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--o);
  letter-spacing: 0.2em;
}

/* â”€â”€ Sobre â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .sobre {
  padding: var(--sec-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#page-hub .sobre-l .stag {
  display: block;
  margin-bottom: 14px;
}
#page-hub .sobre-l h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  margin-bottom: 28px;
}
#page-hub .sobre-l h2 em {
  font-style: italic;
  color: var(--o);
}
#page-hub .sobre-l p {
  font-size: 13px;
  color: var(--g2);
  line-height: 1.9;
  margin-bottom: 16px;
}
#page-hub .sobre-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
#page-hub .sobre-item {
  background: var(--s1);
  padding: 28px 24px;
  border: 1px solid var(--br);
}
#page-hub .sobre-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
#page-hub .sobre-item h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
#page-hub .sobre-item p {
  font-size: 11px;
  color: var(--g2);
  line-height: 1.7;
}

/* â”€â”€ Depoimentos â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .depoi {
  padding: var(--sec-pad);
  background: var(--s1);
}
#page-hub .dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
#page-hub .dep-card {
  padding: 40px 36px;
  background: var(--s2);
  border: 1px solid var(--br);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#page-hub .dep-q {
  font-size: 32px;
  color: var(--o);
  line-height: 1;
  font-family: var(--font-serif);
}
#page-hub .dep-txt {
  font-size: 13px;
  color: var(--g3);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}
#page-hub .dep-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
#page-hub .dep-role {
  font-size: 10px;
  color: var(--g2);
  margin-top: 3px;
}

/* â”€â”€ Parceria â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .parceria {
  padding: var(--sec-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#page-hub .parc-l .stag {
  display: block;
  margin-bottom: 14px;
}
#page-hub .parc-l h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}
#page-hub .parc-l h2 em {
  font-style: italic;
  color: var(--o);
}
#page-hub .parc-l p {
  font-size: 13px;
  color: var(--g2);
  line-height: 1.9;
  margin-bottom: 28px;
}
#page-hub .parc-r {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#page-hub .parc-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--s1);
  border: 1px solid var(--br);
  align-items: flex-start;
}
#page-hub .parc-ico {
  width: 38px;
  height: 38px;
  background: var(--od);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
#page-hub .parc-item h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}
#page-hub .parc-item p {
  font-size: 11px;
  color: var(--g2);
  line-height: 1.6;
}

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .cta-sec {
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#page-hub .cta-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(240, 90, 0, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
#page-hub .cta-sec .stag {
  display: block;
  margin-bottom: 18px;
  position: relative;
}
#page-hub .cta-sec h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
}
#page-hub .cta-sec h2 em {
  font-style: italic;
  color: var(--o);
}
#page-hub .cta-sec > p {
  font-size: 14px;
  color: var(--g2);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.85;
  position: relative;
}
#page-hub .cta-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* â”€â”€ Telefones â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-hub .tels {
  background: var(--s1);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  padding: 48px 5vw;
}
#page-hub .tels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#page-hub .tel-c {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 5px;
}
#page-hub .tel-n {
  font-size: 13px;
  color: var(--g2);
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  padding: 52px 5vw 32px;
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ft-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.ft-brand {
  max-width: 280px;
}
.ft-brand p {
  font-size: 11px;
  color: var(--gy);
  line-height: 1.85;
  margin-top: 16px;
}
.ft-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.ft-col h5 {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 16px;
}
.ft-col a,
.ft-col button {
  display: block;
  font-size: 11px;
  color: var(--gy);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}
.ft-col a:hover,
.ft-col button:hover {
  color: #fff;
}
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--br);
}
.ft-copy {
  font-size: 10px;
  color: var(--gy);
}
.ft-soc {
  display: flex;
  gap: 20px;
}
.ft-soc a {
  font-size: 10px;
  color: var(--gy);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-soc a:hover {
  color: var(--o);
}

/* â”€â”€ Responsivo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 960px) {
  #page-hub .nums,
  #page-hub .hub-grid,
  #page-hub .sobre,
  #page-hub .parceria {
    grid-template-columns: 1fr;
  }

  #page-hub .mod-grid,
  #page-hub .sobre-r {
    grid-template-columns: 1fr 1fr;
  }

  #page-hub .seg-grid,
  #page-hub .dep-grid {
    grid-template-columns: 1fr 1fr;
  }

  #page-hub .tels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #page-hub .ft-top {
    flex-direction: column;
  }
}
/* ============================================================
   PAGE: AI-SOL â€” UNO SoluÃ§Ãµes (SoluÃ§Ãµes de IA)
   ============================================================ */

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai-sol .hero-sol {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5vw 80px;
  position: relative;
  overflow: hidden;
}
#page-ai-sol .hero-sol-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 90, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 90, 0, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 100%
  );
}
#page-ai-sol .hero-sol-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(240, 90, 0, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
#page-ai-sol .hero-sol h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
}
#page-ai-sol .hero-sol h1 em {
  font-style: italic;
  color: var(--o);
}
#page-ai-sol .hero-sol p {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--g2);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.85;
  position: relative;
}
#page-ai-sol .hero-sol-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* â”€â”€ Stats bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai-sol .stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--s1);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
}
#page-ai-sol .stat-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid var(--br);
}
#page-ai-sol .stat-item:last-child {
  border-right: none;
}
#page-ai-sol .stat-v {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--o);
  line-height: 1;
}
#page-ai-sol .stat-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gy);
  margin-top: 8px;
}

/* â”€â”€ Detalhe IAU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai-sol .sol-detail {
  padding: var(--sec-pad);
}
#page-ai-sol .sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
#page-ai-sol .sol-feats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#page-ai-sol .sol-feat {
  padding: 20px 24px;
  background: var(--s1);
  border: 1px solid var(--br);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.25s;
}
#page-ai-sol .sol-feat:hover {
  border-color: rgba(240, 90, 0, 0.3);
}
#page-ai-sol .sol-feat h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}
#page-ai-sol .sol-feat p {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.7;
}

/* â”€â”€ Processo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai-sol .processo {
  padding: var(--sec-pad);
  background: var(--s1);
}
#page-ai-sol .proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
#page-ai-sol .proc-step {
  padding: 40px 32px;
  background: var(--s2);
  position: relative;
}
#page-ai-sol .proc-step-num-bg {
  font-family: var(--font-serif);
  font-size: 80px;
  color: rgba(240, 90, 0, 0.06);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
#page-ai-sol .proc-step-num {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 16px;
}
#page-ai-sol .proc-step h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
#page-ai-sol .proc-step p {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.75;
}

/* â”€â”€ Diferenciais â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai-sol .difs {
  padding: var(--sec-pad);
}
#page-ai-sol .dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
#page-ai-sol .dif-card {
  padding: 40px 36px;
  background: var(--s1);
}
#page-ai-sol .dif-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
#page-ai-sol .dif-card h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
#page-ai-sol .dif-card p {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.75;
}

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai-sol .cta-sol {
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#page-ai-sol .cta-sol-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(240, 90, 0, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
#page-ai-sol .cta-sol h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
}
#page-ai-sol .cta-sol h2 em {
  font-style: italic;
  color: var(--o);
}
#page-ai-sol .cta-sol > p {
  font-size: 14px;
  color: var(--g2);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.85;
  position: relative;
}
#page-ai-sol .cta-sol-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* â”€â”€ Responsivo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 960px) {
  #page-ai-sol .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  #page-ai-sol .sol-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #page-ai-sol .proc-grid,
  #page-ai-sol .dif-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================================
   PAGE: AI â€” UNO SoluÃ§Ãµes (IAU PreÃ§os & Pacotes)
   ============================================================ */

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 60px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#page-ai .hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(240, 90, 0, 0.13) 0%,
    rgba(200, 70, 0, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: gb 7s ease-in-out infinite;
}
#page-ai .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 90, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 90, 0, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    black 20%,
    transparent 75%
  );
}
#page-ai .hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 90, 0, 0.5),
    transparent
  );
  animation: scan 4s linear infinite;
}
#page-ai .hero-content {
  position: relative;
  max-width: 860px;
}
#page-ai .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--bro);
  background: var(--od);
  padding: 8px 18px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fu 0.7s 0.1s forwards;
}
#page-ai .hero-badge span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--o);
  text-transform: uppercase;
}
#page-ai .hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -2px;
  opacity: 0;
  animation: fu 0.9s 0.2s forwards;
}
#page-ai .hero h1 .l1,
#page-ai .hero h1 .l3 {
  display: block;
  color: #fff;
}
#page-ai .hero h1 .l2 {
  display: block;
  color: var(--o);
  font-style: italic;
}
#page-ai .hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--g2a);
  max-width: 580px;
  margin: 28px auto 48px;
  opacity: 0;
  animation: fu 0.8s 0.38s forwards;
}
#page-ai .hero-sub strong {
  color: #fff;
  font-weight: 500;
}
#page-ai .hero-acts {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fu 0.8s 0.52s forwards;
}
#page-ai .hero-stats {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-top: 72px;
  background: var(--bs);
  opacity: 0;
  animation: fu 0.8s 0.7s forwards;
}
#page-ai .hst {
  background: var(--dk);
  padding: 28px 40px;
  text-align: center;
  flex: 1;
}
#page-ai .hst-n {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--o);
  line-height: 1;
}
#page-ai .hst-l {
  font-size: 11px;
  color: var(--gy);
  margin-top: 6px;
}

/* â”€â”€ IAU section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .iau-sec {
  padding: var(--sec-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#page-ai .iau-wrap {
  position: relative;
}
#page-ai .iau-screen {
  background: var(--s2);
  border: 1px solid var(--bro);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
#page-ai .iau-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--o), transparent);
}
#page-ai .iau-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
#page-ai .iau-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#page-ai .iau-dot.r {
  background: #f44;
}
#page-ai .iau-dot.y {
  background: #fa0;
}
#page-ai .iau-dot.g {
  background: #4c4;
}
#page-ai .iau-stitle {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gy);
  text-transform: uppercase;
  margin-left: 6px;
}
#page-ai .iau-chart {
  height: 140px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 20px;
}
#page-ai .bar {
  flex: 1;
  background: var(--bs);
  border-radius: 2px 2px 0 0;
  position: relative;
  overflow: hidden;
}
#page-ai .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--o), rgba(240, 90, 0, 0.3));
}
#page-ai .bar.h::after {
  background: linear-gradient(to top, #ff7a00, rgba(255, 140, 0, 0.5));
}
#page-ai .bar:nth-child(1) {
  height: 45%;
}
#page-ai .bar:nth-child(2) {
  height: 65%;
}
#page-ai .bar:nth-child(3) {
  height: 38%;
}
#page-ai .bar:nth-child(4) {
  height: 80%;
}
#page-ai .bar:nth-child(5) {
  height: 55%;
}
#page-ai .bar:nth-child(6) {
  height: 92%;
}
#page-ai .bar:nth-child(7) {
  height: 70%;
}

#page-ai .iau-mets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bs);
}
#page-ai .iau-met {
  background: var(--dk);
  padding: 14px;
  text-align: center;
}
#page-ai .iau-met-n {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--o);
}
#page-ai .iau-met-l {
  font-size: 9px;
  color: var(--gy);
  margin-top: 4px;
}

#page-ai .iau-bubble {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--o);
  padding: 16px 20px;
  max-width: 200px;
}
#page-ai .iau-blbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
#page-ai .iau-btxt {
  font-size: 12px;
  color: #fff;
  line-height: 1.6;
}
#page-ai .iau-cur {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(255, 255, 255, 0.8);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

#page-ai .iau-cont .sh2 {
  margin-bottom: 20px;
}
#page-ai .iau-cont p {
  font-size: 14px;
  color: var(--g2a);
  line-height: 1.85;
  margin-bottom: 16px;
}
#page-ai .iau-bens {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
#page-ai .iau-ben {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bs);
}
#page-ai .iau-ben-t {
  font-size: 13px;
  color: var(--g2a);
  line-height: 1.7;
}
#page-ai .iau-ben-t strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* â”€â”€ Produtos â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .prod-sec {
  padding: var(--sec-pad);
}
#page-ai .prod-hdr {
  margin-bottom: 48px;
}

#page-ai .iau-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bro);
  margin-bottom: 2px;
}
#page-ai .iau-card-left {
  padding: 48px;
  border-right: 1px solid var(--bro);
}
#page-ai .iau-card-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
#page-ai .iau-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
#page-ai .iau-card-desc {
  font-size: 13px;
  color: var(--g2a);
  line-height: 1.85;
}
#page-ai .iau-card-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
#page-ai .iau-card-feat > div {
  font-size: 13px;
  color: var(--g2a);
  line-height: 1.7;
}
#page-ai .iau-card-feat strong {
  color: #fff;
  font-weight: 600;
}

/* â”€â”€ Pacotes / PreÃ§os â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .pkgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 24px;
}
#page-ai .pk {
  padding: 40px 32px;
  background: var(--s2);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
#page-ai .pk.dest {
  background: var(--od);
  border-color: var(--bro);
}
#page-ai .pk-eye {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 12px;
}
#page-ai .pk-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
#page-ai .pk-desc {
  font-size: 12px;
  color: var(--g2a);
  line-height: 1.7;
  margin-bottom: 24px;
}
#page-ai .pk-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
#page-ai .pk-feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--g2a);
  line-height: 1.5;
}
#page-ai .c-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--bro);
  background: var(--od);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 24px;
}

/* â”€â”€ Diferenciais â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .diff-sec {
  padding: var(--sec-pad);
}
#page-ai .diff-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
#page-ai .diff-intro p {
  font-size: 14px;
  color: var(--g2a);
  line-height: 1.9;
}
#page-ai .diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
#page-ai .dc {
  padding: 40px 36px;
  background: var(--s2);
  border: 1px solid transparent;
  transition: border-color 0.25s;
}
#page-ai .dc:hover {
  border-color: rgba(240, 90, 0, 0.2);
}
#page-ai .dc-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
#page-ai .dc-n {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--o);
  margin-bottom: 10px;
}
#page-ai .dc-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
#page-ai .dc-desc {
  font-size: 12px;
  color: var(--g2a);
  line-height: 1.75;
}

/* â”€â”€ Processo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .proc-sec {
  padding: var(--sec-pad);
}
#page-ai .psteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}
#page-ai .ps {
  padding: 36px 28px;
  background: var(--s2);
  position: relative;
  overflow: hidden;
}
#page-ai .ps-gh {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
}
#page-ai .ps-n {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--o);
  margin-bottom: 14px;
}
#page-ai .ps-t {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
#page-ai .ps-d {
  font-size: 12px;
  color: var(--g2a);
  line-height: 1.75;
}

/* â”€â”€ IntegraÃ§Ã£o â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .int-sec {
  padding: var(--sec-pad);
  background: var(--s2);
}
#page-ai .int-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--bro);
}
#page-ai .int-left h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.1;
}
#page-ai .int-left h2 span {
  color: var(--o);
}
#page-ai .int-left p {
  font-size: 13px;
  color: var(--g2a);
  line-height: 1.85;
}
#page-ai .int-bens {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#page-ai .int-b {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bs);
  transition: border-color 0.2s;
}
#page-ai .int-b:hover {
  border-color: var(--bro);
}
#page-ai .int-bt {
  font-size: 13px;
  color: var(--g2a);
  line-height: 1.7;
}
#page-ai .int-bt strong {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .cta-sec {
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#page-ai .cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(240, 90, 0, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
#page-ai .cta-sec h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 0.95;
  position: relative;
  margin-bottom: 24px;
}
#page-ai .cta-sec .o {
  color: var(--o);
}
#page-ai .cta-sec > p {
  font-size: 16px;
  color: var(--g2a);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.85;
  position: relative;
}
#page-ai .cta-acts {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px;
  background: rgba(8, 6, 4, 0.95);
  border-top: 1px solid var(--bs);
}
#page-ai .ft-links {
  display: flex;
  gap: 28px;
}
#page-ai .ft-links a {
  font-size: 11px;
  color: var(--gy);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
#page-ai .ft-links a:hover {
  color: var(--o);
}
#page-ai .ft-copy {
  font-size: 11px;
  color: var(--gy);
}

/* â”€â”€ Responsivo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 960px) {
  #page-ai .hero {
    padding: 110px 20px 60px;
  }
  #page-ai .hero-stats {
    flex-wrap: wrap;
  }
  #page-ai .hst {
    flex: 1 1 40%;
    min-width: 120px;
    padding: 20px;
  }
  #page-ai .iau-sec {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  #page-ai .iau-bubble {
    display: none;
  }
  #page-ai .prod-sec,
  #page-ai .diff-sec,
  #page-ai .cta-sec,
  #page-ai .proc-sec {
    padding: 60px 20px;
  }
  #page-ai .int-sec {
    padding: 60px 20px;
  }
  #page-ai .int-inner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  #page-ai .iau-card {
    grid-template-columns: 1fr;
  }
  #page-ai .pkgrid,
  #page-ai .diff-grid,
  #page-ai .psteps {
    grid-template-columns: 1fr;
  }
  #page-ai .diff-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #page-ai footer {
    flex-direction: column;
    gap: 20px;
    padding: 32px 20px;
    text-align: center;
  }
  #page-ai .ft-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

#page-ai * {
  cursor: none !important;
}
/* ============================================================
   PACOTES & COMPARATIVO â€” Complemento page-ai
   ============================================================ */

/* â”€â”€ Pacotes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .pkgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bs);
  margin-bottom: 1px;
}

#page-ai .pkg {
  background: var(--dk);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
#page-ai .pkg:hover {
  background: var(--s2);
}

#page-ai .pkg.dest {
  background: var(--s2);
  border: 1px solid var(--br);
}

#page-ai .pkg-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--o);
  color: #fff;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 4px 12px;
}

#page-ai .pkg-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--o);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
#page-ai .pkg:hover .pkg-bar {
  transform: scaleY(1);
}

#page-ai .pkg-lbl {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--o);
  text-transform: uppercase;
  margin-bottom: 8px;
}

#page-ai .pkg-sub {
  font-size: 13px;
  color: var(--gy);
  line-height: 1.6;
  margin-bottom: 28px;
}

#page-ai .pkg-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bs);
}

#page-ai .pp-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#page-ai .pp-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
#page-ai .pp-lbl {
  font-size: 11px;
  color: var(--gy);
  line-height: 1.4;
}
#page-ai .pp-lbl span {
  color: rgba(255, 255, 255, 0.3);
}

#page-ai .pkg-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
#page-ai .pkg-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--g2);
  line-height: 1.5;
}
#page-ai .pkg-feat strong {
  color: #fff;
  font-weight: 600;
}

#page-ai .pkg-note {
  font-size: 12px;
  color: var(--gy);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid var(--o);
  padding-left: 12px;
  margin-top: 4px;
}

#page-ai .btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  background: var(--o);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
#page-ai .btn-full:hover {
  background: var(--ol);
}

/* â”€â”€ Comparativo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#page-ai .comp {
  background: var(--dk);
  padding: 40px;
}
#page-ai .comp-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--o);
  text-transform: uppercase;
  margin-bottom: 24px;
}
#page-ai .comp-tbl {
  border: 1px solid var(--bs);
}
#page-ai .crow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#page-ai .crow + .crow {
  border-top: 1px solid var(--bs);
}
#page-ai .crow.ch {
  background: var(--s2);
}
#page-ai .cf {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gy);
  border-right: 1px solid var(--bs);
  font-weight: 500;
}
#page-ai .cv {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--g2);
  text-align: center;
  border-right: 1px solid var(--bs);
}
#page-ai .cv:last-child {
  border-right: none;
}
#page-ai .ch .cf,
#page-ai .ch .cv {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gy);
}
#page-ai .cv.hi {
  background: var(--od);
  color: #fff;
  font-weight: 600;
}
#page-ai .ch .cv.hi {
  color: var(--o);
}

/* â”€â”€ Popup â”€â”€ */
/* ============================================================
   COMPONENTE: Popup WhatsApp / DemonstraÃ§Ã£o
   UNO SoluÃ§Ãµes
   ============================================================ */

/* â”€â”€ Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#popup-whatsapp-form {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 15px;
  backdrop-filter: blur(4px);
}
#popup-whatsapp-form.open {
  display: flex;
}

/* â”€â”€ Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.popup-content {
  background: #0e0b08;
  border: 1px solid rgba(240, 90, 0, 0.25);
  padding: 36px 32px 28px;
  border-radius: 2px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 90, 0, 0.08);
  animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Linha laranja no topo */
.popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f05a00, transparent);
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* â”€â”€ Fechar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#close-popup {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
#close-popup:hover {
  color: #f05a00;
}

/* â”€â”€ CabeÃ§alho â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.popup-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f05a00;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup-eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #f05a00;
  flex-shrink: 0;
}

.popup-content h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.popup-content .subtitulo {
  color: #888;
  font-size: 0.82rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* â”€â”€ FormulÃ¡rio â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-rd-whatsapp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-rd-whatsapp input,
.form-rd-whatsapp select {
  padding: 10px 12px;
  font-size: 0.83rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}

.form-rd-whatsapp input::placeholder {
  color: #555;
}

.form-rd-whatsapp input:focus,
.form-rd-whatsapp select:focus {
  border-color: rgba(240, 90, 0, 0.5);
  background: rgba(240, 90, 0, 0.04);
}

/* Selects: cor do option */
.form-rd-whatsapp select {
  color: #888;
  cursor: pointer;
}
.form-rd-whatsapp select option {
  background: #111;
  color: #fff;
}
.form-rd-whatsapp select.filled {
  color: #fff;
}

/* â”€â”€ Labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-rd-whatsapp label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #555;
  margin-top: 4px;
  text-transform: uppercase;
}

/* â”€â”€ BotÃ£o submit â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-rd-whatsapp button[type="submit"] {
  background: #f05a00;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 10px;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-rd-whatsapp button[type="submit"]:hover {
  background: #ff7120;
  transform: translateY(-1px);
}
.form-rd-whatsapp button[type="submit"]:active {
  transform: translateY(0);
}

/* â”€â”€ BotÃ£o flutuante WhatsApp â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#btn-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: white;
  padding: 11px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.03em;
}
#btn-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
#btn-whatsapp-float svg {
  width: 18px;
  height: 18px;
  fill: white;
  flex-shrink: 0;
}

/* â”€â”€ Mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
  .popup-content {
    padding: 28px 20px 22px;
  }
  #btn-whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 9px 14px;
    font-size: 0.78rem;
    gap: 6px;
  }
  #btn-whatsapp-float svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   AJUSTES FINAIS â€” HUB ERP / IA / DEV / CONSULT
   ERP + IA = glass e grid principal
   DEV + CONSULT = sem glass, segunda linha com margin-top
   ============================================================ */

/* cursor padrÃ£o para melhor usabilidade */
body {
  cursor: default;
}

button,
a,
input,
select,
textarea {
  cursor: pointer;
}

#cur,
#ring {
  display: none;
}

/* container real dos 4 cards */
#page-hub .hero-acts .hub-grid.hub-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(720px, 420px));
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  align-items: stretch;
}

#page-hub .hero-acts .hub-grid {
  grid-template-columns: repeat(2, minmax(320px, 420px));
  gap: 28px;
  justify-content: center;
}

/* reset base dos 4 cards */
#page-hub .hub-card.erp,
#page-hub .hub-card.ai,
#page-hub .hub-card.dev,
#page-hub .hub-card.consult {
  width: 100%;
  width: 720px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  overflow: hidden;
  height: 350px;
}

/* ============================================================
   PRIMEIRA LINHA â€” ERP + IA (GLASS)
   ============================================================ */
#page-hub .hub-card.erp,
#page-hub .hub-card.ai {
  background: rgba(255, 255, 255, 0.045) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(240, 90, 0, 0.24) !important;
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

#page-hub .hub-card.erp::before,
#page-hub .hub-card.ai::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at top left,
    rgba(240, 90, 0, 0.12),
    transparent 60%
  );
  opacity: 0.7;
}

#page-hub .hub-card.erp:hover,
#page-hub .hub-card.ai:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(240, 90, 0, 0.38) !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(240, 90, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* mantÃ©m o brilho superior dos primeiros cards */
#page-hub .hub-card.erp::after {
  background: linear-gradient(90deg, var(--o), rgba(240, 90, 0, 0.2));
}

#page-hub .hub-card.ai::after {
  background: linear-gradient(90deg, rgba(240, 90, 0, 0.2), var(--o));
}

/* ============================================================
   SEGUNDA LINHA â€” DEV + CONSULT (SEM GLASS)
   ============================================================ */
#page-hub .hub-card.dev,
#page-hub .hub-card.consult,
#page-hub .hub-card.dev.glass-card,
#page-hub .hub-card.consult.glass-card {
  background: var(--s1) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--br) !important;
  border-radius: 0;
  box-shadow: none !important;
  margin-top: 42px !important;
}

#page-hub .hub-card.dev::before,
#page-hub .hub-card.consult::before {
  content: none !important;
}

#page-hub .hub-card.dev:hover,
#page-hub .hub-card.consult:hover {
  transform: none;
  background: #131313 !important;
  box-shadow: none !important;
}

/* tipografia consistente nos cards que usam h1 ou h3 */
#page-hub .hub-card h1,
#page-hub .hub-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #fff;
}

#page-hub .hub-card h1 em,
#page-hub .hub-card h3 em {
  font-style: italic;
  color: var(--o);
}

/* responsivo */
@media (max-width: 900px) {
  #page-hub .hero-acts .hub-grid.hub-grid-4,
  #page-hub .hero-acts .hub-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 18px;
    padding: 0 16px;
  }

  #page-hub .hub-card.dev,
  #page-hub .hub-card.consult,
  #page-hub .hub-card.dev.glass-card,
  #page-hub .hub-card.consult.glass-card {
    margin-top: 0 !important;
  }
}

/* títulos grandes apenas para ERP e IA */
#page-hub .hub-card.erp h1,
#page-hub .hub-card.erp h3,
#page-hub .hub-card.ai h1,
#page-hub .hub-card.ai h3 {
  font-size: clamp(42px, 4vw, 100px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.5px;
}

#page-hub .hub-card.dev,
#page-hub .hub-card.consult {
  margin-top: 56px !important;
  padding-top: 36px;
  border-top: 1px solid rgba(240, 90, 0, 0.16) !important;
  border-radius: 20px;
}
/* ============================================================
   HUB MORE SOLUTIONS — Desenvolvimento + Consultoria
   Layout horizontal premium igual à referência enviada
   ============================================================ */

#page-hub .hub-more-solutions {
  position: relative;
  z-index: 2;
  width: min(94vw, 1780px);
  margin: 26px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

#page-hub .hub-more-item {
  position: relative;
  width: 100%;
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(420px, auto) 130px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(28px, 5vw, 88px);
  row-gap: 14px;
  padding: 28px 0 30px;
  color: var(--wh);
}

#page-hub .hub-more-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

#page-hub .hub-more-left::before {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--o);
}

#page-hub .hub-more-title {
  display: block;
  margin-left: 28px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--o);
}

#page-hub .hub-more-title em {
  font-style: italic;
  color: var(--o);
}

#page-hub .hub-more-desc {
  margin-left: 28px;
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: clamp(10px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.4);
}

#page-hub .hub-more-tags {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
}

#page-hub .hub-more-tags .hub-tag {
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.012);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  white-space: nowrap;
}

#page-hub .hub-more-item > .hub-link {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  margin: 0;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--o);
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

#page-hub .hub-more-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

#page-hub a.hub-more-link {
  border-radius: 0;
  transition: background 0.25s ease;
}

#page-hub a.hub-more-link:hover {
  background: rgba(240, 90, 0, 0.035);
}

#page-hub a.hub-more-link:hover .hub-link {
  transform: translateX(6px);
}

/* remove estilos card das classes dev/consult legadas (caso sobrem) */
#page-hub .hub-card.dev,
#page-hub .hub-card.consult {
  display: none !important;
}

@media (max-width: 1180px) {
  #page-hub .hub-more-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    min-height: auto;
    padding: 28px 0;
  }

  #page-hub .hub-more-left,
  #page-hub .hub-more-desc,
  #page-hub .hub-more-tags,
  #page-hub .hub-more-item > .hub-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  #page-hub .hub-more-tags {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  #page-hub .hub-more-solutions {
    width: calc(100vw - 36px);
    margin-top: 22px;
  }

  #page-hub .hub-more-title {
    margin-left: 0;
    font-size: 30px;
  }

  #page-hub .hub-more-left::before {
    font-size: 8px;
    letter-spacing: 0.28em;
  }

  #page-hub .hub-more-desc {
    font-size: 13px;
  }

  #page-hub .hub-more-tags .hub-tag {
    height: 25px;
    padding: 0 12px;
    font-size: 8px;
  }
}
