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

:root {
  --navy:   #0d1f3c;
  --navy2:  #142a52;
  --green:  #3dd68c;
  --green2: #2bbf78;
  --white:  #ffffff;
  --mint:   #f0f7f4;
  --gray:   #6b7280;
  --gray2:  #e5e7eb;
  --text:   #1a2537;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.18);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hide-mobile { display: inline; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--green {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}
.btn--green:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,214,140,.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline-light:hover { border-color: var(--green); color: var(--green); }

.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--xl { padding: 16px 36px; font-size: 1.05rem; border-radius: 10px; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}

.navbar__logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.logo-mvse { color: var(--white); }
.logo-sol  { color: var(--green); margin-left: 2px; }

.navbar__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.navbar__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--green); }

.navbar__cta { margin-left: 16px; padding: 9px 20px; font-size: 0.88rem; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61,214,140,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(61,214,140,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 38vw, 480px);
  height: clamp(260px, 38vw, 480px);
  object-fit: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 40px rgba(61,214,140,0.4));
}
@media (max-width: 768px) {
  .hero__watermark { opacity: 0.14; right: -60px; }
}

.hero__badge {
  display: inline-block;
  background: rgba(61,214,140,0.15);
  color: var(--green);
  border: 1px solid rgba(61,214,140,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__highlight {
  color: var(--green);
  position: relative;
}

.hero__target-pills {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero__target-sep {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
}

.hero__title .hero__target-pill,
.hero__title .hero__target-pill:visited {
  display: inline-block;
  background: transparent;
  color: var(--green) !important;
  border: 2px solid var(--green);
  padding: 4px 22px;
  border-radius: 100px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.hero__title .hero__target-pill:hover {
  background: var(--green);
  color: var(--navy) !important;
  box-shadow: 0 0 24px rgba(61,214,140,0.5);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__emphasis {
  color: var(--green);
  font-weight: 700;
}

.hero__segments-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  cursor: pointer;
}

.pill:hover {
  background: rgba(61,214,140,0.15);
  border-color: rgba(61,214,140,0.4);
  color: var(--green);
  transform: translateY(-2px);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--green);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}

@keyframes scroll-dot {
  0%   { top: 5px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ===========================
   STATS
=========================== */
.stats {
  background: var(--green);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stats__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.stats__num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: inline;
}

.stats__suffix {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: inline;
}

.stats__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(13,31,60,0.7);
  margin-top: 6px;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(61,214,140,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--dark {
  color: var(--green);
  background: rgba(61,214,140,0.15);
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--navy);
}

.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.6); }

.section-header p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   SOLUTIONS
=========================== */
.solutions {
  padding: 100px 0;
  background: var(--mint);
}

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

.sol-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
  transition: all var(--transition);
  overflow: hidden;
}

.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,214,140,0.3);
}

.sol-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(13,31,60,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.sol-card__icon svg { width: 32px; height: 32px; }

.sol-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sol-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.sol-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sol-card ul li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ===========================
   PRODUCTS GALLERY
=========================== */
.products {
  padding: 80px 0;
  background: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

.prod-item__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--gray2);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.prod-item:hover .prod-item__img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.prod-item__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.prod-item__desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ===========================
   SEGMENTS
=========================== */
.segments {
  padding: 100px 0;
  background: var(--navy);
}

.segments__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.seg-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.seg-tab:hover {
  border-color: rgba(61,214,140,0.4);
  color: rgba(255,255,255,0.9);
}

.seg-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
  font-weight: 700;
}

.seg-panel { display: none; }
.seg-panel.active { display: block; animation: fadeIn 0.3s ease; }

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

.seg-panel__content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.seg-panel__text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.seg-panel__text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.seg-panel__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.seg-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.seg-item__icon {
  width: 24px;
  height: 24px;
  background: rgba(61,214,140,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: var(--green);
}

.seg-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.seg-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.seg-panel__visual {
  border-radius: 16px;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.seg-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.75), rgba(13,31,60,0.5));
  border-radius: 16px;
}

.seg-visual-card {
  text-align: center;
  color: var(--white);
  padding: 32px;
  position: relative;
  z-index: 1;
}

.seg-visual-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.seg-visual-card strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.seg-visual-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* ===========================
   DIFFERENTIALS
=========================== */
.differentials {
  padding: 100px 0;
  background: var(--white);
}

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

.diff-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray2);
  transition: all var(--transition);
}

.diff-card:hover {
  border-color: rgba(61,214,140,0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--navy);
}

.diff-card__icon svg { width: 100%; height: 100%; }

.diff-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===========================
   SOL-CARD BADGE
=========================== */
.sol-card__img {
  width: calc(100% + 72px);
  margin: -36px -36px 24px -36px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.sol-card__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sol-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green2);
  background: rgba(61,214,140,0.1);
  border: 1px solid rgba(61,214,140,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

/* ===========================
   PROMO SLIDER
=========================== */
.promo-slider {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.promo-viewport { overflow: hidden; }

.promo-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.promo-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.promo-slide__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promo-slide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-slide__tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 14px;
}

.promo-slide__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.promo-slide__title span { color: var(--green); }

.promo-slide__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.promo-gfx {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
}
.promo-ring--1 { width: 160px; height: 160px; animation: ring-pulse 3s ease infinite; }
.promo-ring--2 { width: 240px; height: 240px; animation: ring-pulse 3s ease .8s infinite; }
.promo-ring--3 { width: 320px; height: 320px; animation: ring-pulse 3s ease 1.6s infinite; }

@keyframes ring-pulse {
  0%,100% { opacity: .3; }
  50%      { opacity: .08; }
}

.promo-gfx__icon {
  font-size: 3.4rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 24px currentColor);
}

.promo-gfx__items {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-gfx__items span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}

.promo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.promo-btn svg { width: 18px; height: 18px; }
.promo-btn:hover { background: var(--green); border-color: var(--green); color: var(--navy); }
.promo-btn--prev { left: 16px; }
.promo-btn--next { right: 16px; }

.promo-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.promo-dot.active { width: 24px; background: var(--green); }

@media (max-width: 640px) {
  .promo-slide__inner { grid-template-columns: 1fr; }
  .promo-slide__right { display: none; }
  .promo-btn { display: none; }
}

.promo-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.promo-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-img-tags {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.promo-img-tags span {
  background: rgba(13,31,60,.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}

/* ===========================
   MATRIZ DE SOLUÇÕES
=========================== */
.sol-matrix {
  padding: 80px 0;
  background: var(--white);
}

.matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.matrix-table thead tr { background: var(--navy); }

.matrix-table thead th {
  padding: 14px 10px;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-right: 1px solid rgba(255,255,255,.08);
}

.matrix-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
  min-width: 230px;
  color: var(--green);
}

.seg-emoji {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.matrix-table tbody tr {
  border-bottom: 1px solid #f0f1f3;
  transition: background var(--transition);
}

.matrix-table tbody tr:hover { background: var(--mint); }
.matrix-table tbody tr:last-child { border-bottom: none; }

.matrix-td-row {
  padding: 16px 20px;
}

.matrix-td-row strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.matrix-td-row small {
  font-size: .74rem;
  color: var(--gray);
}

.matrix-table tbody td {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid #f0f1f3;
}

.mx-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.mx--p { background: var(--green); box-shadow: 0 0 8px rgba(61,214,140,.4); }
.mx--s { background: rgba(61,214,140,.25); border: 2px solid var(--green); }
.mx--m { background: transparent; border: 2px solid var(--gray2); }

/* mcard grid (replaces matrix-table) */
.mcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .mcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mcard-grid { grid-template-columns: 1fr; } }

.mcard {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 12px rgba(13,31,60,.07);
  transition: all .25s;
}
.mcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13,31,60,.13);
  border-color: rgba(61,214,140,.35);
}
.mcard__head {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0d1f3c, #142a52);
}
.mcard__icon { font-size: 1.8rem; flex-shrink: 0; }
.mcard__head h4 { color: #fff; font-size: 1rem; font-weight: 800; margin: 0; }
.mcard__brands {
  padding: 10px 20px;
  font-size: .75rem;
  color: #6b7280;
  background: #f8f9fb;
  border-bottom: 1px solid #e5e7eb;
  line-height: 1.5;
}
.mcard__segs {
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mseg {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.mseg--p { background: rgba(61,214,140,.12); color: #0d1f3c; border: 1px solid rgba(61,214,140,.4); }
.mseg--s { background: transparent; color: #6b7280; border: 1px solid #d1d5db; }

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works {
  padding: 80px 0;
  background: var(--mint);
}

.hiw__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hiw-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.hiw-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(61,214,140,0.18);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.hiw-step__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.hiw-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.hiw__arrow {
  flex-shrink: 0;
  margin-top: 52px;
  color: var(--green);
  opacity: 0.4;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 0 8px;
}

.hiw__cta {
  text-align: center;
}

@media (max-width: 640px) {
  .hiw__arrow { display: none; }
  .hiw-step { min-width: 160px; padding: 0 12px; margin-bottom: 32px; }
}

/* ===========================
   FINANCING
=========================== */
.financing {
  padding: 80px 0;
  background: var(--navy);
}

.financing__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.financing__text .section-tag { color: var(--green); background: rgba(61,214,140,0.15); }

.financing__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.financing__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.financing__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fin-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.fin-item:hover {
  border-color: rgba(61,214,140,0.3);
  background: rgba(61,214,140,0.05);
}

.fin-item__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.fin-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fin-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .financing__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .financing__options { grid-template-columns: 1fr; }
}

/* ===========================
   BRANDS
=========================== */
.brands {
  background: #f8f9fb;
  padding: 56px 0;
  text-align: center;
}

.brands__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 28px;
}

.brands__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.brand-badge {
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: 12px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(13,31,60,0.07);
}

.brand-badge:hover {
  border-color: rgba(61,214,140,0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13,31,60,0.12);
}

.brand-badge span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: all var(--transition);
}

.brand-badge:hover span { color: var(--navy); }

.brands__more {
  color: #9ca3af;
  font-size: 0.82rem;
  margin-top: 20px;
}

/* ===========================
   ORÇAMENTO SECTION
=========================== */
.orcamento-section {
  position: relative;
  background: linear-gradient(160deg, #080f1e 0%, #0d1f3c 55%, #0a1628 100%);
  padding: 100px 0 110px;
  overflow: hidden;
}

.orc-bg-glow {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,214,140,.13) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Header --- */
.orc-header { text-align: center; margin-bottom: 56px; }
.orc-header .section-tag {
  display: inline-block;
  background: rgba(61,214,140,.12);
  color: #3dd68c;
  border: 1px solid rgba(61,214,140,.25);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.orc-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.orc-header p { font-size: .97rem; color: rgba(255,255,255,.55); }
.orc-header strong { color: rgba(255,255,255,.85); }

/* --- Layout --- */
.orc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .orc-layout { grid-template-columns: 1fr; }
}

/* --- Form card --- */
.orc-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
}
@media (max-width: 600px) { .orc-form { padding: 24px 20px; } }

.orc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .orc-row { grid-template-columns: 1fr; } }

.orc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.orc-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.orc-field label svg { color: #3dd68c; flex-shrink: 0; }

.orc-req { color: #ef4444; font-size: .85em; margin-left: 1px; }
.orc-opt { color: #9ca3af; font-size: .85em; font-weight: 500; text-transform: none; letter-spacing: 0; margin-left: 2px; }

.orc-field input,
.orc-field textarea {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .94rem;
  color: #111827;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: inherit;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}
.orc-field input::placeholder,
.orc-field textarea::placeholder { color: #9ca3af; }
.orc-field input:focus,
.orc-field textarea:focus {
  border-color: #3dd68c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61,214,140,.12);
}

/* Custom select */
.orc-select-wrap { position: relative; }
.orc-select-wrap select {
  width: 100%;
  appearance: none;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 40px 11px 14px;
  font-size: .94rem;
  color: #111827;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.orc-select-wrap select:focus {
  border-color: #3dd68c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61,214,140,.12);
}
.orc-chevron {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

/* Submit button */
.orc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #3dd68c, #2bb574);
  color: #0a1628;
  font-size: .97rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  letter-spacing: .01em;
  box-shadow: 0 4px 18px rgba(61,214,140,.35);
}
.orc-btn:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(61,214,140,.45); }
.orc-btn:active { transform: translateY(0); }
.orc-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.orc-btn__text,
.orc-btn__loading { display: flex; align-items: center; gap: 8px; }

@keyframes orc-spin { to { transform: rotate(360deg); } }
.orc-spinner { animation: orc-spin .8s linear infinite; }

.orc-msg {
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

.orc-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  font-size: .76rem;
  color: #9ca3af;
}
.orc-privacy svg { flex-shrink: 0; }

/* --- Sidebar --- */
.orc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.orc-steps {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
}
.orc-steps__title {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.orc-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.orc-step:last-child { margin-bottom: 0; }
.orc-step__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3dd68c, #2bb574);
  color: #0a1628;
  font-size: .82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orc-step__body { display: flex; flex-direction: column; gap: 3px; padding-top: 4px; }
.orc-step__body strong { font-size: .9rem; color: #fff; font-weight: 700; }
.orc-step__body span { font-size: .8rem; color: rgba(255,255,255,.45); }

.orc-guarantees {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.orc-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.orc-guarantee svg { flex-shrink: 0; }

.orc-divider {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  padding: 0 8px;
}
.orc-divider::before,
.orc-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(255,255,255,.12);
}
.orc-divider::before { left: 0; }
.orc-divider::after { right: 0; }

.orc-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  font-size: .93rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.orc-wa-btn:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,.4); }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: var(--navy2);
  padding: 100px 0;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-section__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section__text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-section__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.info-item svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-section__tel {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.cta-section__tel a {
  color: var(--green);
  font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo-mvse,
.footer__brand .logo-sol {
  font-size: 1.4rem;
  font-weight: 800;
}

.footer__brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer__social a:hover { background: var(--green); color: var(--navy); }
.footer__social svg { width: 16px; height: 16px; }

.footer__links h5,
.footer__contact h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--green); }

.footer__contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer__contact a { color: var(--green); }
.footer__hours { color: rgba(255,255,255,0.35) !important; font-size: 0.82rem !important; }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: pulse-wpp 2s ease infinite;
}

@keyframes pulse-wpp {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0; }
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .solutions__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .seg-panel__content { grid-template-columns: 1fr; }
  .seg-panel__visual { height: 180px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 640px) {
  .hide-mobile { display: none; }

  .navbar__links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar__links.open { display: flex; }
  .navbar__links a { padding: 10px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar.scrolled .navbar__hamburger span { background: var(--white); }

  .hero__title { font-size: 1.9rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .solutions__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .segments__tabs { gap: 6px; }
  .seg-tab { font-size: 0.8rem; padding: 8px 14px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .cta-section__actions { width: 100%; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
