/* =========================
   VARIABLES
========================= */

:root {
  --blue: #0d4eb8;
  --blue2: #1767e5;
  --navy: #09245a;
  --ink: #0d1425;
  --muted: #667085;
  --line: #e7ebf2;
  --soft: #f5f8fc;
  --white: #fff;
  --glass: rgba(255, 255, 255, .78);
  --shadow: 0 24px 80px rgba(17, 34, 68, .12);
}


/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}


/* =========================
   HEADER / NAVBAR
========================= */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: .35s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 235, 242, .9);
  box-shadow: 0 10px 40px rgba(9, 36, 90, .06);
}

.header.scrolled .nav-link {
  color: #1f2a44;
}

.header.scrolled .nav-link:hover {
  color: var(--blue2);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 168px;
  display: block;
  transition: filter .3s ease, opacity .3s ease;
  
}

/* Logo branco no topo, sobre fundo escuro */
.header:not(.scrolled) .brand img {
  filter: brightness(0) invert(1);
}

/* Logo original depois do scroll */
.header.scrolled .brand img {
  filter: none;
}

/* Páginas internas de fundo claro mantêm o logo original */
.internal-page .header:not(.scrolled) .brand img {
  filter: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-item {
  position: relative;
  padding: 32px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f2a44;
}

.nav-link {
  opacity: .92;
  color: rgba(255,255,255,.92);
  transition: color .3s ease, opacity .3s ease;
}

.nav-link:hover {
  opacity: 1;
  color: #ffffff;
}

.nav-home{
    color: rgba(255,255,255,.92);
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.nav-home:hover{
    color:#fff;
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(13, 20, 37, .18);
}

.nav-cta:hover {
  background: var(--blue2);
}

.hamb {
  display: none;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 26px rgba(9, 36, 90, .08);
}

.hamb span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: #14213d;
}


/* =========================
   MEGA MENU
========================= */

.mega {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 650px;
  padding: 18px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(231, 235, 242, .95);
  border-radius: 28px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: .25s ease;
}

.nav-item:hover .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.mega-card {
  padding: 18px;
  border: 1px solid rgba(231, 235, 242, .8);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  transition: .25s;
}

.mega-card:hover {
  transform: translateY(-4px);
  border-color: #bdd3ff;
  box-shadow: 0 16px 36px rgba(23, 103, 229, .12);
}

.mega-card b {
  display: block;
  margin-bottom: 8px;
  color: #0b2e73;
}

.mega-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 142px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbff 0%, #fff 72%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .30) 12%,
    rgba(255, 255, 255, .15) 36%,
    rgba(255, 255, 255, .0) 100%
  );
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(12px);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29c27f;
  box-shadow: 0 0 0 6px rgba(41, 194, 127, .12);
}

h1 {
  margin: 22px 0;
  color: #08142b;
  font-size: clamp(42px, 6.7vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
}

.grad {
  background: linear-gradient(135deg, #09245a, #1767e5 65%, #78aefb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: linear-gradient(135deg, #0d4eb8, #1767e5);
  color: #fff;
  box-shadow: 0 20px 50px rgba(23, 103, 229, .28);
}

.secondary {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(12px);
  border-color: var(--line);
  color: #10213d;
}


/* =========================
   SERVER ART / VISUAL CARD
========================= */

.visual {
  position: relative;
  min-height: 520px;
}

.server-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 235, 242, .9);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(245, 248, 252, .72));
  box-shadow: var(--shadow);
}

.server-art {
  position: absolute;
  inset: 40px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b1630, #0e347e);
}

.server-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(115, 170, 255, .75), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
}

.rack {
  position: absolute;
  top: 70px;
  bottom: 70px;
  width: 90px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, .04);
}

.rack.r1 {
  left: 54px;
}

.rack.r2 {
  left: 170px;
}

.rack.r3 {
  right: 64px;
}

.rack i {
  display: block;
  height: 12px;
  margin: 14px 13px;
  border-radius: 10px;
  background: rgba(173, 210, 255, .72);
  box-shadow: 0 0 20px rgba(115, 170, 255, .55);
  animation: pulse 2.4s ease-in-out infinite;
}

.rack i:nth-child(2n) {
  width: 55%;
}

.rack i:nth-child(3n) {
  animation-delay: .7s;
}

@keyframes pulse {
  50% {
    opacity: .4;
  }
}

.floating {
  position: absolute;
  left: -26px;
  bottom: 34px;
  max-width: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(9, 36, 90, .14);
}

.floating b {
  color: var(--blue);
  font-size: 34px;
}

.floating p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}


/* =========================
   SECTIONS
========================= */

section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
}

.title {
  max-width: 750px;
  margin-bottom: 46px;
}

.kicker {
  color: var(--blue2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}


/* =========================
   CARDS
========================= */

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

.card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 16px 45px rgba(9, 36, 90, .06);
  transition: .28s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #c7dbff;
  box-shadow: 0 26px 70px rgba(9, 36, 90, .12);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 24px;
}

.card h3 {
  margin: 26px 0 10px;
  font-size: 23px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}


/* =========================
   ECOSSISTEMA / NUMBERS
========================= */

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

.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.num {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 16px 45px rgba(9, 36, 90, .06);
}

.num b {
  display: block;
  color: var(--navy);
  font-size: 42px;
}

.num span {
  color: var(--muted);
}


/* =========================
   LOGOS / TECHNOLOGIES
========================= */

.logos {
  padding: 70px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.logos-title {
  margin: 0 0 32px;
  color: #7b8794;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  animation: marquee 30s linear infinite;
}

.track span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 120px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: #374151;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 30px rgba(9, 36, 90, .05);
  transition: .3s;
}

.track span:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 103, 229, .10);
}

.track img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================
   CTA
========================= */

.cta {
  padding: 96px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 38px;
  background: linear-gradient(135deg, #09245a, #1767e5);
  color: white;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
}

.cta-box > * {
  position: relative;
}

.cta-box p {
  color: #dbe8ff;
  font-size: 18px;
  line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: #667085;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer img {
  width: 150px;
}


/* =========================
   ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .8s ease;
}

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


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hamb {
    display: block;
  }

  .menu {
    display: none;
    position: fixed;
    top: 84px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

  .menu.active {
    display: flex;
  }

  .nav-item {
    padding: 10px 0;
  }

  .menu .nav-link {
    color: #1f2a44;
  }

  .menu .nav-link:hover {
    color: var(--blue2);
  }
  
  .mega {
    position: static;
    top: auto;
    left: auto;
    display: none;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    padding: 12px;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    box-shadow: none;
  }

  .nav-item:hover .mega {
    transform: none !important;
  }

  .nav-item.open .mega {
    display: block;
  }

  .mega-card {
    width: 100%;
    max-width: 100%;
  }

  .mega-card:hover {
    transform: none;
  }

  .mega-grid,
  .hero-grid,
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .visual {
    min-height: 430px;
  }

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

  .brand img {
    width: 142px;
  }

  .nav-cta {
    display: inline-flex;
    width: max-content;
  }

  .server-art {
    inset: 24px;
  }

  .rack {
    width: 80px;
  }

  .rack.r2 {
    display: none;
  }

  .rack.r3 {
    right: 40px;
  }

  .menu .nav-home{
    color:#1f2a44;
    padding:10px 0;
    font-weight:700;
  }

  .menu .nav-home:hover{
      color:var(--blue2);
  }

  .menu .nav-link,
    .menu .nav-home{

        color:#1f2a44;

    }

    .menu .nav-link:hover,
    .menu .nav-home:hover{

        color:var(--blue2);

    }

}

@media (max-width: 540px) {
  .hero {
    padding-top: 120px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .visual {
    min-height: 360px;
  }

  .rack {
    top: 55px;
    bottom: 55px;
  }

  .floating {
    left: 14px;
    right: 14px;
    max-width: none;
  }

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

  .cta-box {
    padding: 36px 24px;
  }

  .track span {
    min-width: 190px;
    min-height: 110px;
  }
}

/* =========================
   VISION 360 PAGE
========================= */

.v360-hero {
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(23,103,229,.14), transparent 36%),
    linear-gradient(135deg, #f8fbff 0%, #fff 52%, #eef6ff 100%);
}

.v360-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.v360-hero-text p {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.v360-hero-card img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 100px rgba(9,36,90,.18);
}

.v360-section {
  padding: 104px 0;
}

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

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

.v360-card,
.v360-steps div,
.v360-client-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 45px rgba(9,36,90,.06);
  transition: .28s ease;
}

.v360-card {
  min-height: 280px;
  padding: 30px;
}

.v360-card:hover,
.v360-steps div:hover,
.v360-client-logo:hover {
  transform: translateY(-6px);
  border-color: #c7dbff;
  box-shadow: 0 26px 70px rgba(9,36,90,.12);
}

.v360-card p,
.v360-steps p {
  color: var(--muted);
  line-height: 1.65;
}

.v360-results {
  padding: 104px 0;
  background: linear-gradient(135deg, #071631, #09245a 55%, #0d4eb8);
  color: #fff;
}

.v360-results h2,
.v360-results .kicker {
  color: #fff;
}

.v360-results p {
  color: #dbe8ff;
  font-size: 18px;
  line-height: 1.75;
}

.v360-results-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.v360-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.v360-metrics div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.v360-metrics b {
  display: block;
  margin-bottom: 8px;
  color: #35c5ff;
  font-size: 42px;
}

.v360-metrics span {
  color: #dbe8ff;
  line-height: 1.5;
}

.v360-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.v360-steps div {
  padding: 24px;
}

.v360-steps span {
  color: var(--blue2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.v360-clients {
  padding: 104px 0;
  background: var(--soft);
}

.v360-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.v360-client-logo {
  min-height: 145px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v360-client-logo img {
  max-width: 160px;
  max-height: 72px;
  object-fit: contain;
}

.internal-page .nav-link{
    color:#1f2a44;
}

.internal-page .nav-link:hover{
    color:var(--blue2);
}

.internal-page .hamb span{
    background:#1f2a44;
}

@media (max-width: 900px) {
  .v360-hero-grid,
  .v360-results-grid,
  .v360-grid {
    grid-template-columns: 1fr;
  }

  .v360-steps,
  .v360-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .v360-hero {
    padding-top: 120px;
  }

  .v360-steps,
  .v360-client-grid,
  .v360-metrics {
    grid-template-columns: 1fr;
  }
}

/* =========================
   IDENTITYX PAGE
========================= */

.idx-hero {
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(104,56,216,.16), transparent 36%),
    linear-gradient(135deg, #f8fbff 0%, #fff 52%, #f1f6ff 100%);
}

.idx-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.idx-hero-text p {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.idx-hero-card img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 100px rgba(9,36,90,.18);
}

.idx-section {
  padding: 104px 0;
}

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

.idx-card,
.idx-steps div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 45px rgba(9,36,90,.06);
  transition: .28s ease;
}

.idx-card {
  min-height: 280px;
  padding: 30px;
}

.idx-card:hover,
.idx-steps div:hover {
  transform: translateY(-6px);
  border-color: #c7dbff;
  box-shadow: 0 26px 70px rgba(9,36,90,.12);
}

.idx-card p,
.idx-steps p {
  color: var(--muted);
  line-height: 1.65;
}

.idx-process {
  padding: 104px 0;
  background: var(--soft);
}

.idx-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.idx-steps div {
  padding: 22px;
}

.idx-steps span {
  color: var(--blue2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.idx-results {
  padding: 104px 0;
  background: linear-gradient(135deg, #071631, #2b155d 55%, #1767e5);
  color: #fff;
}

.idx-results h2,
.idx-results .kicker {
  color: #fff;
}

.idx-results p {
  color: #dbe8ff;
  font-size: 18px;
  line-height: 1.75;
}

.idx-results-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.idx-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.idx-metrics div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.idx-metrics b {
  display: block;
  margin-bottom: 8px;
  color: #35c5ff;
  font-size: 42px;
}

.idx-metrics span {
  color: #dbe8ff;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .idx-hero-grid,
  .idx-results-grid,
  .idx-grid {
    grid-template-columns: 1fr;
  }

  .idx-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .idx-hero {
    padding-top: 120px;
  }

  .idx-steps,
  .idx-metrics {
    grid-template-columns: 1fr;
  }
}

/* =========================
   VISION 360 - LIGHT PURPLE
========================= */

:root {
  --v360-purple: #5b2be0;
  --v360-purple2: #7c3cff;
  --v360-purple3: #a855f7;
  --v360-blue: #0ea5ff;
  --v360-dark: #160b35;
  --v360-soft: #f7f3ff;
  --v360-line: #e6dcff;
}

.v360-light .kicker {
  color: var(--v360-purple);
}

.v360l-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  background: #fff;
}

.v360l-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.30) 100%),
    url("../assets/images/vision360-cidade-bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.v360l-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #fff);
  z-index: 1;
}

.v360l-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.v360l-hero-text h1 {
  max-width: 720px;
  color: var(--v360-dark);
}

.v360l-hero-text h1 strong,
.v360l-hero-text h1 span {
  color: var(--v360-purple);
}

.v360l-hero-text p {
  max-width: 610px;
  color: #5f6472;
  font-size: 20px;
  line-height: 1.75;
}

.v360l-phone {
  display: flex;
  justify-content: center;
}

.v360l-phone img {
  width: min(420px, 88%);
  filter: drop-shadow(0 34px 60px rgba(79, 39, 180, .28));
  transform: rotate(3deg);
}

.v360l-strip {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid var(--v360-line);
  border-bottom: 1px solid var(--v360-line);
}

.v360l-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.v360l-strip-grid div {
  padding: 20px;
  border-radius: 22px;
  background: var(--v360-soft);
  text-align: center;
}

.v360l-strip-grid strong {
  display: block;
  color: var(--v360-purple);
  font-size: 32px;
}

.v360l-strip-grid span {
  color: #667085;
  font-weight: 700;
}

.v360l-section {
  padding: 104px 0;
  background: #fff;
}

.v360l-soft {
  background: linear-gradient(180deg, #fff, var(--v360-soft));
}

.v360l-showcase {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.v360l-copy p {
  color: #667085;
  font-size: 18px;
  line-height: 1.75;
}

.v360l-copy ul {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.v360l-copy li {
  margin: 12px 0;
  color: #344054;
  font-weight: 700;
}

.v360l-copy li::before {
  content: "âœ“";
  color: var(--v360-purple);
  margin-right: 10px;
}

.v360l-app-card {
  padding: 14px;
  border: 1px solid var(--v360-line);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(91,43,224,.14);
}

.v360l-app-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.v360l-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.v360l-benefits article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--v360-line);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 45px rgba(91,43,224,.08);
  transition: .28s ease;
}

.v360l-benefits article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(91,43,224,.14);
}

.v360l-benefits p {
  color: #667085;
  line-height: 1.65;
}

.v360l-laptop-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at top right, rgba(124,60,255,.16), transparent 38%),
    linear-gradient(135deg, #f9f7ff, #fff);
}

.v360l-laptop-box {
  padding: 44px;
  border: 1px solid var(--v360-line);
  border-radius: 36px;
  background: #fff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(91,43,224,.12);
}

.v360l-laptop-box p {
  color: #667085;
  font-size: 18px;
}

.v360l-laptop-box img {
  width: 100%;
  display: block;
  margin-top: 30px;
  border-radius: 26px;
}

.v360-light .primary {
  background: linear-gradient(135deg, var(--v360-purple), var(--v360-purple2), var(--v360-blue));
}

@media (max-width: 900px) {
  .v360l-hero-grid,
  .v360l-showcase {
    grid-template-columns: 1fr;
  }

  .v360l-strip-grid,
  .v360l-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .v360l-hero-bg {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.80)),
      url("../assets/images/vision360-cidade-bg.jpg") center / cover no-repeat;
  }
}

@media (max-width: 540px) {
  .v360l-hero {
    padding-top: 120px;
  }

  .v360l-strip-grid,
  .v360l-benefits {
    grid-template-columns: 1fr;
  }

  .v360l-laptop-box {
    padding: 24px;
  }
}

/* =========================
   VISION 360 LIGHT PAGE
========================= */

.v360-light-page {
  background: #ffffff;
}

.v360-light-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  background: #f8f5ff;
}

.v360-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/vision360-cidade-bg.jpeg");
  background-size: cover;
  background-position: center;
  opacity: .30;
}

.v360-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(123, 69, 255, .28), transparent 34%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .86) 46%,
      rgba(255, 255, 255, .62) 100%
    );
}

.v360-light-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.v360-light-copy {
  max-width: 670px;
}

.v360-badge {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(124, 58, 237, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #6d28d9;
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.v360-light-copy h1 {
  margin: 22px 0;
  max-width: 760px;
  color: #111827;
  font-size: clamp(44px, 6.6vw, 86px);
  line-height: .96;
  letter-spacing: -.065em;
}

.v360-light-copy p {
  max-width: 620px;
  color: #5b6473;
  font-size: 20px;
  line-height: 1.75;
}

.v360-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.v360-phone-wrap img {
  width: min(440px, 90%);
  display: block;
  border-radius: 34px;
  box-shadow:
    0 40px 110px rgba(91, 33, 182, .22),
    0 18px 50px rgba(15, 23, 42, .12);
  transform: rotate(2deg);
}

.v360-light-section {
  padding: 110px 0;
  background: #fff;
}

.v360-showcase {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.v360-showcase-text p,
.v360-platform-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.v360-showcase-image img,
.v360-platform-image img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
}

.v360-feature-band {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, .10), transparent 30%),
    linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.v360-light-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.v360-light-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid #eadfff;
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 45px rgba(91, 33, 182, .06);
  transition: .28s ease;
}

.v360-light-card:hover {
  transform: translateY(-7px);
  border-color: #c4b5fd;
  box-shadow: 0 28px 70px rgba(91, 33, 182, .12);
}

.v360-light-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.v360-light-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 23px;
}

.v360-light-card p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.v360-platform-section {
  padding: 110px 0;
  background: #ffffff;
}

.v360-platform-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.v360-mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.v360-mini-list div {
  padding: 16px 18px;
  border: 1px solid #eadfff;
  border-radius: 18px;
  background: #fbf8ff;
  color: #4b5563;
  font-weight: 700;
}

.v360-light-clients {
  padding: 110px 0;
  background: #faf7ff;
}

.v360-final-light {
  padding: 90px 0 110px;
  background: #fff;
}

.v360-final-box {
  padding: 64px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, #5b21b6, #7c3aed 48%, #2563eb);
  color: #fff;
  overflow: hidden;
}

.v360-final-box h2 {
  max-width: 760px;
  color: #fff;
}

.v360-final-box p {
  max-width: 680px;
  color: #ede9fe;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .v360-light-hero-grid,
  .v360-showcase,
  .v360-platform-grid {
    grid-template-columns: 1fr;
  }

  .v360-light-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .v360-phone-wrap {
    justify-content: flex-start;
  }

  .v360-phone-wrap img {
    width: min(360px, 86%);
  }
}

@media (max-width: 540px) {
  .v360-light-hero {
    padding-top: 122px;
  }

  .v360-light-cards,
  .v360-mini-list {
    grid-template-columns: 1fr;
  }

  .v360-final-box {
    padding: 38px 24px;
  }
}

.idx-platform {
  padding: 100px 0;
  background:
    radial-gradient(circle at center, rgba(139,77,255,.18), transparent 36%),
    linear-gradient(135deg, #080b2a, #160b3d 55%, #090719);
  color: #fff;
}

.idx-platform-head {
  text-align: center;
  margin-bottom: 54px;
}

.idx-platform-head h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 56px);
}

.idx-platform-head p {
  margin-top: 24px;
  color: #d9ddff;
  font-size: 28px;
}

.idx-platform-head span {
  color: #8b4dff;
  font-weight: 900;
}

.idx-platform-grid {
  display: grid;
  grid-template-columns: .75fr 1.5fr .75fr;
  gap: 34px;
  align-items: center;
}

.idx-platform-points {
  display: grid;
  gap: 38px;
}

.idx-platform-points div {
  text-align: center;
}

.idx-platform-points strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.idx-platform-points p {
  margin: 0;
  color: #d9ddff;
  line-height: 1.65;
}

.idx-platform-image {
  text-align: center;
}

.idx-platform-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 35px 100px rgba(0,0,0,.38);
}

.idx-platform-image small {
  display: block;
  margin-top: 18px;
  color: #d9ddff;
  font-size: 16px;
}

.idx-platform-action {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .idx-platform-grid {
    grid-template-columns: 1fr;
  }
}