/* =========================================================
   AURUM SOLTEC — Brand Stylesheet
   AI-First | Tecnologia aplicada a negócios
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Cores institucionais — paleta high-contrast */
  --c-white: #FFFFFF;
  --c-bg: #F4F7FB;
  --c-bg-2: #EAF0F6;
  --c-deep: #03101F;
  --c-deep-2: #061B33;
  --c-deep-3: #0A2542;
  --c-deep-glow: #0d3360;
  --c-cyan: #19C2FF;
  --c-cyan-bright: #00B4FF;
  --c-cyan-soft: rgba(25, 194, 255, .14);
  --c-lime: #D4FF00;
  --c-lime-bright: #E3FF1F;
  --c-lime-soft: rgba(212, 255, 0, .18);
  --c-gold: #D6A235;
  --c-gray: #3D4B59;
  --c-gray-2: #6E7B89;
  --c-gray-3: #B8C0C9;
  --c-line: rgba(3, 16, 31, .1);
  --c-line-2: rgba(3, 16, 31, .18);
  --c-line-dark: rgba(255, 255, 255, .1);
  --c-line-dark-2: rgba(255, 255, 255, .2);

  /* Tipografia */
  --ff-display: 'Space Grotesk', 'Jost', system-ui, sans-serif;
  --ff-body: 'Jost', 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-pill: 999px;
  --r-card: 22px;
  --r-card-lg: 28px;
  --r-sm: 12px;

  /* Sombras com mais profundidade */
  --sh-soft: 0 8px 30px rgba(3, 16, 31, .08);
  --sh-card: 0 16px 50px rgba(3, 16, 31, .14);
  --sh-card-strong: 0 30px 70px rgba(3, 16, 31, .22);
  --sh-glow-cyan: 0 16px 50px rgba(25, 194, 255, .38);
  --sh-glow-lime: 0 16px 50px rgba(212, 255, 0, .35);
  --sh-glow-lime-strong: 0 20px 60px rgba(212, 255, 0, .55);

  /* Transitions */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .25s var(--ease);
  --t-mid: .45s var(--ease);
  --t-slow: .8s var(--ease);

  /* Spacing helpers */
  --container: 1240px;
  --section-y: clamp(72px, 9vw, 128px);
  /* spacing scale (4pt rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 32px;
  --sp-8: 40px;
  --sp-9: 56px;
  --sp-10: 72px;
  /* vertical rhythm inside blocks */
  --stack-tight: 10px;
  --stack-base: 16px;
  --stack-loose: 24px;
  --gap-card: 22px;
  --gap-grid: 24px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-deep);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-deep);
}

::selection { background: var(--c-lime); color: var(--c-deep); }

/* ---------- LAYOUT UTILS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-deep);
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(6px);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-cyan-soft);
}
.eyebrow.is-dark {
  color: var(--c-white);
  background: rgba(255, 255, 255, .06);
  border-color: var(--c-line-dark);
}
.eyebrow.is-lime::before { background: var(--c-lime); box-shadow: 0 0 0 4px var(--c-lime-soft); }

.h-display {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.h-section {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.h-sub {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}
.lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--c-gray);
  line-height: 1.65;
  max-width: 60ch;
}
.txt-light { color: var(--c-white); }
.txt-light .lead { color: rgba(255, 255, 255, .72); }
.txt-light h1, .txt-light h2, .txt-light h3, .txt-light h4 { color: var(--c-white); }

.accent-cyan { color: var(--c-cyan); }
.accent-lime { color: var(--c-lime); }
.accent-gold { color: var(--c-gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}
.btn .btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--t-mid), background var(--t-fast);
}
.btn .btn-arrow svg { width: 14px; height: 14px; }

.btn-primary {
  background: var(--c-cyan);
  color: var(--c-deep);
  box-shadow: var(--sh-glow-cyan);
}
.btn-primary .btn-arrow { background: var(--c-deep); color: var(--c-white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(25, 194, 255, .35); }
.btn-primary:hover .btn-arrow { transform: rotate(-45deg); }

.btn-dark {
  background: var(--c-deep);
  color: var(--c-white);
}
.btn-dark .btn-arrow { background: var(--c-cyan); color: var(--c-deep); }
.btn-dark:hover { transform: translateY(-2px); background: var(--c-deep-2); }
.btn-dark:hover .btn-arrow { transform: rotate(-45deg); }

.btn-ghost {
  background: rgba(255, 255, 255, .9);
  color: var(--c-deep);
  border: 1px solid var(--c-line);
}
.btn-ghost .btn-arrow { background: var(--c-deep); color: var(--c-white); }
.btn-ghost:hover { transform: translateY(-2px); background: #fff; }
.btn-ghost:hover .btn-arrow { transform: rotate(-45deg); }

.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, .35);
}
.btn-outline-light .btn-arrow { background: rgba(255, 255, 255, .12); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .08); }

.btn-lime {
  background: var(--c-lime);
  color: var(--c-deep);
  box-shadow: var(--sh-glow-lime);
}
.btn-lime .btn-arrow { background: var(--c-deep); color: var(--c-lime); }
.btn-lime:hover { transform: translateY(-2px); }
.btn-lime:hover .btn-arrow { transform: rotate(-45deg); }

/* ---------- NAVBAR (CAPSULE) ---------- */
.nav-wrap {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform var(--t-mid);
}
.nav-wrap.is-scrolled .nav { box-shadow: 0 14px 40px rgba(7, 27, 51, .14); }

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 22px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(7, 27, 51, .07);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 30px rgba(7, 27, 51, .08);
  transition: box-shadow var(--t-mid), background var(--t-mid);
  width: min(1180px, calc(100% - 36px));
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--c-deep);
}
.nav-logo img { height: 30px; width: auto; }
.nav-logo span { font-size: 17px; }
.nav-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--c-gold);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  color: var(--c-deep);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-link:hover { background: rgba(7, 27, 51, .05); color: var(--c-deep); }
.nav-link.is-active { background: var(--c-deep); color: var(--c-white); }
.nav-link .chevron { transition: transform var(--t-fast); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 18px;
  background: var(--c-deep);
  color: var(--c-white);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  transition: transform var(--t-fast), background var(--t-fast);
}
.nav-cta-arrow {
  width: 30px;
  height: 30px;
  background: var(--c-cyan);
  color: var(--c-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--t-mid);
}
.nav-cta-arrow svg { width: 14px; height: 14px; }
.nav-cta:hover { background: var(--c-deep-2); transform: translateY(-1px); }
.nav-cta:hover .nav-cta-arrow { transform: rotate(-45deg); }

/* Mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(960px, 92vw);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-mid);
  box-shadow: 0 30px 80px rgba(7, 27, 51, .18);
  z-index: 10;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-mega:hover .nav-link .chevron { transform: rotate(180deg); }
.mega-col h4 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-gray);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}
.mega-col a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background var(--t-fast);
}
.mega-col a:hover { background: rgba(25, 194, 255, .08); }
.mega-col a .mega-ico {
  width: 32px;
  height: 32px;
  flex: none;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--c-deep);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.mega-col a:hover .mega-ico { background: var(--c-deep); color: var(--c-cyan); border-color: var(--c-deep); }
.mega-col a strong {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-deep);
  display: block;
}
.mega-col a span {
  font-size: 12.5px;
  color: var(--c-gray);
  line-height: 1.4;
}

/* Mobile nav */
.nav-burger { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--c-deep);
  color: var(--c-white);
  padding: 90px 28px 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform var(--t-mid);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu .close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
}
.mobile-menu ul li > a,
.mobile-menu ul li > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--c-white);
}
.mobile-sub { display: none; padding: 6px 0 14px; }
.mobile-sub a {
  display: block;
  padding: 10px 0 10px 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  border-left: 2px solid var(--c-cyan);
  margin-bottom: 2px;
}
.mobile-acc.is-open + .mobile-sub { display: block; }
.mobile-acc.is-open .chevron { transform: rotate(180deg); }
.mobile-menu .cta-block {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.mobile-menu .cta-block .btn { width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--c-white);
  padding: 96px 0 70px;
  overflow: hidden;
  background: var(--c-deep);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--c-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  /* brand color tints over the video */
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(25, 194, 255, .18), transparent 60%),
    radial-gradient(800px 500px at 10% 90%, rgba(212, 255, 0, .10), transparent 60%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* strong dark overlay — keeps all text and elements readable */
  background: linear-gradient(
    170deg,
    rgba(3, 12, 28, .80) 0%,
    rgba(5, 18, 40, .85) 45%,
    rgba(3, 10, 22, .95) 100%
  );
  z-index: 2;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 60%, #000 30%, transparent 75%);
  z-index: -1;
}

.hero-watermark {
  position: absolute;
  bottom: -40px;
  left: -10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(180px, 28vw, 420px);
  line-height: .8;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .06);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
}
.hero-title {
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--c-white);
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal-up .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
.hero-title .row { display: block; }
.hero-title em {
  font-style: normal;
  color: var(--c-lime);
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: rgba(255, 255, 255, .72);
  max-width: 56ch;
  opacity: 0;
  animation: fade-up .8s var(--ease) .7s forwards;
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .8s var(--ease) .9s forwards;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.1s forwards;
}
.hero-tagline {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-pill);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-deep-3));
  border: 2px solid var(--c-deep);
  margin-left: -8px;
  display: grid; place-items: center;
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
}
.hero-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--c-lime), #6fae00); color: var(--c-deep); }
.hero-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--c-gold), #7a5a13); }
.hero-tagline small {
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.35;
  display: block;
}
.hero-tagline strong {
  font-family: var(--ff-display);
  font-size: 13.5px;
  color: var(--c-white);
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}
.hero-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line-dark);
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--t-mid), background var(--t-mid);
}
.hero-card svg { width: 18px; height: 18px; color: var(--c-cyan); flex: none; }
.hero-card.is-lime svg { color: var(--c-lime); }
.hero-card:nth-child(odd) { animation: float 7s ease-in-out infinite; }
.hero-card:nth-child(even) { animation: float 8s ease-in-out infinite -2s; }

@keyframes reveal-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Inner heros */
.hero-inner-page {
  min-height: 60vh;
  padding: 160px 0 80px;
  align-items: center;
}
.hero-inner-page .hero-inner { grid-template-columns: 1fr; gap: 24px; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 18px;
  font-family: var(--ff-display);
  letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255, 255, 255, .65); }
.breadcrumb a:hover { color: var(--c-cyan); }
.breadcrumb .sep { color: var(--c-gold); }

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--c-deep);
  color: var(--c-white);
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.01em;
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 50px;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--c-lime);
  border-radius: 50%;
  flex: none;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee.is-light { background: var(--c-white); color: var(--c-deep); border-color: var(--c-line); }

/* ---------- LOGO BAR ---------- */
.logo-bar { background: var(--c-white); padding: 60px 0 50px; }
.logo-bar-inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 50px;
  align-items: center;
}
.logo-bar p {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-deep);
  line-height: 1.5;
  letter-spacing: -.005em;
}
.logo-bar p::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-gold);
  display: block;
  margin-bottom: 14px;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-deep);
  background: #fff;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.logo-pill:hover { border-color: var(--c-cyan); transform: translateY(-2px); }
.logo-pill svg { width: 16px; height: 16px; color: var(--c-cyan); }

/* ---------- VIBRANT SECTION ---------- */
.vibrant {
  background: linear-gradient(120deg, var(--c-lime) 0%, #b6f000 60%, var(--c-cyan) 130%);
  position: relative;
  overflow: hidden;
  color: var(--c-deep);
}
.vibrant::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(7, 27, 51, .08), transparent 60%),
    repeating-linear-gradient(120deg, transparent 0 28px, rgba(7, 27, 51, .04) 28px 29px);
  pointer-events: none;
}
.vibrant-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.vibrant h2 { color: var(--c-deep); }
.vibrant .features { display: grid; gap: 18px; }
.vibrant .feat {
  background: rgba(7, 27, 51, .08);
  border: 1px solid rgba(7, 27, 51, .12);
  border-radius: var(--r-card);
  padding: 22px 24px;
  backdrop-filter: blur(4px);
  transition: transform var(--t-mid), background var(--t-mid);
}
.vibrant .feat:hover { transform: translateY(-4px); background: rgba(7, 27, 51, .12); }
.vibrant .feat h4 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vibrant .feat h4 .num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-deep);
  color: var(--c-lime);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.vibrant .feat p { color: rgba(7, 27, 51, .82); font-size: 14.5px; line-height: 1.55; }

/* ---------- SERVICES CAROUSEL ---------- */
.car-head {
  margin-bottom: 40px;
  max-width: 600px;
}
.car-head .lead { margin-top: 18px; }

/* Nav below track */
.car-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}
.car-counter {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--c-gray);
  min-width: 52px;
  text-align: center;
}
.car-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 48px;
  border-radius: 100px;
  border: 1.5px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-deep);
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.car-btn:hover {
  background: var(--c-deep);
  color: var(--c-cyan);
  border-color: var(--c-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,16,31,.18);
}
.car-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.car-track-wrap { overflow: hidden; cursor: grab; user-select: none; }
.car-track-wrap.dragging { cursor: grabbing; }
.car-track {
  display: flex;
  gap: 20px;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.car-card {
  flex: 0 0 clamp(280px, 30vw, 380px);
  height: 440px;
  border-radius: var(--r-card-lg);
  position: relative;
  overflow: hidden;
  background: var(--c-deep);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  isolation: isolate;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.car-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(3,16,31,.35); }
.car-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg, linear-gradient(135deg, #0a2342, #071B33));
  z-index: -2;
  transition: transform var(--t-slow);
}
.car-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,27,51,.05) 0%, rgba(7,27,51,.75) 55%, rgba(7,27,51,.97) 100%);
  z-index: -1;
}
.car-card:hover::before { transform: scale(1.08); }

/* Card top row: category tag + big faded number */
.car-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.car-cat {
  font-family: var(--ff-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-cyan);
  background: rgba(25,194,255,.14);
  border: 1px solid rgba(25,194,255,.25);
  padding: 4px 11px;
  border-radius: 100px;
  line-height: 1.4;
}
.car-num-bg {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.06);
  user-select: none;
  pointer-events: none;
}

/* Card bottom content */
.car-card-bot {
  position: relative;
  z-index: 1;
}
.car-card h3 {
  color: var(--c-white);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.car-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 36ch;
}
.car-card .car-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--ff-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-white);
}
.car-card .car-cta .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--c-white);
  display: grid; place-items: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-mid);
  flex-shrink: 0;
}
.car-card:hover .car-cta .ico {
  background: var(--c-cyan);
  color: var(--c-deep);
  border-color: var(--c-cyan);
  transform: rotate(-45deg);
}

/* Gradients for cards */
.bg-grad-1 { --bg: radial-gradient(circle at 30% 30%, #133b66, #071B33 70%); }
.bg-grad-2 { --bg: radial-gradient(circle at 70% 20%, #0e6ea0, #071B33 70%); }
.bg-grad-3 { --bg: radial-gradient(circle at 20% 80%, #2a4d2a, #071B33 60%); }
.bg-grad-4 { --bg: radial-gradient(circle at 70% 70%, #6a4f1d, #071B33 70%); }
.bg-grad-5 { --bg: radial-gradient(circle at 30% 70%, #5a1c70, #071B33 70%); }
.bg-grad-6 { --bg: radial-gradient(circle at 60% 30%, #134d6e, #071B33 65%); }
.bg-grad-7 { --bg: radial-gradient(circle at 25% 25%, #b6f000, #19C2FF 110%); }
.bg-grad-7 h3 { color: var(--c-deep); }
.bg-grad-7 p { color: rgba(7, 27, 51, .8); }
.bg-grad-7 .car-cta { color: var(--c-deep); border-top-color: rgba(7,27,51,.18); }
.bg-grad-7 .car-cta .ico { background: rgba(7,27,51,.12); border-color: rgba(7,27,51,.2); color: var(--c-deep); }
.bg-grad-7:hover .car-cta .ico { background: var(--c-deep); color: var(--c-lime); border-color: var(--c-deep); }
.bg-grad-7::after { background: linear-gradient(180deg, transparent, rgba(7,27,51,.12) 90%); }
.bg-grad-7 .car-cat { color: var(--c-deep); background: rgba(7,27,51,.12); border-color: rgba(7,27,51,.2); }
.bg-grad-7 .car-num-bg { color: rgba(7,27,51,.06); }

/* ---------- ABOUT (counter + image + checklist) ---------- */
/* ---------- ABOUT — dashboard mockup layout ---------- */
.ab-about {
  display: grid;
  grid-template-columns: 220px 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

/* Left counter */
.ab-left { display: flex; flex-direction: column; }
.ab-big {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--c-deep);
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 22px 0 14px;
}
.ab-plus { color: var(--c-cyan); font-size: .55em; margin-top: .12em; }
.ab-sub { font-size: 14px; color: var(--c-gray); line-height: 1.6; }

/* Center mockup card */
.ab-mockup {
  background: #0b1f3a;
  border-radius: 20px;
  padding: 22px 22px 28px;
  position: relative;
  box-shadow: 0 40px 80px rgba(3,16,31,.28), 0 0 0 1px rgba(255,255,255,.07);
  overflow: visible;
}

/* Window traffic lights */
.ab-win { display: flex; gap: 6px; margin-bottom: 18px; }
.ab-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.ab-dot:nth-child(1) { background: #ff5f57; }
.ab-dot:nth-child(2) { background: #febc2e; }
.ab-dot:nth-child(3) { background: #28c840; }

/* Metrics row */
.ab-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.ab-metric {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 14px 12px;
}
.ab-mlabel {
  display: block;
  font-family: var(--ff-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.ab-mval {
  display: block;
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 12px;
}
.ab-metric-lime .ab-mval { color: var(--c-lime); }

/* Bar charts */
.ab-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 42px;
}
.ab-bar {
  flex: 1;
  height: var(--h);
  max-height: 100%;
  background: var(--c-cyan);
  border-radius: 2px 2px 0 0;
  opacity: .45;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s cubic-bezier(.34,1.28,.64,1);
}
.ab-bar-hi { opacity: 1; }
.ab-metric-lime .ab-bar { background: var(--c-lime); }
/* stagger bar delays */
.ab-bars .ab-bar:nth-child(1) { transition-delay: .05s; }
.ab-bars .ab-bar:nth-child(2) { transition-delay: .12s; }
.ab-bars .ab-bar:nth-child(3) { transition-delay: .19s; }
.ab-bars .ab-bar:nth-child(4) { transition-delay: .26s; }
.ab-bars .ab-bar:nth-child(5) { transition-delay: .33s; }
.ab-bars .ab-bar:nth-child(6) { transition-delay: .40s; }
.ab-bars .ab-bar:nth-child(7) { transition-delay: .47s; }
.ab-about.bars-on .ab-bar { transform: scaleY(1); }

/* Chat area */
.ab-chat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ab-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 4px 14px 14px 14px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
  align-self: flex-start;
}
.ab-msg.visible { opacity: 1; transform: none; }
.ab-msg-bot {
  background: var(--c-cyan);
  color: var(--c-deep);
  font-weight: 500;
  max-width: 92%;
}
.ab-msg-right { align-self: flex-end; border-radius: 14px 14px 4px 14px; }
.ab-msg-confirm {
  background: var(--c-lime);
  color: var(--c-deep);
  font-family: var(--ff-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 100px;
  padding: 7px 14px;
}

/* Typing indicator */
.ab-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,.07);
  border-radius: 4px 14px 14px 14px;
  width: fit-content;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.ab-typing.visible { opacity: 1; transform: none; }
.ab-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.ab-typing span:nth-child(2) { animation-delay: .2s; }
.ab-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Sparkle badge */
.ab-sparkle {
  position: absolute;
  bottom: -22px;
  right: -18px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-lime);
  color: var(--c-deep);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(212,255,0,.4);
  animation: abFloat 3.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes abFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(12deg); }
}

/* Right text */
.ab-text .check-list { margin-bottom: 28px; }

.check-list { display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--c-deep);
}
.check-list li svg { width: 20px; height: 20px; color: var(--c-cyan); flex: none; margin-top: 2px; }

/* ---------- SERVICE GRID ---------- */
.svc-head {
  text-align: center;
  margin-bottom: 50px;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.svc-head .lead { max-width: 60ch; }
.layer-label {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 36px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.layer-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 30px 28px 28px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 270px;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card);
  border-color: var(--c-cyan);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-deep), var(--c-deep-2));
  color: var(--c-cyan);
  display: grid;
  place-items: center;
  transition: background var(--t-mid);
}
.svc-card:hover .svc-ico { background: linear-gradient(135deg, var(--c-cyan), var(--c-deep)); color: var(--c-white); }
.svc-ico svg { width: 24px; height: 24px; }
.svc-card h3 {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -.015em;
}
.svc-card p {
  color: var(--c-gray);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.svc-card .arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  margin-top: 6px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-mid), border-color var(--t-fast);
}
.svc-card:hover .arrow {
  background: var(--c-deep);
  color: var(--c-cyan);
  border-color: var(--c-deep);
  transform: rotate(-45deg);
}
.svc-card .arrow svg { width: 14px; height: 14px; }

/* ---------- PAIN POINTS / DARK SECTION ---------- */
.section-dark {
  background: linear-gradient(180deg, var(--c-deep) 0%, var(--c-deep-2) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% -10%, rgba(25, 194, 255, .15), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(212, 255, 0, .08), transparent 60%);
  pointer-events: none;
}

.pain-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
  position: relative;
}
.pain-head h2 { color: var(--c-white); }
.pain-head h2 em { font-style: normal; color: var(--c-lime); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.pain-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-card);
  padding: 28px;
  transition: transform var(--t-mid), background var(--t-mid), border-color var(--t-mid);
  backdrop-filter: blur(6px);
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(25, 194, 255, .5); background: rgba(25, 194, 255, .06); }
.pain-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(25, 194, 255, .12);
  color: var(--c-cyan);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pain-card .ico svg { width: 22px; height: 22px; }
.pain-card h4 {
  color: var(--c-white);
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -.015em;
}
.pain-card p { color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.55; }

.differ-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.differ {
  background: linear-gradient(135deg, rgba(25, 194, 255, .15), rgba(7, 27, 51, .2));
  border: 1px solid var(--c-line-dark);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.differ .badge {
  width: 40px; height: 40px;
  background: var(--c-lime);
  color: var(--c-deep);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
}
.differ h5 { color: var(--c-white); font-size: 15px; }

/* ---------- ROADMAP / RESULTS ---------- */
.results-head { text-align: center; margin-bottom: 50px; position: relative; }
.results-head h2 em { font-style: normal; color: var(--c-lime); }
.results-head .lead { color: rgba(255,255,255,.75); margin-inline: auto; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.result-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-mid), border-color var(--t-mid);
}
.result-card:hover { transform: translateY(-6px); border-color: var(--c-cyan); }
.result-card .label {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-cyan);
}
.result-card h4 { color: var(--c-white); font-size: 17px; line-height: 1.15; }
.result-card .ba { display: grid; gap: 10px; font-size: 13.5px; }
.result-card .ba > div {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .75);
  line-height: 1.45;
}
.result-card .ba span.k {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--c-lime);
  flex: none;
  min-width: 50px;
}
.result-card .ba .after span.k { color: var(--c-cyan); }
.result-card .metric {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-dark);
}
.result-card .metric strong {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--c-white);
  letter-spacing: -.02em;
}
.result-card .metric small { color: rgba(255, 255, 255, .55); font-size: 12px; }

/* ---------- VIDEO IA SECTION ---------- */
.video-section {
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.video-stage {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0a2342, #071B33);
  isolation: isolate;
}
.video-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 20% 80%, rgba(25, 194, 255, .35), transparent 70%),
    radial-gradient(400px 200px at 80% 20%, rgba(212, 255, 0, .25), transparent 70%);
  z-index: -1;
}
.video-stage .play {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--c-cyan);
  color: var(--c-deep);
  display: grid; place-items: center;
  margin: auto;
  position: absolute;
  inset: 0;
  box-shadow: 0 20px 50px rgba(25, 194, 255, .35);
}
.video-stage .play::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-cyan);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.video-stage .play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-stage .tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(7, 27, 51, .7);
  backdrop-filter: blur(10px);
  color: var(--c-white);
  border: 1px solid var(--c-line-dark);
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--ff-display);
  letter-spacing: .15em;
}
.video-stage .floating-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--c-deep);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.video-stage .floating-card strong {
  font-family: var(--ff-display);
  font-size: 14px;
  display: block;
}
.video-stage .floating-card small { color: var(--c-gray); font-size: 12px; }

.video-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.video-list li {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--c-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-list li svg { width: 16px; height: 16px; color: var(--c-gold); }

/* ---------- RAG SECTION ---------- */
.rag-head { text-align: center; max-width: 740px; margin: 0 auto 56px; display: grid; gap: 18px; justify-items: center; }
.rag-quote {
  background: linear-gradient(120deg, var(--c-deep), var(--c-deep-2));
  color: var(--c-white);
  border-radius: var(--r-card-lg);
  padding: 50px 60px;
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.rag-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(212, 255, 0, .12), transparent 60%);
}
.rag-quote em { color: var(--c-lime); font-style: normal; }
.rag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rag-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t-mid), border-color var(--t-mid);
}
.rag-item:hover { transform: translateY(-4px); border-color: var(--c-cyan); }
.rag-item .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--c-cyan-soft);
  color: var(--c-cyan);
  display: grid;
  place-items: center;
}
.rag-item .ico svg { width: 22px; height: 22px; }
.rag-item h4 { font-size: 16px; }
.rag-item p { color: var(--c-gray); font-size: 14px; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.faq-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: linear-gradient(160deg, #0b1e3a 0%, #071224 100%);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.faq-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(25,194,255,.28), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.faq-chat-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-chat-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}
.faq-chat-msg.visible { opacity: 1; transform: none; }
.faq-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 6px currentColor;
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: var(--c-white);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.is-open { border-color: var(--c-cyan); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-deep);
  gap: 18px;
}
.faq-q .plus {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--c-deep);
  color: var(--c-cyan);
  display: grid; place-items: center;
  transition: transform var(--t-mid), background var(--t-mid);
  font-size: 18px;
  line-height: 1;
}
.faq-item.is-open .plus { transform: rotate(45deg); background: var(--c-cyan); color: var(--c-deep); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-mid);
}
.faq-a > div {
  padding: 0 26px 24px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- FINAL CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-2) 60%, #0e3a6a 130%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 0% 100%, rgba(212, 255, 0, .12), transparent 60%),
    radial-gradient(600px 300px at 100% 0%, rgba(25, 194, 255, .18), transparent 60%);
  z-index: -1;
}
.cta-final .container { text-align: center; display: grid; gap: 26px; justify-items: center; }
.cta-final h2 { color: var(--c-white); max-width: 18ch; }
.cta-final p { color: rgba(255, 255, 255, .72); max-width: 60ch; }
.cta-final .ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- FOOTER ---------- */
footer.site {
  background: var(--c-deep);
  color: var(--c-white);
  padding-top: 80px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--c-line-dark);
}
.foot-top .logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--c-white);
}
.foot-top .logo img {
  height: 50px;
  /* recolore a logo para o lime vibrante da marca (#D4FF00) */
  filter: brightness(0) saturate(100%) invert(94%) sepia(58%) saturate(2580%) hue-rotate(15deg) brightness(105%) contrast(102%);
}
.foot-top .logo small { font-size: 10px; letter-spacing: .35em; color: var(--c-gold); display: block; }

/* ============================================================
   SITE FOOTER — estilo editorial (referência Laurus)
   ============================================================ */
.site-foot {
  position: relative;
  background: #03101F;
  color: rgba(255, 255, 255, .82);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0 32px;
}
.site-foot-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #03101F;
}
.site-foot-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
  filter: saturate(.85);
}
.site-foot-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(25, 194, 255, .10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(212, 255, 0, .07), transparent 65%),
    linear-gradient(180deg, rgba(3, 16, 31, .85) 0%, rgba(3, 16, 31, .96) 100%);
  z-index: 1;
}
.site-foot-inner {
  position: relative;
  z-index: 2;
}

/* Top label row */
.sf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.sf-brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .25s;
}
.sf-brand::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 14px rgba(212, 255, 0, .65);
}
.sf-brand:hover { opacity: .8; }
.sf-pillar { color: rgba(255, 255, 255, .55); }

/* Giant watermark */
.sf-watermark {
  font-family: var(--ff-display);
  font-weight: 700;
  text-align: left;
  letter-spacing: -.05em;
  line-height: .85;
  font-size: clamp(120px, 28vw, 360px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  pointer-events: none;
  margin: 0 0 clamp(48px, 8vw, 96px);
  white-space: nowrap;
  overflow: hidden;
}

/* Columns grid */
.sf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.sf-col { display: flex; flex-direction: column; gap: 14px; }
.sf-h {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}
.sf-col p {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
}
.sf-col p a { color: #fff; text-decoration: none; }
.sf-col p a:hover { color: var(--c-cyan); }

.sf-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sf-link {
  color: var(--c-cyan);
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.5;
  transition: color .25s var(--ease), transform .25s var(--ease);
  display: inline-block;
}
.sf-link:hover {
  color: var(--c-lime);
  transform: translateX(3px);
}

/* Bottom row */
.sf-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.sf-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
.sf-meta:hover { color: var(--c-cyan); }
.sf-copy {
  font-family: var(--ff-display);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .04em;
  margin-left: auto;
}

/* Tablet */
@media (max-width: 960px) {
  .sf-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-watermark { font-size: clamp(96px, 26vw, 220px); }
}

/* Mobile */
@media (max-width: 600px) {
  .site-foot { padding: 56px 0 28px; }
  .sf-top { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 11.5px; margin-bottom: 32px; }
  .sf-pillar { font-size: 10.5px; }
  .sf-watermark { font-size: clamp(80px, 32vw, 160px); margin-bottom: 40px; }
  .sf-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .sf-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sf-copy { margin-left: 0; }
}

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card {
  --accent: var(--c-cyan);
  --accent-soft: rgba(25, 194, 255, .14);
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(160deg, #0E2746 0%, #071B33 65%, #051428 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card[data-accent="lime"] { --accent: var(--c-lime); --accent-soft: rgba(212, 255, 0, .14); }
.contact-card[data-accent="cyan"] { --accent: var(--c-cyan); --accent-soft: rgba(25, 194, 255, .14); }
.contact-card[data-accent="gold"] { --accent: var(--c-gold); --accent-soft: rgba(212, 175, 55, .16); }

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(360px 200px at 0% 0%, var(--accent-soft), transparent 70%);
  z-index: -1;
}
.contact-card::after {
  content: '';
  position: absolute;
  left: 0; top: 18%;
  width: 3px; height: 64%;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: .55;
  transition: height .4s var(--ease), opacity .4s var(--ease), top .4s var(--ease);
}

.contact-card .ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    color-mix(in srgb, var(--accent) 16%, #0a2342 84%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 22px -10px color-mix(in srgb, var(--accent) 55%, transparent);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card .ico svg { width: 24px; height: 24px; display: block; }

.contact-card .cc-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-card small {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}
.contact-card strong {
  font-family: var(--ff-display);
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -.01em;
  word-break: break-word;
}
.contact-card .hint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.4;
}

.contact-card .cc-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.contact-card .cc-arrow svg { width: 16px; height: 16px; }

.contact-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  box-shadow:
    0 20px 50px -20px color-mix(in srgb, var(--accent) 45%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}
.contact-card:hover::after { height: 80%; top: 10%; opacity: 1; }
.contact-card:hover .ico {
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 14px 32px -10px color-mix(in srgb, var(--accent) 70%, transparent);
}
.contact-card:hover .cc-arrow {
  transform: translateX(3px);
  background: var(--accent);
  color: var(--c-deep);
  border-color: var(--accent);
}

.foot-grid {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 40px;
}
.foot-col h5 {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
  font-weight: 600;
}
.foot-col ul li a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14.5px;
}
.foot-col ul li a:hover { color: var(--c-cyan); }
.foot-col p { color: rgba(255, 255, 255, .72); font-size: 14.5px; line-height: 1.65; }
.foot-col .nl { display: flex; gap: 8px; margin-top: 16px; }
.foot-col .nl input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--c-line-dark);
  color: var(--c-white);
  padding: 12px 16px;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 14px;
}
.foot-col .nl input::placeholder { color: rgba(255, 255, 255, .4); }
.foot-col .nl input:focus { outline: none; border-color: var(--c-cyan); }
.foot-col .nl button {
  background: var(--c-cyan);
  color: var(--c-deep);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  transition: transform var(--t-fast);
}
.foot-col .nl button:hover { transform: translateY(-2px); }

.foot-bottom {
  border-top: 1px solid var(--c-line-dark);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
}
.foot-bottom a { color: rgba(255, 255, 255, .8); }
.foot-bottom a:hover { color: var(--c-cyan); }

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-deep);
  color: var(--c-cyan);
  display: grid;
  place-items: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast);
  box-shadow: var(--sh-card);
}
.back-top.is-visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--c-cyan); color: var(--c-deep); }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }

/* ---------- SOLUTION PAGE LAYOUT ---------- */
.sol-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.sol-section.alt { grid-template-columns: 1.2fr 1fr; direction: rtl; }
.sol-section.alt > * { direction: ltr; }
.sol-card-stack { display: grid; gap: 14px; }
.stack-card {
  border: 1px solid var(--c-line);
  background: var(--c-white);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.stack-card .ico {
  width: 40px; height: 40px;
  background: var(--c-deep);
  color: var(--c-cyan);
  border-radius: 12px;
  display: grid; place-items: center;
  flex: none;
}
.stack-card .ico svg { width: 18px; height: 18px; }
.stack-card h4 { font-size: 16px; margin-bottom: 4px; }
.stack-card p { color: var(--c-gray); font-size: 13.5px; line-height: 1.5; }

.process-steps { display: grid; gap: 18px; counter-reset: step; }
.process-step {
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: var(--c-white);
  counter-increment: step;
  align-items: flex-start;
  transition: border-color var(--t-fast);
}
.process-step:hover { border-color: var(--c-cyan); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-deep);
  background: var(--c-lime);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
}
.process-step h4 { font-size: 16px; margin-bottom: 4px; }
.process-step p { color: var(--c-gray); font-size: 14px; line-height: 1.55; }

/* ---------- PORTFOLIO / CASES ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  width: fit-content;
  max-width: 100%;
}
.filter-btn {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-deep);
  transition: background var(--t-fast), color var(--t-fast);
}
.filter-btn:hover { background: rgba(7, 27, 51, .07); }
.filter-btn.is-active { background: var(--c-deep); color: var(--c-cyan); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--c-deep);
  color: var(--c-white);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  min-height: 380px;
  transition: transform var(--t-mid);
}
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg, linear-gradient(135deg, #0a2342, #071B33));
  z-index: -2;
  transition: transform var(--t-slow);
}
.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 27, 51, .9));
  z-index: -1;
}
.case-card:hover { transform: translateY(-6px); }
.case-card:hover::before { transform: scale(1.06); }
.case-card .tag {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--c-cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.case-card h3 { color: var(--c-white); font-size: 1.3rem; margin-bottom: 10px; }
.case-card p { color: rgba(255, 255, 255, .75); font-size: 13.5px; line-height: 1.55; }

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
/* ---------- Modern Contact Info Cards ---------- */
.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.ci-card {
  --accent: var(--c-cyan);
  --accent-soft: rgba(25, 194, 255, .14);
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, #0E2746 0%, #071B33 65%, #051428 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.ci-card[data-accent="lime"]  { --accent: var(--c-lime);  --accent-soft: rgba(212, 255, 0, .14); }
.ci-card[data-accent="cyan"]  { --accent: var(--c-cyan);  --accent-soft: rgba(25, 194, 255, .14); }
.ci-card[data-accent="gold"]  { --accent: var(--c-gold);  --accent-soft: rgba(212, 175, 55, .16); }

.ci-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(360px 200px at 0% 0%, var(--accent-soft), transparent 70%);
  opacity: .9;
  z-index: -1;
}
.ci-card::after {
  content: '';
  position: absolute;
  left: 0; top: 18%;
  width: 3px; height: 64%;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: .55;
  transition: height .4s var(--ease), opacity .4s var(--ease), top .4s var(--ease);
}
.ci-link {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.ci-link.is-static { cursor: default; }

.ci-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    color-mix(in srgb, var(--accent) 16%, #0a2342 84%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 22px -10px color-mix(in srgb, var(--accent) 55%, transparent);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ci-ico svg { width: 24px; height: 24px; display: block; }

.ci-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ci-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}
.ci-value {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -.01em;
  word-break: break-word;
}
.ci-hint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.4;
}

.ci-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.ci-arrow svg { width: 16px; height: 16px; }

/* Hover state (interactive cards only) */
.ci-card:has(.ci-link:not(.is-static)):hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  box-shadow:
    0 20px 50px -20px color-mix(in srgb, var(--accent) 45%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}
.ci-card:has(.ci-link:not(.is-static)):hover::after {
  height: 80%; top: 10%; opacity: 1;
}
.ci-card:has(.ci-link:not(.is-static)):hover .ci-ico {
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 14px 32px -10px color-mix(in srgb, var(--accent) 70%, transparent);
}
.ci-card:has(.ci-link:not(.is-static)):hover .ci-arrow {
  transform: translateX(3px);
  background: var(--accent);
  color: var(--c-deep);
  border-color: var(--accent);
}

@media (max-width: 480px) {
  .ci-link { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 16px; }
  .ci-ico { width: 48px; height: 48px; border-radius: 14px; }
  .ci-ico svg { width: 20px; height: 20px; }
  .ci-value { font-size: 14.5px; }
  .ci-arrow { width: 30px; height: 30px; }
}

.form-card {
  background: var(--c-deep);
  color: var(--c-white);
  border-radius: var(--r-card-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(25, 194, 255, .2), transparent 60%);
  z-index: -1;
}
.form-card h2 { color: var(--c-white); margin-bottom: 26px; font-size: 1.8rem; }
.form-card form { display: grid; gap: 16px; }
.form-card .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .65);
  font-family: var(--ff-display);
}
.form-card input,
.form-card select,
.form-card textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--c-line-dark);
  color: var(--c-white);
  padding: 14px 18px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-card input::placeholder, .form-card textarea::placeholder { color: rgba(255, 255, 255, .35); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--c-cyan); background: rgba(25, 194, 255, .08); }
.form-card select option { background: var(--c-deep); }
.form-card button[type="submit"] {
  margin-top: 8px;
  background: var(--c-cyan);
  color: var(--c-deep);
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.form-card button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(25, 194, 255, .35); }

/* ---------- TEAM / WHO PAGE ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 28px;
  transition: transform var(--t-mid), border-color var(--t-mid);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--c-cyan); }
.value-card .num {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.value-card h4 { font-size: 19px; margin-bottom: 10px; }
.value-card p { color: var(--c-gray); font-size: 14.5px; line-height: 1.6; }

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { align-items: flex-start; }
  .vibrant-inner { grid-template-columns: 1fr; gap: 40px; }
  .car-nav { justify-content: flex-start; }
  .ab-about { grid-template-columns: 1fr; gap: 36px; }
  .ab-left { flex-direction: row; align-items: center; gap: 24px; flex-wrap: wrap; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .rag-grid, .results-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .differ-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .sol-section, .sol-section.alt { grid-template-columns: 1fr; direction: ltr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-bar-inner { grid-template-columns: 1fr; }
  .pain-head { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--c-deep);
    color: var(--c-cyan);
  }
  .hero { padding: 130px 0 60px; }
  .hero-title { font-size: clamp(2rem, 10vw, 3.4rem); }
  .hero-watermark { font-size: clamp(140px, 38vw, 220px); }
  .svc-grid { grid-template-columns: 1fr; }
  .pain-grid, .rag-grid, .results-grid, .value-grid { grid-template-columns: 1fr; }
  .differ-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .form-card .row-2 { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .rag-quote { padding: 36px 26px; }
  .car-card { flex: 0 0 82vw; height: 420px; }
  .car-num-bg { font-size: 60px; }
  .hero-cards { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-title .word > span { transform: translateY(0); animation: none; }
}

/* =========================================================
   ATUALIZAÇÃO V2 — Contraste reforçado + Dinâmica Solshine
   ========================================================= */

/* Body global: contraste mais forte em textos */
body { color: var(--c-deep); background: var(--c-bg); }
.lead { color: var(--c-gray); }
.svc-card p, .stack-card p, .process-step p, .rag-item p,
.value-card p, .case-card p, .pain-card p, .feature-text p { color: var(--c-gray); }

/* CTAs com contraste reforçado */
.btn-primary { background: var(--c-cyan-bright); color: #001022; font-weight: 700; }
.btn-primary:hover { background: var(--c-cyan); box-shadow: 0 22px 60px rgba(25, 194, 255, .55); }
.btn-lime { background: var(--c-lime-bright); color: var(--c-deep); font-weight: 700; box-shadow: var(--sh-glow-lime-strong); }
.btn-dark { background: var(--c-deep); }
.eyebrow { color: var(--c-deep); font-weight: 700; }

/* ---------- NAVBAR (mais opaca + contraste) ---------- */
.nav {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(3, 16, 31, .1);
  box-shadow: 0 12px 36px rgba(3, 16, 31, .12);
}
.nav-wrap.is-scrolled .nav { box-shadow: 0 20px 50px rgba(3, 16, 31, .18); }
.nav-link { color: var(--c-deep); font-weight: 500; }
.nav-link:hover { background: rgba(3, 16, 31, .06); }

/* ---------- HERO V2: vídeo BG + overlays de contraste ---------- */
.hero-bg::before {
  background:
    radial-gradient(1200px 600px at 75% 10%, rgba(25, 194, 255, .22), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(212, 255, 0, .13), transparent 60%);
}
.hero-bg::after {
  background: linear-gradient(
    170deg,
    rgba(3, 12, 28, .80) 0%,
    rgba(4, 16, 36, .85) 45%,
    rgba(3, 10, 22, .95) 100%
  );
}
.hero-watermark { -webkit-text-stroke: 1.5px rgba(25, 194, 255, .12); }
.hero-title .row em { text-shadow: 0 0 60px rgba(212, 255, 0, .5); }

/* Spotlight dot que segue scroll no hero */
.hero-spotlight {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,194,255,.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  top: 20%; right: 10%;
  animation: spotlight-drift 18s ease-in-out infinite;
}
@keyframes spotlight-drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-80px, 60px); }
  66% { transform: translate(80px, -40px); }
}

/* ---------- GIANT OUTLINE MARQUEE (signature Solshine) ---------- */
.giant-marquee {
  background: var(--c-deep);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.giant-marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 50% 50%, rgba(25,194,255,.18), transparent 60%);
  z-index: -1;
}
.giant-marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 26s linear infinite;
  align-items: center;
}
.giant-marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.giant-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(64px, 11vw, 160px);
  line-height: .9;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .35);
}
.giant-text.filled { -webkit-text-stroke: 0; color: var(--c-lime); }
.giant-text.solid-white { -webkit-text-stroke: 0; color: rgba(255, 255, 255, .96); }
.giant-text.solid-cyan { -webkit-text-stroke: 0; color: var(--c-cyan); }
.giant-marquee .dot {
  width: 22px; height: 22px;
  background: var(--c-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(212, 255, 0, .15);
  flex: none;
}

/* Marquee reverso/segundo nível */
.giant-marquee.is-reverse .giant-marquee-track { animation-direction: reverse; }

/* ---------- STATS TILES (ref Katalin: lime tile destaque) ---------- */
.stats-band {
  background: var(--c-white);
  padding: clamp(60px, 7vw, 100px) 0;
  position: relative;
}
.stats-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 44px;
}
.stats-head h2 em { color: var(--c-cyan); font-style: normal; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-tile {
  border-radius: 22px;
  padding: 28px 26px 24px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.stat-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-card); }
.stat-tile .badge-dot {
  width: 26px; height: 26px;
  background: var(--c-deep);
  border-radius: 50%;
  display: grid; place-items: center;
}
.stat-tile .badge-dot::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--c-lime);
  border-radius: 50%;
}
.stat-tile .big {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 84px);
  line-height: .9;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--c-deep);
}
.stat-tile .label {
  font-size: 14.5px;
  color: var(--c-gray);
  font-weight: 500;
}
.stat-tile.is-lime {
  background: var(--c-lime);
  border-color: var(--c-lime);
  box-shadow: var(--sh-glow-lime);
}
.stat-tile.is-lime .big,
.stat-tile.is-lime .label { color: var(--c-deep); }
.stat-tile.is-lime .badge-dot { background: var(--c-deep); }
.stat-tile.is-deep {
  background: var(--c-deep);
  border-color: var(--c-deep);
}
.stat-tile.is-deep .big { color: var(--c-white); }
.stat-tile.is-deep .label { color: rgba(255,255,255,.7); }
.stat-tile.is-deep .badge-dot { background: var(--c-cyan); }
.stat-tile.is-deep .badge-dot::after { background: var(--c-deep); }
.stat-tile.is-cyan {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  box-shadow: var(--sh-glow-cyan);
}
.stat-tile.is-cyan .big,
.stat-tile.is-cyan .label { color: var(--c-deep); }

/* Decorativa: linha curva conectora */
.stat-tile::before {
  content: '';
  position: absolute;
  inset: auto -20px -30px auto;
  width: 90px; height: 90px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}

/* ---------- TICKER STRIP (banda inclinada Solshine) ---------- */
.ticker-strip {
  background: var(--c-lime);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1.5deg);
  margin: -10px 0;
  border-block: 2px solid var(--c-deep);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(212,255,0,.25);
}
.ticker-strip .marquee-track {
  font-size: 18px;
  color: var(--c-deep);
  font-weight: 700;
  letter-spacing: -.01em;
}
.ticker-strip .marquee-dot { background: var(--c-deep); }

/* ---------- CARD TILT (3D) ---------- */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform .35s var(--ease);
  will-change: transform;
}
[data-tilt]:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0); }

/* ---------- FLOATING DOT BADGE (Solshine) ---------- */
.float-dot {
  position: absolute;
  width: 96px; height: 96px;
  background: var(--c-lime);
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--sh-glow-lime-strong);
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-lime));
  z-index: 200;
  transition: width .1s linear;
  box-shadow: 0 0 14px rgba(25, 194, 255, .5);
}

/* ---------- ABOUT enhancement: counter mais imponente ---------- */
.ab-big { letter-spacing: -.06em; }

/* ---------- SVC CARD V2: contraste + arrow always visible ---------- */
.svc-card {
  background: var(--c-white);
  border-color: var(--c-line);
  border-width: 1.5px;
}
.svc-card h3 { color: var(--c-deep); font-weight: 700; }
.svc-card:hover {
  border-color: var(--c-deep);
  box-shadow: 0 24px 60px rgba(3, 16, 31, .18);
}
.svc-card::before { background: var(--c-lime); height: 4px; }
.svc-card .arrow { border-width: 1.5px; }

/* ---------- CAR CARD V2: contraste reforçado ---------- */
.car-card p { color: rgba(255,255,255,.88); }

/* ---------- PAIN/RESULTS CARDS V2: contraste ---------- */
.pain-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.pain-card h4 { color: var(--c-white); font-weight: 700; }
.pain-card p { color: rgba(255,255,255,.78); }
.result-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.result-card .ba > div { color: rgba(255,255,255,.85); }

/* ---------- VIBRANT V2: textura + contraste interno ---------- */
.vibrant .feat {
  background: rgba(3, 16, 31, .07);
  border-color: rgba(3, 16, 31, .15);
}
.vibrant .feat p { color: rgba(3, 16, 31, .9); font-weight: 500; }

/* ---------- FAQ V2: contraste pergunta ---------- */
.faq-q { color: var(--c-deep); font-weight: 600; }
.faq-a > div { color: var(--c-gray); }

/* ---------- LOGO BAR V2: contraste pills ---------- */
.logo-pill {
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  color: var(--c-deep);
  font-weight: 600;
}
.logo-pill:hover { background: var(--c-deep); color: var(--c-cyan); border-color: var(--c-deep); }
.logo-pill:hover svg { color: var(--c-lime); }

/* ---------- MOUSE-FOLLOW BLOB (decorativo) ---------- */
.cursor-blob {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,194,255,.10), transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform .3s ease-out;
  mix-blend-mode: screen;
  opacity: 0;
}
.cursor-blob.is-on { opacity: 1; }
@media (hover: none) { .cursor-blob { display: none; } }

/* ---------- DECORATIVE CORNER LINES (premium detail) ---------- */
.corner-deco {
  position: absolute;
  width: 60px; height: 60px;
  pointer-events: none;
}
.corner-deco::before,
.corner-deco::after {
  content: '';
  position: absolute;
  background: var(--c-gold);
}
.corner-deco::before { inset: 0 auto auto 0; width: 30px; height: 1px; }
.corner-deco::after { inset: 0 auto auto 0; width: 1px; height: 30px; }
.corner-deco.tr { inset: 24px 24px auto auto; transform: scaleX(-1); }
.corner-deco.bl { inset: auto auto 24px 24px; transform: scaleY(-1); }
.corner-deco.br { inset: auto 24px 24px auto; transform: scale(-1, -1); }

/* ---------- VERTICAL TYPE LABEL (Solshine accent) ---------- */
.v-label {
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-gray-2);
  font-weight: 600;
}

/* ---------- SPOTLIGHT REVEAL on hover (premium pricing-style) ---------- */
.spot-card {
  position: relative;
  overflow: hidden;
}
.spot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(25, 194, 255, .15), transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.spot-card:hover::after { opacity: 1; }

/* ---------- ANIMATED NUMBER GLOW ---------- */
@keyframes number-pulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 40px rgba(212, 255, 0, .6); }
}
.glow-number { animation: number-pulse 3s ease-in-out infinite; }

/* ---------- TILT CARD (3D mouse-follow) ---------- */
.tilt-card { transform-style: preserve-3d; transition: transform .25s var(--ease); }

/* ---------- VIDEO STAGE PLAY: contraste glow ---------- */
.video-stage .play {
  box-shadow: 0 24px 60px rgba(25,194,255,.55), 0 0 0 4px rgba(255,255,255,.1);
}

/* ---------- HERO CARDS V2: vidro mais opaco ---------- */
.hero-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
  font-weight: 500;
}
.hero-card svg { color: var(--c-cyan); }
.hero-card.is-lime svg { color: var(--c-lime); }

/* ---------- SECTION ACCENT DIVIDERS ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 0 auto;
  max-width: 80%;
  opacity: .4;
}

/* ---------- BIG ROTATING TAG (Solshine signature) ---------- */
.rotating-tag {
  width: 140px; height: 140px;
  position: relative;
  display: grid;
  place-items: center;
}
.rotating-tag svg { width: 100%; height: 100%; animation: rotate 14s linear infinite; }
.rotating-tag svg text {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  fill: var(--c-deep);
}
.rotating-tag.is-light svg text { fill: var(--c-white); }
.rotating-tag .core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--c-lime);
  color: var(--c-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.rotating-tag .core svg {
  width: 22px; height: 22px;
  animation: none;
}

/* ---------- HOVER LIFT for case-cards ---------- */
.case-card:hover { box-shadow: var(--sh-card-strong); }

/* ---------- VIBRANT V2: glow more intense ---------- */
.vibrant::before {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(3, 16, 31, .12), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(3, 16, 31, .1), transparent 60%),
    repeating-linear-gradient(120deg, transparent 0 28px, rgba(3, 16, 31, .04) 28px 29px);
}

/* ---------- SPOTLIGHT TEXT REVEAL ---------- */
.text-reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.text-reveal-mask > span {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal-up .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

/* ---------- ABOUT VISUAL V2: orbit lines ---------- */
.about-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 194, 255, .15), transparent 60%),
    linear-gradient(145deg, var(--c-deep-glow), var(--c-deep));
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(255, 255, 255, .12);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 30s linear infinite reverse;
}

/* ---------- CTA FINAL V2: glow ---------- */
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(212, 255, 0, .12), transparent 70%);
  z-index: -1;
}

/* ---------- IMPROVED RESPONSIVE for new components ---------- */
@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-head { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; }
  .ticker-strip .marquee-track { font-size: 15px; }
  .giant-text { font-size: clamp(48px, 14vw, 90px); }
}

/* ---------- Section with video background ---------- */
.section.has-video-bg { position: relative; overflow: hidden; isolation: isolate; }
.section.has-video-bg > .container { position: relative; z-index: 2; }
.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--c-deep);
}
.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(25, 194, 255, .15), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(212, 255, 0, .10), transparent 60%);
  z-index: 1;
}
.section-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 12, 28, .85) 0%,
    rgba(4, 16, 36, .90) 50%,
    rgba(3, 10, 22, .95) 100%
  );
  z-index: 2;
}

/* ============================================================
   SPACING POLISH — auditoria de espaçamentos (aplicado por último)
   Objetivo: rítmica vertical consistente, gaps padronizados,
   melhores margens entre eyebrow → título → lead → CTAs.
   ============================================================ */

/* 1. Eyebrow → título: respiro consistente em todos os cabeçalhos */
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + .h-display,
.eyebrow + .h-section,
.eyebrow + .h-sub {
  margin-top: var(--sp-5);
}

/* 2. Título → parágrafo/lead em headers de seção */
.h-section + p,
.h-display + p,
.h-sub + p,
.h-section + .lead,
.h-display + .lead,
.h-sub + .lead {
  margin-top: var(--stack-base);
}

/* 3. results-head e blocos centrais: margem inferior consistente */
.results-head { margin-bottom: var(--sp-8) !important; }
.results-head .eyebrow + h2,
.results-head .eyebrow + .h-section {
  margin-top: var(--sp-5) !important;
}
.results-head h2 + p,
.results-head .h-section + p {
  margin-top: var(--stack-base);
  margin-inline: auto;
}

/* 4. CTA blocks: gap padrão e respiro acima */
.hero-ctas,
.ctas,
.cta-final .ctas {
  display: flex;
  gap: var(--stack-base);
  flex-wrap: wrap;
}
.hero-sub + .hero-ctas {
  margin-top: var(--sp-7);
}
.lead + .ctas,
p + .ctas,
.h-display + .ctas {
  margin-top: var(--sp-7);
}

/* 5. Cards grids: gap padronizado */
.results-grid,
.svc-grid,
.foot-grid,
.contact-cards,
.hero-cards {
  gap: var(--gap-grid);
}

/* 6. Hero: respiro entre title → sub → CTAs */
.hero-title + .hero-sub { margin-top: var(--sp-6); }
.hero-sub { max-width: 58ch; }

/* 7. Cards: padding interno e rítmica de conteúdo */
.result-card,
.svc-card,
.spot-card,
.contact-card,
.hero-card {
  padding: clamp(20px, 2vw, 26px);
}
.result-card h4,
.svc-card h4,
.spot-card h4,
.contact-card h4 { margin-top: var(--stack-tight); }
.result-card p,
.svc-card p,
.spot-card p { margin-top: var(--stack-tight); }

/* 8. Label/eyebrow dentro de card: respiro após */
.result-card .label,
.spot-card .label {
  display: inline-block;
  margin-bottom: var(--stack-tight);
}

/* 9. Antes/Depois: respiro consistente */
.result-card .ba,
.spot-card .ba {
  margin-top: var(--stack-base);
  display: grid;
  gap: var(--stack-tight);
}
.result-card .metric,
.spot-card .metric {
  margin-top: var(--stack-loose);
  padding-top: var(--stack-base);
  border-top: 1px solid var(--c-line-dark);
}

/* 10. Footer: rítmica entre blocos */
.foot-top { padding-block: var(--sp-9) var(--sp-7); }
.foot-grid { padding-block: var(--sp-7); }
.foot-col h5 { margin-bottom: var(--stack-base); }
.foot-col ul li + li { margin-top: var(--sp-2); }

/* 11. Contact cards (CTA Final): respiro entre ícone, label e título */
.contact-card .icon,
.contact-card svg:first-child { margin-bottom: var(--stack-base); }
.contact-card h4,
.contact-card .h-sub { margin-top: var(--stack-tight); }

/* 12. Breadcrumb → título da hero (sub-páginas) */
.breadcrumb { margin-bottom: var(--sp-5); }
.breadcrumb + .eyebrow { margin-bottom: var(--sp-4); }

/* 13. Sections empilhadas: garantir que herdam --section-y mesmo com bg inline */
section.section[style*="background"] { padding-block: var(--section-y); }

/* 14. Listas dentro de cards/seções: rítmica entre itens */
.svc-card ul li + li,
.spot-card ul li + li,
.result-card ul li + li { margin-top: var(--sp-2); }

/* 15. Mobile: reduzir respiros para não esticar telas pequenas */
@media (max-width: 720px) {
  :root { --section-y: clamp(56px, 12vw, 90px); }
  .hero-ctas, .ctas { gap: var(--stack-tight); }
  .results-head { margin-bottom: var(--sp-7) !important; }
  .hero-title + .hero-sub { margin-top: var(--sp-5); }
  .hero-sub + .hero-ctas { margin-top: var(--sp-6); }
}

/* 16. Texto longo: respiro consistente entre parágrafos */
.section p + p { margin-top: var(--stack-base); }

/* 17. Botões em grupo: alinhamento vertical em mobile */
.btn { line-height: 1.2; }

/* 18. Corrigir alinhamento da seção "CTA Final" — centralizar com respiro */
.cta-final .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--stack-base);
}
.cta-final .eyebrow { margin-bottom: var(--sp-2); }
.cta-final .h-display { max-width: 22ch; }
.cta-final p { max-width: 62ch; margin-inline: auto; }
.cta-final .ctas { margin-top: var(--sp-6); justify-content: center; }

/* ============================================================
   SECTION DIVIDERS (home) — transição entre seções
   Linha gradiente cyan→lime→cyan com glow + fade luminoso
   no topo de cada seção sequencial.
   ============================================================ */
body.home .section,
body.home header.hero {
  position: relative;
}

/* Linha de divisão com glow no topo de cada seção (exceto a primeira após hero) */
body.home .section + .section::before,
body.home header.hero + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(82%, 1000px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(25, 194, 255, .35) 25%,
    rgba(212, 255, 0, .55) 50%,
    rgba(25, 194, 255, .35) 75%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Glow suave acima da linha (halo) */
body.home .section + .section::after,
body.home header.hero + .section::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 720px);
  height: 80px;
  background: radial-gradient(
    ellipse at top,
    rgba(25, 194, 255, .18) 0%,
    rgba(212, 255, 0, .08) 35%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: 2;
  pointer-events: none;
}

/* Garante que conteúdo das seções fique acima do divisor */
body.home .section > .container,
body.home .section > * { position: relative; z-index: 4; }

/* Não aplicar divisor em seções com fundo de vídeo (já têm contraste forte) */
body.home .section.has-video-bg::before,
body.home .section.has-video-bg::after {
  z-index: 5;
  pointer-events: none;
}

/* Mobile: divisor mais compacto */
@media (max-width: 720px) {
  body.home .section + .section::before,
  body.home header.hero + .section::before { width: 70%; }
  body.home .section + .section::after,
  body.home header.hero + .section::after { width: 80%; height: 60px; }
}

/* ---------- Card carousel: background image variant ---------- */
.car-card.has-card-img::before {
  background:
    var(--card-img) right center / cover no-repeat,
    var(--bg, linear-gradient(135deg, #0a2342, #071B33));
}
.car-card.has-card-img::after {
  background: linear-gradient(
    180deg,
    rgba(3, 16, 31, .15) 0%,
    rgba(3, 16, 31, .55) 55%,
    rgba(3, 16, 31, .95) 100%
  );
}
.car-card.has-card-img .car-num-bg { color: rgba(255, 255, 255, .12); }
.car-card.has-card-img h3,
.car-card.has-card-img p,
.car-card.has-card-img .car-cta { color: var(--c-white); }

/* ---------- CTA Final: hover motion mais expressivo ---------- */
.cta-final .container { z-index: 5; }
.cta-final .ctas { position: relative; z-index: 6; }
.cta-final .ctas .btn {
  position: relative;
  overflow: hidden;
  z-index: 7;
  pointer-events: auto;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease);
}
.cta-final .ctas .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.cta-final .ctas .btn:hover::before {
  transform: translateX(120%);
}
.cta-final .ctas .btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 22px 55px rgba(25, 194, 255, .55),
    0 0 0 4px rgba(25, 194, 255, .15);
}
.cta-final .ctas .btn-lime:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 22px 55px rgba(212, 255, 0, .55),
    0 0 0 4px rgba(212, 255, 0, .18);
}
.cta-final .ctas .btn:hover .btn-arrow {
  transform: translateX(4px) rotate(-45deg);
  transition: transform .35s var(--ease);
}

/* ---------- FAQ visual: animação de conversa contínua ---------- */
.faq-visual { overflow: hidden; }
.faq-chat-inner.is-animated .faq-chat-msg {
  opacity: 0;
  transform: translateY(14px);
  animation: faq-msg-cycle 12s ease-in-out infinite;
}
.faq-chat-inner.is-animated .faq-chat-msg:nth-child(1) { animation-delay: 0s; }
.faq-chat-inner.is-animated .faq-chat-msg:nth-child(2) { animation-delay: 2.4s; }
.faq-chat-inner.is-animated .faq-chat-msg:nth-child(3) { animation-delay: 4.8s; }
.faq-chat-inner.is-animated .faq-chat-msg:nth-child(4) { animation-delay: 7.2s; }
.faq-chat-inner.is-animated .faq-chat-msg:nth-child(5) { animation-delay: 9.6s; }

@keyframes faq-msg-cycle {
  0%, 100% { opacity: 0; transform: translateY(14px) scale(.96); }
  8%       { opacity: 1; transform: translateY(0) scale(1); }
  85%      { opacity: 1; transform: translateY(0) scale(1); }
  95%      { opacity: 0; transform: translateY(-8px) scale(.98); }
}

/* typing dot pulse */
.faq-chat-inner.is-animated .faq-dot {
  animation: faq-dot-pulse 1.6s ease-in-out infinite;
}
@keyframes faq-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px currentColor; transform: scale(1); }
  50%      { box-shadow: 0 0 14px currentColor, 0 0 22px currentColor; transform: scale(1.18); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-chat-inner.is-animated .faq-chat-msg,
  .faq-chat-inner.is-animated .faq-dot { animation: none; opacity: 1; transform: none; }
}

/* ---------- Video stage com vídeo de fundo ---------- */
.video-stage.has-video .stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.video-stage.has-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 16, 31, .15) 0%,
    rgba(3, 16, 31, .25) 50%,
    rgba(3, 16, 31, .70) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.video-stage.has-video .tag,
.video-stage.has-video .play,
.video-stage.has-video .floating-card {
  position: absolute;
  z-index: 2;
}
.video-stage.has-video .play {
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video-stage.has-video .play:hover {
  transform: scale(1.08);
  box-shadow: 0 26px 60px rgba(25, 194, 255, .55);
}

/* Play button states */
.video-stage.has-video.is-playing .play svg { display: none; }
.video-stage.has-video.is-playing .play::after {
  content: '';
  width: 18px;
  height: 22px;
  border-left: 5px solid var(--c-deep);
  border-right: 5px solid var(--c-deep);
}
.video-stage.has-video .play { display: grid; place-items: center; }

/* ============================================================
   MOBILE-FIRST POLISH — responsividade completa
   Breakpoints: 480 (phone), 640 (large phone), 900 (tablet)
   ============================================================ */

/* ---------- TABLET (<= 900px) ---------- */
@media (max-width: 900px) {
  :root {
    --section-y: clamp(56px, 10vw, 96px);
    --container: 100%;
  }
  .container { padding-inline: 20px; }

  .h-display { font-size: clamp(1.9rem, 7vw, 3rem); line-height: 1.06; }
  .h-section { font-size: clamp(1.55rem, 5.5vw, 2.4rem); line-height: 1.1; }
  .h-sub { font-size: clamp(1.2rem, 4vw, 1.7rem); }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); line-height: 1.06; }
  .lead { font-size: clamp(.95rem, 2.4vw, 1.05rem); }

  .hero { padding: 100px 0 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-side { display: none; }
  .hero-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-tagline { padding: 12px 14px; gap: 12px; }
  .hero-watermark { font-size: clamp(120px, 30vw, 200px); opacity: .06; }

  .btn { padding: 14px 20px; font-size: 14.5px; min-height: 48px; }
  .btn .btn-arrow { width: 30px; height: 30px; }

  .hero-ctas, .ctas, .cta-final .ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hero-ctas .btn, .ctas .btn, .cta-final .ctas .btn {
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }

  .svc-grid, .pain-grid, .rag-grid, .results-grid, .value-grid,
  .differ-grid, .case-grid, .video-grid, .faq-grid, .contact-grid,
  .sol-section, .sol-section.alt {
    grid-template-columns: 1fr !important;
  }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-cards { grid-template-columns: 1fr; gap: 12px; }

  .svc-card, .result-card, .spot-card, .pain-card, .case-card,
  .value-card, .feature-card, .stack-card, .contact-card,
  .differ-card, .rag-item, .process-step {
    padding: 22px 20px;
  }

  body.home .section + .section::before,
  body.home header.hero + .section::before { width: 60%; }
  body.home .section + .section::after,
  body.home header.hero + .section::after { width: 75%; height: 50px; }

  .car-card { flex: 0 0 85vw; max-width: 360px; height: auto; min-height: 380px; }
  .car-num-bg { font-size: 56px; }
  .car-nav { gap: 8px; }

  .video-stage { aspect-ratio: 1/1; }

  .marquee-track, .ticker-strip .marquee-track {
    font-size: 14px;
    gap: 18px;
  }
  .giant-text { font-size: clamp(36px, 12vw, 70px); }

  .foot-top { padding: 40px 0 28px; }
  .foot-top .logo img { height: 42px; }

  .form-card { padding: 26px 20px; }
  .form-card .row-2 { grid-template-columns: 1fr; gap: 0; }
  .form-card label { font-size: 13.5px; }
  .form-card input, .form-card select, .form-card textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
  }

  .faq-visual { height: 320px; padding: 20px; }
  .faq-chat-msg { font-size: 13px; padding: 12px 14px; }
  .faq-item .faq-q { padding: 18px 18px; font-size: 14.5px; min-height: 56px; }

  .breadcrumb { font-size: 12px; flex-wrap: wrap; }

  /* Faixas estáticas no mobile (ticker amarelo, marquee escura e marquees gigantes AUTOMAÇÃO/ESCALA) */
  .marquee-track,
  .ticker-strip .marquee-track,
  .giant-marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .video-stage .play::before { animation-duration: 3.6s; }
  .ab-typing span { animation-duration: 1.8s; }
  .hero-card:nth-child(odd) { animation-duration: 10s; }
  .hero-card:nth-child(even) { animation-duration: 11s; }
  .float-dot { animation-duration: 7s; }
  .glow-number { animation-duration: 4.5s; }
  .faq-dot { animation-duration: 2.4s; }
}

/* ---------- LARGE PHONE (<= 640px) ---------- */
@media (max-width: 640px) {
  :root {
    --section-y: clamp(48px, 11vw, 80px);
  }
  .container { padding-inline: 18px; }

  .hero { padding: 90px 0 48px; }
  .hero-title { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .h-display { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .h-section { font-size: clamp(1.4rem, 6.5vw, 2rem); }

  .results-head h2 + p { font-size: .95rem; }

  .car-card { flex: 0 0 88vw; min-height: 360px; padding: 22px; }
  .car-card h3 { font-size: 1.15rem; }
  .car-card p { font-size: .9rem; }

  .navbar { padding: 12px 0; }
  .nav-shell { padding: 8px 12px 8px 18px; gap: 8px; }
  .nav-logo img { height: 28px; }
  .nav-logo div { font-size: 14px; }
  .nav-logo small { font-size: 8px; }

  .hero-cards { grid-template-columns: 1fr; gap: 8px; }
  .hero-card { padding: 12px 14px; font-size: 13px; }

  .foot-grid { grid-template-columns: 1fr; gap: 22px; }
  .foot-col h5 { font-size: 14px; }
  .foot-col p, .foot-col ul li a { font-size: 14px; }

  .cta-final .h-display { max-width: 100%; }
  .cta-final p { font-size: .95rem; }

  .process-step { padding: 18px; }
  .process-step h4 { font-size: 1rem; }

  .result-card .ba, .spot-card .ba { font-size: .85rem; }

  body.home .section + .section::before,
  body.home header.hero + .section::before { width: 55%; }
}

/* ---------- PHONE (<= 480px) ---------- */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }

  .hero { padding: 84px 0 40px; }
  .hero-title { font-size: clamp(1.55rem, 8.5vw, 2.1rem); letter-spacing: -.02em; line-height: 1.08; }
  .hero-title .row { display: inline; }
  .hero-title .row + .row::before { content: ' '; }
  .hero-sub { font-size: .95rem; max-width: 100%; }

  .h-display { font-size: clamp(1.6rem, 9vw, 2.1rem); }
  .h-section { font-size: clamp(1.3rem, 7vw, 1.8rem); }
  .lead { font-size: .92rem; }

  .btn {
    padding: 13px 18px;
    font-size: 14px;
    min-height: 48px;
    white-space: normal;
    line-height: 1.25;
  }
  .btn .btn-arrow { width: 28px; height: 28px; flex: none; }

  .svc-card, .result-card, .spot-card, .pain-card, .case-card,
  .value-card, .feature-card, .stack-card, .contact-card,
  .differ-card, .rag-item, .process-step {
    padding: 18px 16px;
  }

  .eyebrow { font-size: 10.5px; padding: 6px 12px; letter-spacing: .18em; }

  .marquee-track, .ticker-strip .marquee-track { font-size: 12.5px; }

  .faq-visual { height: 280px; padding: 16px; border-radius: 16px; }
  .faq-chat-msg { font-size: 12.5px; padding: 11px 12px; gap: 10px; }
  .faq-item .faq-q { padding: 16px 14px; font-size: 14px; }

  .form-card { padding: 22px 16px; border-radius: 18px; }
  .form-card h2 { font-size: 1.2rem; }

  .foot-top .logo img { height: 36px; }
  .foot-top .logo div { font-size: 20px; }

  .cta-final .container { padding-inline: 16px; }

  .car-card { flex: 0 0 90vw; min-height: 340px; padding: 20px; }
  .car-card h3 { font-size: 1.05rem; }
  .car-num-bg { font-size: 48px; right: 16px; top: 16px; }
  .car-cat { padding: 5px 10px; font-size: 10px; }

  .video-stage { aspect-ratio: 4/5; border-radius: 18px; }
  .video-stage .play { width: 70px; height: 70px; }
  .video-stage .play svg { width: 22px; height: 22px; }
  .video-stage .tag { padding: 6px 12px; font-size: 10.5px; }
  .video-stage .floating-card { padding: 14px 16px; left: 14px; right: 14px; bottom: 14px; gap: 10px; }
  .video-stage .floating-card strong { font-size: 13.5px; }
  .video-stage .floating-card small { font-size: 11px; }

  .hero-watermark { display: none; }

  body { -webkit-text-size-adjust: 100%; }
}

/* ---------- TOUCH-FRIENDLY ---------- */
@media (hover: none) and (pointer: coarse) {
  a, button, .faq-q, .btn, .car-cta, .nav-link {
    min-height: 44px;
  }
  .btn:hover, .svc-card:hover, .car-card:hover, .result-card:hover,
  .spot-card:hover, .contact-card:hover {
    transform: none;
  }
}

/* ---------- LANDSCAPE PHONE ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 80px 0 32px; min-height: auto; }
  .hero-title { font-size: 1.6rem; }
  .hero-watermark { display: none; }
}

/* ---------- IMAGENS RESPONSIVAS ---------- */
img, video { max-width: 100%; height: auto; }

/* ============================================================
   QUEM SOMOS — fix layout, contagem e rotor circular
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 360px) minmax(280px, 1.4fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.about-counter .big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: clamp(72px, 11vw, 144px);
  line-height: 1;
  font-weight: 700;
  color: var(--c-deep);
  letter-spacing: -.04em;
}
.about-counter .big .plus { color: var(--c-cyan); font-size: .55em; }
.about-counter p { color: var(--c-gray); max-width: 30ch; margin-top: 16px; }

.about-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 194, 255, .18), transparent 60%),
    linear-gradient(145deg, var(--c-deep-glow), var(--c-deep));
  isolation: isolate;
  overflow: hidden;
}
.about-visual > img {
  width: 38%;
  height: auto;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, .45));
  position: relative;
  z-index: 2;
}
.about-visual .rotor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: rotate 30s linear infinite;
}
.about-visual .rotor circle {
  fill: none;
  stroke: rgba(255, 255, 255, .18);
}
.about-visual .rotor text {
  fill: var(--c-lime);
  font-family: var(--ff-display);
  font-size: 9px;
  letter-spacing: .35em;
  font-weight: 600;
  text-transform: uppercase;
}
.about-visual::after {
  inset: 10%;
  border: 1px dashed rgba(255, 255, 255, .14);
  z-index: 0;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-counter p { margin-inline: auto; }
  .about-visual { max-width: 280px; }
}
