/* ===========================
   TOKENS / RESET
=========================== */
:root {
  --blue-main: #009ef7;
  --blue-dark: #0070c0;
  --blue-deeper: #003d7a;
  --blue-navy: #001830;
  --blue-soft: #e6f4fd;
  --accent-teal: #00c8ff;
  --text-dark: #0d1b2a;
  --text-body: #374151;
  --text-muted: #6b7280;
  --surface-white: #ffffff;
  --surface-light: #f7fbff;
  --border-light: #e8f0fe;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 2px 16px rgba(0, 120, 200, .07), 0 1px 4px rgba(0, 0, 0, .04);
  --shadow-up: 0 8px 32px rgba(0, 120, 200, .15), 0 2px 8px rgba(0, 0, 0, .06);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announce-bar {
  background: linear-gradient(90deg, var(--blue-deeper), var(--blue-dark));
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: .55rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 200;
}

.announce-bar a {
  color: var(--accent-teal);
  font-weight: 700;
  white-space: nowrap
}

.announce-bar a:hover {
  text-decoration: underline
}

.announce-close {
  position: absolute;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .15s;
}

.announce-close:hover {
  color: #fff
}

.announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(.8)
  }
}

/* ===========================
   NAV
=========================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 100, 200, .1)
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  letter-spacing: -.3px;
}

.logo-img {
  height: 45px;
  width: auto;
}

.footer-logo .logo-img {
  height: 60px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deeper));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

.nav-links {
  display: flex;
  gap: .15rem;
  align-items: center;
  list-style: none
}

.nav-links>li {
  position: relative
}

.nav-links>li>a {
  font-size: .855rem;
  font-weight: 500;
  color: var(--text-body);
  padding: .48rem .88rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  background: var(--blue-soft);
  color: var(--blue-dark)
}

.nav-links>li>a svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform .2s
}

.nav-links>li:hover>a svg {
  transform: rotate(180deg)
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: .6rem;
  box-shadow: 0 8px 32px rgba(0, 60, 150, .13), 0 2px 8px rgba(0, 0, 0, .06);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}

.nav-links>li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-body);
  transition: background .15s, color .15s;
}

.nav-dropdown a:hover {
  background: var(--blue-soft);
  color: var(--blue-dark)
}

.nav-dropdown a svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-main);
  flex-shrink: 0
}

.nav-dropdown .dd-name {
  flex: 1
}

.nav-dropdown .dd-badge {
  font-size: .62rem;
  font-weight: 700;
  background: rgba(245, 158, 11, .12);
  color: #92400e;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

.nav-dropdown .dd-badge.live {
  background: rgba(16, 185, 129, .12);
  color: #047857
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark)) !important;
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: .85rem !important;
  box-shadow: 0 2px 10px rgba(0, 158, 247, .3);
  transition: all .3s ease !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.nav-hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px
}

/* ===========================
   HERO CAROUSEL
=========================== */
.hero-carousel {
  position: relative;
  height: calc(100vh - 68px);
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
  background-color: var(--blue-navy);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: calc(100vh - 68px);
  min-height: 580px;
  max-height: 860px;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background-image: linear-gradient(90deg, rgba(0, 24, 48, 0.95) 0%, rgba(0, 61, 122, 0.5) 40%, rgba(0, 95, 163, 0) 100%), url('../img/slideshow/men.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--blue-navy);
}

.slide-2 {
  background-image: linear-gradient(90deg, rgba(0, 24, 48, 0.95) 0%, rgba(0, 61, 122, 0.5) 40%, rgba(0, 95, 163, 0) 100%), url('../img/slideshow/slide2.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--blue-navy);
}

.slide-3 {
  background: radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.05) 0%, #030303 60%);
  background-color: #030303;
}

/* Dot grid pattern on slides */
.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.slide-content {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.slide-text {
  color: #fff
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(0, 200, 255, .1);
  border: 1px solid rgba(0, 200, 255, .25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 1.4rem;
}

.slide-label .ldot {
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
}

.slide-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
  color: #fff;
}

.slide-text h1 em {
  font-style: normal;
  color: #fff;
}

.slide-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.slide-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  align-items: center
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: .82rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.4);
}

.btn-hero-blue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: .82rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 158, 247, 0.3);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 158, 247, 0.4);
}

.btn-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--blue-deeper);
  font-weight: 700;
  font-size: .92rem;
  padding: .82rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  padding: .82rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .28);
  transition: background .2s, transform .2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px)
}

/* Carousel Visual (right side) */
.slide-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}

.slide-visual svg {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3));
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, transform .2s;
  color: #fff;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%) scale(1.08)
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.carousel-prev {
  left: 1.5rem
}

.carousel-next {
  right: 1.5rem
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}

.c-dot {
  width: 28px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  border: none;
  transition: background .3s, width .3s;
  padding: 0;
}

.c-dot.active {
  background: #fff;
  width: 44px
}

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, .2);
  width: 100%;
}

.slide-progress-fill {
  height: 100%;
  background: var(--accent-teal);
  width: 0%;
  transition: width .1s linear;
}

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
  background: var(--blue-navy);
  padding: 0 2rem;
}

.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255, 255, 255, .08);
}

.stat-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
}

.stat-item:last-child {
  border-right: none
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-item>span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  letter-spacing: .02em
}

.stat-item .stat-accent {
  color: var(--accent-teal)
}

/* ===========================
   SISTEMAS TABS
=========================== */
.sistemas-section {
  padding: 5.5rem 2rem;
  background: var(--surface-white)
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto
}

.section-eyebrow {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: .6rem;
  display: block
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 1rem
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.75rem
}

.sys-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.sys-tabs-nav::-webkit-scrollbar {
  display: none
}

.sys-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .85rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  position: relative;
  transition: color .2s;
}

.sys-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-main);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 3px 3px 0 0;
}

.sys-tab-btn.active {
  color: var(--blue-dark);
  background: rgba(0, 158, 247, 0.08);
  border-radius: 6px 6px 0 0;
}

.sys-tab-btn.active::after {
  transform: scaleX(1)
}

.sys-tab-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 5px
}

.sys-tab-panel {
  display: none;
  animation: fadeInUp .35s ease
}

.sys-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.sys-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue-dark));
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}

.sys-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.sys-visual img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .3))
}

.sys-visual-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
  text-align: center
}

.sys-visual-sub {
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .35rem;
  position: relative;
  z-index: 1;
  text-align: center
}

.sys-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  letter-spacing: -.5px;
  margin-bottom: .6rem
}

.sys-body .sys-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 460px
}

.sys-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem
}

.sys-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-body)
}

.sys-feature svg {
  width: 17px;
  height: 17px;
  fill: var(--blue-main);
  flex-shrink: 0;
  margin-top: 2px
}

.sys-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  align-items: center
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.status-live {
  background: rgba(16, 185, 129, .1);
  color: #047857
}

.status-live .sdot {
  background: #10b981
}

.status-soon {
  background: rgba(245, 158, 11, .1);
  color: #92400e
}

.status-soon .sdot {
  background: #f59e0b
}

.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite
}

/* ===========================
   LOGO STRIP
=========================== */
.logo-strip {
  background: var(--surface-light);
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden
}

.logo-strip-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem
}

.logo-track-wrap {
  display: flex;
  overflow: hidden
}

.logo-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
  will-change: transform;
  flex-shrink: 0;
  padding-right: 3rem;
}

.logo-track-wrap:hover .logo-track {
  animation-play-state: paused
}

.logo-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  min-width: 200px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-chip img {
  height: 75px !important;
  width: auto;
  object-fit: contain;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===========================
   SOBRE / FEATURES ALT
=========================== */
.features-section {
  padding: 5.5rem 2rem;
  background: var(--surface-white)
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.feature-row:hover,
.feature-row.active {
  background: var(--blue-soft);
  border-color: rgba(0, 158, 247, .2);
  box-shadow: var(--shadow-card)
}

.feature-row.active .feat-icon {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark))
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  background: rgba(0, 158, 247, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.feat-icon svg {
  width: 21px;
  height: 21px;
  fill: var(--blue-main)
}

.feature-row.active .feat-icon svg {
  fill: #fff
}

.feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .3rem
}

.feat-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6
}

.features-visual {
  position: relative
}

.feat-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 48px rgba(0, 100, 200, .14), 0 2px 8px rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 158, 247, .1);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.feat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f4f8
}

.feat-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(0, 158, 247, .15), rgba(0, 61, 122, .1));
  display: flex;
  align-items: center;
  justify-content: center
}

.feat-card-icon svg {
  width: 21px;
  height: 21px;
  fill: var(--blue-main)
}

.feat-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark)
}

.feat-card-sub {
  font-size: .72rem;
  color: var(--text-muted)
}

.metric-row {
  display: flex;
  gap: .7rem;
  margin-bottom: 1rem
}

.metric-box {
  flex: 1;
  background: var(--surface-light);
  border-radius: 10px;
  padding: .8rem 1rem;
  border: 1px solid var(--border-light)
}

.metric-box.accent {
  background: linear-gradient(135deg, rgba(0, 158, 247, .1), rgba(0, 61, 122, .06));
  border-color: rgba(0, 158, 247, .2)
}

.metric-box .val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.5px
}

.metric-box.accent .val {
  color: var(--blue-dark)
}

.metric-box .lbl {
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500
}

.prog-row {
  margin-top: .5rem
}

.prog-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 500
}

.prog-bar {
  height: 5px;
  background: #eef2f7;
  border-radius: 100px;
  overflow: hidden
}

.prog-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-deeper))
}

.feat-float-1,
.feat-float-2 {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: .7rem .95rem;
  box-shadow: 0 4px 18px rgba(0, 100, 200, .12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  border: 1px solid rgba(0, 158, 247, .13)
}

.feat-float-1 {
  top: -18px;
  right: -20px;
  animation: float 4s ease-in-out infinite 1s
}

.feat-float-2 {
  bottom: -16px;
  left: -24px;
  animation: float 5.5s ease-in-out infinite .5s
}

.float-dot {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.float-dot svg {
  width: 14px;
  height: 14px;
  fill: #fff
}

/* ===========================
   DEPOIMENTOS
=========================== */
.testimonials {
  background: linear-gradient(155deg, var(--blue-navy) 0%, #001e4a 100%);
  padding: 5.5rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials .section-inner {
  position: relative;
  z-index: 1;
}

.testi-head {
  text-align: center;
  margin-bottom: 3rem
}

.testi-head .section-title {
  color: #fff
}

.testi-head .section-sub {
  color: rgba(255, 255, 255, .6);
  margin: 0 auto
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.testi-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem
}

.star {
  width: 14px;
  height: 14px;
  fill: #fbbf24
}

.testi-quote {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 1.5rem;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  font-family: var(--font-display);
  flex-shrink: 0
}

.testi-name {
  font-weight: 700;
  font-size: .88rem;
  color: #fff
}

.testi-role {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px
}

.mobile-swipe-arrow {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
  animation: bounce-swipe 2s infinite;
}

@keyframes bounce-swipe {

  0%,
  100% {
    transform: translate(0, -50%);
  }

  50% {
    transform: translate(10px, -50%);
  }
}

/* ===========================
   SOBRE STRIP
=========================== */
.sobre-strip {
  padding: 5.5rem 2rem;
  background: var(--surface-light)
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center
}

.sobre-text p {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 1rem
}

.about-chips {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem
}

.about-chip {
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  box-shadow: var(--shadow-card)
}

.pill-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.pill-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  transition: box-shadow .25s, transform .25s
}

.pill-card:hover {
  box-shadow: var(--shadow-up);
  transform: translateY(-3px)
}

.pill-card.span2 {
  grid-column: span 2
}

.pill-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem
}

.pill-ico svg {
  width: 19px;
  height: 19px;
  fill: #fff
}

.pill-ico.blue {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark))
}

.pill-ico.green {
  background: linear-gradient(135deg, #10b981, #059669)
}

.pill-ico.purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9)
}

.pill-ico.orange {
  background: linear-gradient(135deg, #f59e0b, #d97706)
}

.pill-card h4 {
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-display)
}

.pill-card p {
  font-size: .77rem;
  color: var(--text-muted);
  line-height: 1.5
}

/* ===========================
   CTA FINAL
=========================== */
.final-cta {
  padding: 5.5rem 2rem;
  background: #fff
}

.cta-box {
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 40%, #b91c1c 100%);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  transform: rotate(45deg);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, .04);
  border: 2px solid rgba(255, 255, 255, .08);
  border-radius: 32px;
  transform: rotate(20deg);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .85rem;
  position: relative;
  z-index: 1
}

.cta-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue-deeper);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.9rem;
  border-radius: var(--radius-md);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: background .2s, transform .2s
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px)
}

/* ===========================
   BUTTONS COMUNS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .72rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 158, 247, .35);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 158, 247, .4)
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .72rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(16, 185, 129, .35);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body)
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, .4)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: #fff;
  transition: border-color .2s, transform .2s
}

.btn-outline:hover {
  border-color: var(--blue-main);
  transform: translateY(-2px)
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, .6);
  padding: 3rem 2rem
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.footer-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand p {
  font-size: .83rem;
  line-height: 1.65;
  max-width: 260px;
  margin-top: .85rem
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff
}

.footer-logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-logo-mark svg {
  width: 15px;
  height: 15px;
  fill: #fff
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .9);
  margin-bottom: .9rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer-col ul a {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: #fff
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .77rem;
  flex-wrap: wrap;
  gap: 1rem
}

.social-links {
  display: flex;
  gap: .65rem;
  margin-right: 5.5rem; /* Evita que o botão flutuante do WhatsApp cubra o Instagram */
}

.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.social-link:hover {
  background: var(--blue-main)
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, .7)
}

.social-link:hover svg {
  fill: #fff
}

/* ===========================
   FAB WHATSAPP
=========================== */
.fab-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .2s, box-shadow .2s;
}

.fab-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .55)
}

@keyframes wa-ring {

  0%,
  85% {
    transform: rotate(0deg);
  }

  87% {
    transform: rotate(15deg);
  }

  89% {
    transform: rotate(-15deg);
  }

  91% {
    transform: rotate(15deg);
  }

  93% {
    transform: rotate(-15deg);
  }

  95%,
  100% {
    transform: rotate(0deg);
  }
}

.fab-wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  animation: wa-ring 4s infinite;
}

/* ===========================
   REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s, transform .55s
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:960px) {

  html,
  body {
    overflow-x: hidden;
  }

  .slide-content {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .slide-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .slide-actions {
    justify-content: center;
  }

  .slide-visual {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .mobile-swipe-arrow {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-visual {
    display: none;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sys-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sys-visual {
    min-height: auto;
    padding: 1.5rem;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile Menu */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 1rem;
  }

  .nav-links>li:hover .nav-dropdown,
  .nav-links>li.active .nav-dropdown {
    display: block;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media(max-width:600px) {
  .hero-carousel {
    height: auto;
    min-height: 600px;
  }

  .pill-cards {
    grid-template-columns: 1fr;
  }

  .pill-card.span2 {
    grid-column: span 1;
  }

  .final-cta .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1.5rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item strong {
    font-size: 1.75rem;
  }
}

.sys-preview-carousel {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
  padding: 8px;
}

.sys-preview-carousel::-webkit-scrollbar {
  height: 6px;
}

.sys-preview-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.sys-preview-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.sys-preview-carousel img {
  scroll-snap-align: center;
  flex: 0 0 100%;
  width: 100% !important;
  height: auto !important;
  max-height: 400px;
  border-radius: 4px;
  object-fit: contain !important;
  filter: none !important;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials .section-inner {
  position: relative;
  z-index: 1;
}

/* ===========================
   3D CUBES BACKGROUND
=========================== */
.cubes-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  perspective: 1000px;
}

.cube-wrapper {
  position: absolute;
  will-change: transform;
}

.cube-2d {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 158, 247, 0.1);
  border-radius: 12px;
  animation: spin-2d 20s infinite linear;
  will-change: transform;
}

@keyframes spin-2d {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cube-sm {
  width: 40px;
  height: 40px;
}

.cube-md {
  width: 80px;
  height: 80px;
}

.cube-lg {
  width: 140px;
  height: 140px;
}

/* ===========================
   CONTACT PAGE
=========================== */
/* PAGE HERO */
.page-hero {
  padding: 1.5rem 2rem 2.5rem;
  background: linear-gradient(160deg, #f0f8ff 0%, #e6f4fd 40%, #ffffff 80%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 158, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--blue-main);
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
  fill: var(--text-muted);
  opacity: 0.6;
}

.breadcrumb span {
  color: var(--blue-dark);
  font-weight: 600;
}

.section-tag {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: 0.75rem;
  display: block;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-deeper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CONTACT SECTION */
.contact-section {
  padding: 4.5rem 2rem 5.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* FORM CARD */
.form-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0, 120, 200, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.form-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.3px;
}

.form-card .form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(0, 158, 247, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 158, 247, 0.38);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 158, 247, 0.45);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-submit .spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn-submit.loading .spinner {
  display: inline-block;
}

.btn-submit.loading .btn-label::after {
  content: 'Por favor aguarde...';
}

.btn-submit.loading .btn-label {
  font-size: 0;
}

.btn-submit.loading .btn-label::after {
  font-size: 0.95rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-message {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.form-message.show {
  display: flex;
  animation: toastFadeIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.form-message.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

.form-message.success {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 4px solid #10b981;
  color: var(--text-dark);
}

.form-message.error {
  background: #ffffff;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-left: 4px solid #dc2626;
  color: var(--text-dark);
}

.form-message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-message.success svg {
  color: #10b981;
}

.form-message.error svg {
  color: #dc2626;
}

@keyframes toastFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* INFO CARDS */
.info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.info-card:hover {
  border-color: var(--blue-main);
  box-shadow: 0 8px 32px rgba(0, 120, 200, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.info-icon.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.info-card p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.info-card .info-extra {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* MAP */
.map-section {
  padding: 0 0 0;
  margin-top: 1rem;
}

.map-wrap {
  width: 100%;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.map-badge {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.map-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-main);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .map-section {
    padding: 0;
  }

  .page-hero {
    padding: 6rem 1.25rem 2rem;
  }

  .form-card {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   QUEM SOMOS PAGE
=========================== */
.about-section {
  padding: 5rem 2rem;
  background: var(--surface-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-image .image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 120, 200, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image .image-wrapper:hover img {
  transform: scale(1.03);
}

.about-hero-img {
  height: 550px;
}
.about-hero-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 768px) {
  .about-hero-img {
    height: 350px;
  }
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  z-index: 2;
}

.floating-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--blue-main);
}

/* MVV SECTION */
.mvv-section {
  padding: 0 2rem 5rem;
  background: var(--surface-white);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv-card {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 120, 200, 0.08);
}

.mvv-icon {
  margin-bottom: 1.5rem;
}

.mvv-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--blue-main);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.mvv-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    bottom: 20px;
    right: 20px;
  }
}

/* ========== SISTEMAS PAGE ========== */
.systems-grid-section {
  padding: 4rem 2rem 6rem;
  background: var(--bg-light);
}

.sys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.sys-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sys-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 120, 200, 0.08);
}

.sys-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sys-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.sys-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.sys-btn {
  width: 100%;
  border-radius: 8px;
  padding: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  font-size: 0.95rem;
  display: inline-block;
}

.sys-btn:hover {
  transform: translateY(-2px);
}

.sys-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-sys-green {
  background: linear-gradient(135deg, #10b981, #047857);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-sys-green:hover {
  background: linear-gradient(135deg, #059669, #064e3b);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  color: white;
}

.btn-sys-red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.btn-sys-red:hover {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
  color: white;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: 0.3s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: #475569;
  transition: 0.2s;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.req {
  color: #ef4444;
  font-weight: bold;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* ========== SYSTEM PAGES (WebNotas, WebVMI, etc) ========== */
.page-hero-sys {
  background: #09090b;
  /* Quase preto */
  padding: 8rem 2rem 7rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.page-hero-sys .hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 5rem;
}

.page-hero-sys .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-sys .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.page-hero-sys .breadcrumb svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-side-logo {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.page-hero-sys .display-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  color: #fff;
  text-align: left;
}

.page-hero-sys .hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 2.5rem;
  text-align: left;
}

.page-hero-sys .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* --- WebNotas Specific --- */
.hero-glow-orange {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.28) 0%, rgba(234, 88, 12, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-hero-white-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ea580c !important;
  font-size: 1.05rem;
  padding: 0.95rem 2.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.btn-hero-white-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* --- WebVMI Specific --- */
.hero-glow-webvmi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(70, 190, 255, 0.28) 0%, rgba(70, 190, 255, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.text-gradient-webvmi {
  background: linear-gradient(135deg, #46BEFF, #2C7FE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-hero-white-webvmi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2C7FE0 !important;
  font-size: 1.05rem;
  padding: 0.95rem 2.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.btn-hero-white-webvmi:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-sys-blue {
  background: linear-gradient(135deg, #46BEFF, #2C7FE0) !important;
  color: #ffffff !important;
  width: 100%;
  border-radius: 8px;
  padding: 0.8rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-sys-blue:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .page-hero-sys .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }

  .page-hero-sys .display-title,
  .page-hero-sys .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-sys .breadcrumb {
    justify-content: center;
  }

  .page-hero-sys .hero-actions {
    justify-content: center;
  }
}

/* Feature Grid */
.features-section {
  padding: 5rem 2rem;
  background: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card .f-icon {
  width: 60px;
  height: 60px;
  background: rgba(254, 140, 0, 0.1);
  color: #fe8c00;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-card .f-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Pricing Cards */
.pricing-section {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card.premium {
  border: 2px solid var(--blue-main);
  box-shadow: 0 12px 40px rgba(0, 120, 200, 0.12);
  transform: scale(1.02);
}

.plan-header {
  padding: 2rem;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.premium .plan-header {
  background: var(--blue-navy);
  color: white;
}

.plan-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.pricing-card.express .plan-header {
  background: linear-gradient(135deg, #fe8c00, #f83600);
  color: white;
}

.pricing-card.express .plan-header h3 {
  color: white;
}

.badge-em-breve {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.pricing-card.express .badge-em-breve {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.premium .badge-em-breve {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.pricing-card.premium .plan-header h3 {
  color: #fff !important;
}

.plan-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.plan-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.plan-features svg.check {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
}

.plan-features svg.x-icon {
  width: 20px;
  height: 20px;
  color: #ef4444;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-card.premium {
    transform: scale(1);
  }

  .page-hero-orange h1 {
    font-size: 2.2rem;
  }
}

/* --- Clientes Page --- */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-logo-light {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 100%;
  height: 200px;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo-light:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-5px) scale(1.05);
}

.client-logo-light img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: filter 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.t-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #333;
}

.author-info strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-info span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mobile-swipe-arrow {
  display: none;
}

.mobile-slider-controls {
  display: none;
}

@media (max-width: 960px) {
  .mobile-slider-controls {
    display: flex;
  }

  .mobile-swipe-arrow {
    display: flex;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--blue-main);
    animation: swipe-arrow-anim 2s infinite;
    pointer-events: none;
  }
}

@keyframes swipe-arrow-anim {

  0%,
  100% {
    transform: translate(0, -50%);
    opacity: 0.8;
  }

  50% {
    transform: translate(8px, -50%);
    opacity: 1;
  }
}

/* ===========================
   ECOSYSTEM GRAPHIC (SLIDE 3)
=========================== */
.ecosystem-graphic {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ecosystem-graphic:hover {
  transform: scale(1.05) translateY(-5px);
}

.eco-deco {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.04);
  z-index: 0;
}

.eco-deco.shape-1 {
  width: 250px;
  height: 250px;
  border-radius: 40px;
  top: -60px;
  left: -80px;
  transform: rotate(15deg);
}

.eco-deco.shape-2 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  bottom: -40px;
  right: -50px;
}

.eco-deco.shape-3 {
  width: 360px;
  height: 360px;
  border-radius: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.eco-center {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 10;
  position: relative;
  backdrop-filter: blur(10px);
}

.eco-center img {
  width: 120px;
  z-index: 2;
}

.eco-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(70, 190, 255, 0.7);
  animation: eco-pulse-anim 3s infinite;
  z-index: 1;
}

@keyframes eco-pulse-anim {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 190, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 40px rgba(70, 190, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(70, 190, 255, 0);
  }
}

.eco-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.eco-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  animation: orbit-spin 20s linear infinite;
  z-index: 5;
}

.eco-node {
  position: absolute;
  width: 86px;
  height: 86px;
  margin-top: -43px;
  margin-left: -43px;
}

.eco-node.node-1 {
  top: 0;
  left: 50%;
}

.eco-node.node-2 {
  top: 50%;
  left: 100%;
}

.eco-node.node-3 {
  top: 100%;
  left: 50%;
}

.eco-node.node-4 {
  top: 50%;
  left: 0;
}

.node-inner {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  animation: orbit-spin-reverse 20s linear infinite;
  border: none;
}

.node-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

@keyframes orbit-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  100% {
    transform: rotate(-360deg);
  }
}

@media (max-width: 768px) {
  .ecosystem-graphic {
    transform: scale(0.8);
  }
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 5.75rem;
  right: 1.75rem;
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 24, 48, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.2s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #009ef7;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 158, 247, 0.4);
}