/* --- 0. DESIGN TOKENS & RESET --- */
:root {
  /* Palette Dark Mode */
  --bg-body: #050608;
  --bg-body-rgb: 5,6,8;

  /* Cards Dark */
  --bg-card-dark: #1f2129;
  --border-card: #2e323d;
  --bg-card-hover: #252830;

  /* Cores Marca */
  --niuco-blue: #068aff;
  --niuco-blue-hover: #1e40af;
  --text-main: #F9F9FA;
  --text-secondary: #B7B8C2;
  --text-terciary: #727485;

  /* Ícones Impacto */
  --icon-bg: #323642;
  --icon-color: #1EA8FF;

  /* Gradientes */
  --gradient-text: linear-gradient(
    90deg,
    #70FF9C 0%,
    #2CC5FF 35%,
    #B124E2 65%,
    #EF1582 100%
  );
  --gradient-badge: linear-gradient(90deg, #2CC5FF 0%, #B124E2 50%, #EF1582 100%);
  --gradient-idm: linear-gradient(90deg, #068aff 0%, #BF50E2 100%);
  --gradient-saas: linear-gradient(90deg, #BF50E2 0%, #EE1C81 100%);

  /* Light Mode Tokens */
  --bg-light: #F9F9FA;
  --text-light-head: #050608;
  --text-light-body: #4b5563;
  --border-light: #F9F9FA;

  /* Tipografia */
  --font-main: "Nunito Sans", sans-serif;
}

.color-icon {
  color: var(--icon-color);
}

.text-white {
  color: var(--text-main);
}

.text-secondary-item {
  color: #B7B8C2!important;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==========================================================================
   1. NAVBAR ROUTABLE STYLE
   ========================================================================== */

.navbar {
  padding: 1.25rem 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    padding 0.25s ease;
  z-index: 1050;
}

/* ESTADO EXPANDIDO (Branco Sólido) */
.navbar.navbar-expanded,
.navbar.navbar-mobile-open {
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.25rem 0;
}

/* LOGO */
.navbar-brand {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  transition: color 0.25s ease;
}
.navbar.navbar-expanded .navbar-brand,
.navbar.navbar-scrolled .navbar-brand,
.navbar.navbar-mobile-open .navbar-brand {
  color: #050608 !important;
}

/* LINKS */
.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e2e8f0 !important;
  margin: 0 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
  position: relative;
}
.navbar.navbar-expanded .nav-link,
.navbar.navbar-scrolled .nav-link,
.navbar.navbar-mobile-open .nav-link {
  color: #4b5563 !important;
}

.navbar .nav-link:hover,
.nav-item.dropdown.show .nav-link {
  color: var(--niuco-blue) !important;
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  margin-top: 2px;
}
.nav-item.dropdown.show .nav-link i {
  transform: rotate(180deg);
  color: var(--niuco-blue) !important;
}

/* Ensure FontAwesome fonts are used for icon classes (avoids overrides in some browsers) */
.fa, .fas, .far, .fab, .fa-regular, .fa-solid, .fa-brands {
  font-family: "Font Awesome 7 Free", "Font Awesome 7 Brands" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-item.dropdown.show .nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--niuco-blue);
  position: absolute;
  bottom: -29px;
  left: 0;
}

/* TOGGLER */
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none !important;
}
.navbar-toggler i {
  color: var(--text-main);
  font-size: 1.5rem;
  transition: color 0.25s ease;
}
.navbar.navbar-expanded .navbar-toggler i,
.navbar.navbar-scrolled .navbar-toggler i,
.navbar.navbar-mobile-open .navbar-toggler i {
  color: #050608;
}

/* BOTÕES */
.btn-login {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
  padding: 0.6rem 1.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-login:hover {
  box-shadow: 0 10px 30px -5px rgba(255, 255, 255, 0.2);
  color: #050608;
  background-color: var(--text-main);
}

.navbar.navbar-expanded .btn-login,
.navbar.navbar-scrolled .btn-login,
.navbar.navbar-mobile-open .btn-login {
  color: #050608;
  border-color: #050608;
}
.navbar.navbar-expanded .btn-login:hover,
.navbar.navbar-scrolled .btn-login:hover,
.navbar.navbar-mobile-open .btn-login:hover {
  background-color: #050608;
  color: var(--text-main);
  border-color: #050608;
}

.btn-primary-niuco {
  background-color: var(--text-main);
  color: #050608;
  border: 1px solid transparent;
  padding: 0.6rem 1.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-niuco:hover {
  background-color: var(--niuco-blue-hover);
  color: var(--text-main);
}

/* --- MEGA MENU --- */
.nav-item.dropdown {
  position: static;
}
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border: none;
  border-top: 1px solid #e5e7eb;
  border-radius: 0;
  background-color: var(--text-main);
  padding: 0;
  margin: 0;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.nav-item.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.routable-menu-container {
  display: flex;
  min-height: 460px;
  background-color: var(--text-main);
}
.routable-sidebar {
  width: auto;
  min-width: 220px;
  padding: 2rem 0 2rem 2rem;
  border-right: 1px solid #e5e7eb;
  background-color: var(--text-main);
}
.routable-content {
  flex: 1;
  background-color: var(--text-main);
  padding: 3rem 4rem;
  position: relative;
}

/* Route panes inside the mega menu: stacked, cross-fade */
.routable-content .route-pane {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 3rem;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.2,0.9,0.2,1);
}
.routable-content .route-pane.active {
  opacity: 1;
  pointer-events: auto;
}
.routable-content .route-pane .menu-content-left {
  max-width: 60%;
  padding: 2rem;
}
.routable-content .route-pane .menu-right-img-col {
  max-width: 40%;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
  position: relative;
}
.sidebar-link i {
  font-size: 1.4rem;
  width: 30px;
  text-align: center;
  color: var(--text-secondary);
}
.sidebar-link:hover,
.sidebar-link.active {
  color: #050608;
}
.sidebar-link:hover i,
.sidebar-link.active i {
  color: #050608;
}
.sidebar-link.active::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: var(--niuco-blue);
  border-radius: 2px;
}

.menu-content-left {
  flex: 1;
}
.menu-content-title {
  font-size: 2.2rem;
  color: #050608;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  font-weight: bold;
}
.menu-content-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.btn-menu-cta {
  background-color: #4f46e5;
  color: white;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: 0.2s;
}
.btn-menu-cta:hover {
  background-color: #4338ca;
  color: white;
}

.menu-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  /* margin-top: 3rem; */
}
.menu-feature-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: #050608;
  text-decoration: none;
}
.menu-feature-item i {
  color: var(--icon-color);
  margin-right: 8px;
}
.menu-right-img-col {
  width: 350px;
}
.menu-right-card {
  background: #eff6ff;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.menu-right-card img {
  width: 100%;
  height: auto;
  display: block;
}

.routable-cols-container {
  padding: 4rem;
  background: #ffffff;
}
.col-header {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.link-list-item {
  display: block;
  color: #050608;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: color 0.2s;
}
.link-list-item:hover {
  color: var(--niuco-blue);
}
.menu-card-highlight {
  background-color: #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.menu-card-img {
  height: 200px;
  background-color: #d1d5db;
  background-size: cover;
  background-position: center;
  background-image: url('https://placehold.co/500x250/e2e8f0/64748b?text=Success+Case');
}
.menu-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-card-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #050608;
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding-left: 1rem;
    border: none;
    box-shadow: none;
  }
  .nav-item.dropdown.show .dropdown-menu {
    display: block;
  }
  .routable-menu-container {
    flex-direction: column;
    min-height: auto;
    background: transparent;
  }
  .routable-sidebar,
  .routable-content,
  .routable-cols-container {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
  }
  .menu-right-img-col,
  .menu-card-highlight {
    display: none;
  }
  .sidebar-link {
    padding-left: 0;
  }
  .sidebar-link.active::before {
    display: none;
  }
}


/* --- 2. HERO SECTION --- */
.hero-wrapper {
  position: relative;
  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: 60px 60px;
}
/* .hero-wrapper::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(5, 6, 8, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
} */
.hero-section {
  padding-top: 160px;
  /* padding-bottom: 80px; */
  position: relative;
  z-index: 1;
}
.badge-news {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 5px 6px;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.badge-news:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}
.badge-tag {
  background: var(--gradient-badge);
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 2px;
  margin-right: 12px;
  text-transform: uppercase;
}
h1.hero-title {
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
p.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}
.btn-white-hero {
  background-color: var(--niuco-blue);
  color: var(--text-main);
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-white-hero:hover {
  box-shadow: 0 10px 30px -5px rgba(3, 0, 0, 0.473);
  color: var(--text-main);
  background-color: var(--niuco-blue-hover);
}

/* HERO DASHBOARD */
.hero-scene-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 4rem 0;
  perspective: 1000px;
}
.hero-glow-aura {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 80%;
  height: 80px;
  background: linear-gradient(
    90deg,
    #4c1d95 0%,
    #7c3aed 25%,
    #c026d3 50%,
    #7c3aed 75%,
    #4c1d95 100%
  );
  background-size: 200% 200%;
  filter: blur(75px);
  opacity: 0.6;
  z-index: 0;
  border-radius: 50% 50% 0 0;
  animation: aurora-flow 10s linear infinite;
  pointer-events: none;
}
@keyframes aurora-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.main-screen-window {
  width: 80%;
  height: 450px;
  background: radial-gradient(
    105.33% 105.33% at 50% 0%,
    #161b22 0%,
    #0d1117 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 40px 80px -20px rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  overflow: hidden;
}
.main-screen-window::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
.ui-floating-card {
  position: absolute;
  background-color: #1f2129;
  border: 1px solid #2e323d;
  border-radius: 3px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 10;
  color: white;
  text-align: left;
  width: 270px;
}
.ui-card-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

/* --- CARD ONBOARDING ANIMATION STYLES --- */
.card-pos-onboarding {
  top: 200px;
  left: 0;
  animation: float-y 6s ease-in-out infinite;
}

.ui-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #282c36;
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Processing State (Shimmer) */
.ui-list-item.is-processing {
  background-color: rgba(59, 130, 246, 0.1); /* Leve azulado */
  border-color: rgba(59, 130, 246, 0.3);
}

.ui-list-item.is-processing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 1.5s infinite;
}

/* Completed State */
.ui-list-item.is-completed {
  background-color: #282c36;
  border-color: #10b981; /* Green border */
}
.ui-list-item.is-completed .ui-list-text {
  color: white; /* Highlight text */
}

.ui-list-icon {
  color: #3b82f6;
  width: 20px;
  text-align: center;
}
.ui-list-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  flex: 1;
}

/* Check Icon (Hidden by default) */
.ui-check-icon {
  color: #10b981;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy */
}

.ui-list-item.is-completed .ui-check-icon {
  opacity: 1;
  transform: scale(1);
}

.card-pos-provision {
  bottom: 20px;
  left: 22%;
  z-index: 12;
  width: 340px;
  animation: float-y 7s ease-in-out infinite reverse;
}
.ui-app-icon {
  width: 20px;
}
.ui-app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #16181d;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  border: 1px solid #2e323d;
}
.ui-app-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}
.ui-btn-auto {
  background: #2d3748;
  color: #1EA8FF;
  border: none;
  padding: 0;
  width: 100px;
  height: 28px;
  font-size: 0.7rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-btn-auto:hover:not(:disabled) {
  background-color: #4a5568;
  color: white;
}
.ui-btn-auto:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}
.ui-btn-auto.is-success {
  background-color: #10b981 !important;
  color: white !important;
  width: 110px;
}
.ui-btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-left-color: var(--text-main);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}
.card-pos-hardware {
  top: 194px;
  right: 0;
  width: 300px;
  animation: float-y 8s ease-in-out infinite 1s;
}
.ui-grid-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ui-stat-box {
  background-color: #282c36;
  padding: 10px;
  border-radius: 6px;
}
.ui-stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.ui-stat-value {
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}
.ui-progress-track {
  height: 8px;
  background-color: #3f444e;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}
.ui-progress-fill {
  height: 100%;
  border-radius: 10px;
}
.fill-blue {
  background-color: #007bff;
}
.fill-cyan {
  background-color: #67e8f9;
}
.fill-sky {
  background-color: #38bdf8;
}

@keyframes float-y {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* --- 3. LOGOS --- */
.section-logos {
  padding: 0 0 4rem 0;
  background-color: var(--bg-body);
  overflow: hidden;
  position: relative;
  text-align: center;
}
.logos-label-container {
  width: 100%;
  margin-bottom: 2.5rem;
}
.logos-label {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 4rem;
  font-weight: 400;
}


.marquee-container {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: scroll-infinite 80s linear infinite;
}
.logo-item {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e5e7eb;
  filter: grayscale(100%) opacity(0.5);
  white-space: nowrap;
  user-select: none;
}
@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- 4. IMPACT --- */
.section-impact {
  padding: 10rem 0 10rem 0;
  background-color: var(--bg-body);
}
.impact-heading {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.impact-subheading {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 4rem;
  font-weight: 400;
}
.card-dark {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-card);
  border-radius: 3px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}
/* .card-dark:hover {
  border-color: #3b3f4d;
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
} */
.icon-circle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-circle-img {
  width: 100%;
}
.card-title-impact {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  line-height: 1.3;
}
.card-text-impact {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.card-text-impact strong {
  color: white;
  font-weight: 700;
}

/* --- 5. PRODUCTS --- */
.section-products {
  padding: 5rem 0 10rem;
  background-color: var(--bg-body);
}
.products-heading {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.products-subtext {
  color: var(--text-secondary);
  text-align: right;
  font-size: 1rem;
  /* padding-bottom: 10px; */
  margin-bottom: 0;
}
.gradient-box {
  padding: 3rem 2.5rem;
  /* min-height: 240px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.gradient-box.idm {
  background: var(--gradient-idm);
}
.gradient-box.saas {
  background: var(--gradient-saas);
}
.gradient-box h3 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.gradient-box p {
  font-size: 1.05rem;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
  font-weight: 400;
}
.feature-box {
  background-color: var(--bg-card-dark);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 1rem 1.2rem;
  border-radius: 3px;
  height: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--text-main);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .18s ease;
}

.feature-title{display:block;flex:1;padding-right:12px}
.feature-chevron{font-size:0.78rem;color:var(--text-secondary);transition:transform .22s cubic-bezier(.2,.9,.2,1),color .18s}
.feature-item.is-open .feature-chevron,
.feature-item:focus-within .feature-chevron,
.feature-box:focus .feature-chevron{transform: rotate(180deg); color: var(--niuco-blue)}

/* Lift effect on hover/focus */
.feature-box:hover,
.feature-box:focus {
  box-shadow: 0 10px 30px rgba(2,6,23,0.36);
  background: var(--bg-card-dark);
}

/* Feature item: hover-reveal detail card (pixel-aligned) */
.feature-item {
  position: relative;
  display: initial;
}
.feature-detail {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: auto;
  min-width: 220px;
  background: var(--bg-card-dark);
  color: var(--text-secondary);
  border-radius: 3px;
  padding: 16px 18px;
  box-shadow: 0 20px 48px rgba(2,6,23,0.48), inset 0 1px 0 rgba(255,255,255,0.02);
  border: 1px solid var(--border-card);
  opacity: 0;
  transform-origin: top center;
  transform: scale(.985);
  pointer-events: none;
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.9,.2,1);
  z-index: 60;
}

/* Small caret pointing to the box (dark) */
/* .feature-detail::before{
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--bg-card-dark);
  transform: rotate(45deg);
  top: -8px;
  left: var(--caret-left, 20px);
  box-shadow: -2px -2px 6px rgba(2,6,23,0.16);
  border-left: 1px solid rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.02);
} */

.feature-detail h5{margin:0 0 .35rem 0;font-size:1.2rem;color:var(--text-main);font-weight:700}
.feature-detail p{margin:0 0 1rem 0;color:var(--text-secondary);font-size:1rem}
.feature-detail .detail-link{font-weight:700;color:var(--niuco-blue);font-size:.95rem}

/* Visible state: align center under the originating box when open */
/* Desktop and mobile: click/is-open shows detail */
@media (min-width: 991px) {
  .feature-item.is-open .feature-detail{
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile and tablet: only is-open state shows detail */
@media (max-width: 990px) {
  .feature-item.is-open .feature-detail{
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile: flow layout full width */
@media (max-width: 990px){
  /* Mobile: stack layout — keep details collapsed until tapped */
  .feature-detail{
    position: relative;
    left: 50%;
    width: calc(100vw - 2rem) !important;
    transform: translateX(-50%) scale(0.995);
    box-sizing: border-box;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: .5rem;
    box-shadow: none;
    border-color: rgba(255,255,255,0.02);
    pointer-events: none;
    will-change: transform, opacity, max-height;
    /* transition: max-height .45s cubic-bezier(.22,.9,.3,1), transform .32s cubic-bezier(.2,.9,.2,1), opacity .28s ease; */
  }
  /* show caret in-flow on mobile and animate it when opened */
  .feature-detail::before{
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--bg-card-dark);
    transform: rotate(45deg) translateY(-6px) scale(.9);
    top: -6px;
    left: var(--caret-left, 20px);
    box-shadow: -2px -2px 6px rgba(2,6,23,0.12);
    border-left: 1px solid rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.02);
    opacity: 0;
    transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
    transform-origin: center;
    
  }

  /* When opened (tapped) reveal with smooth height animation */
  .feature-item.is-open .feature-detail{
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    max-height: 720px;
    pointer-events: auto;
    padding: 18px 20px;
    margin-top: 6px;
  }

  /* Mobile: compact pill-style triggers and detail card visual to match mockup */
  .feature-box{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    font-weight: 700;
    min-height: auto;
    height: auto;
    width: 100%;
  }

  .feature-item{display:block;margin-bottom:0}

  .feature-detail{
    background: var(--bg-card-dark);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 0 20px; /* collapsed padding while closed */
    box-shadow: 0 12px 30px rgba(2,6,23,0.45);
    margin-top: 0; /* remove gap while closed */
    color: var(--text-secondary);
  }
  .feature-detail h5{font-size:1.05rem;color:var(--text-main);margin-bottom:8px}
  .feature-detail p{font-size:0.97rem;color:var(--text-secondary);line-height:1.6}
  .feature-detail .detail-link{display:inline-flex;align-items:center;margin-top:10px;color:var(--niuco-blue);font-weight:800}

  /* animate caret into view when opened */
  .feature-item.is-open .feature-detail::before{
    transform: rotate(45deg) translateY(0) scale(1);
    opacity: 1;
  }

  /* Ensure the trigger is visibly interactive on mobile */
  .feature-box{cursor: pointer}
}

/* Tighten spacing on smaller mobile screens: remove extra gap between feature-box elements
   while keeping click-to-open behavior for feature-detail at breakpoints <=990px */
@media (max-width: 990px){
  .feature-item{ margin-bottom: 0; }
  .feature-item + .feature-item{ margin-top: 0; }
  /* Reduce detail top margin to avoid extra space between the opened detail and next feature-box */
  .feature-item .feature-detail{ margin-top: 0; }
  /* When opening, ensure next feature sits flush without extra spacing */
  .feature-item.is-open + .feature-item{ margin-top: 0; }
}

/* --- 6. LIGHT SECTIONS --- */
.section-light {
  background-color: #050608;
  padding: 5rem 0;
  color: var(--text-light-head);
}
.section-light:last-child {
  border-top: none;
  padding-top: 2rem;
}
.light-heading {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 600px;
  letter-spacing: -0.02em;
  color: var(--text-main);
}
.light-subheading {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem 0;
}
.custom-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.custom-nav-pills {
  display: inline-flex;
  border-bottom: 1px solid var(--border-card);
  /* border-radius: 3px; */
  /* padding: 4px; */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.custom-nav-link {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  /* border-radius: 3px; */
  /* transition: all 0.2s; */
}
.custom-nav-link.active {
  border-bottom: 3px solid var(--icon-color);
  color: var(--icon-color);
}
.custom-nav-link:hover:not(.active) {
  color: var(--icon-color);
}
.light-card {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  min-height: 500px;
}
.light-content {
  padding: 2rem;
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  height: 100%;
}
.light-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.light-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.light-feature {
  display: grid;
  gap: 25px;
  /* margin-bottom: 1.5rem; */
}
.feature-icon-square {
  width: 60px;
  height: 60px;
  /* border-radius: 2px;
  border: 1px solid var(--icon-color);
  padding: 0.4rem; */
}   
.feature-info h6 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  font-size: 1rem;
}
.feature-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}
.light-img-col {
  /* background-image: radial-gradient( circle farthest-corner at 83.7% 4.3%,  rgba(173,0,171,1) 0%, rgba(15,51,92,1) 90% ); */
  background-image: radial-gradient(circle farthest-corner at 83.7% 4.3%, rgba(81, 15, 80, 1), rgba(12, 40, 69, 1) 71.85%, rgb(6, 10, 30) 91.6%);
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: end;
  justify-content: end;
  border-radius: 3px;
}
.light-img-col-perspectives {
  background-image: radial-gradient(circle farthest-corner at 83.7% 4.3%, rgba(81, 15, 80, 1), rgba(12, 40, 69, 1) 71.85%, rgb(6, 10, 30) 91.6%);
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: end;
  justify-content: center;
  border-radius: 3px;
}
.light-img-col.perspectives {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}
.light-img-placeholder {
  width: 90%;
  height: auto;
  /* aspect-ratio: 16/10;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 1px;
  background-image: linear-gradient(#f3f4f6 1px, transparent 1px),
    linear-gradient(90deg, #f3f4f6 1px, transparent 1px);
  background-size: 20px 20px; */
}

.tab-pane {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.tab-pane.show {
  opacity: 1;
  transform: translateY(0);
  background-color: transparent;
  border: 1px solid var(--border-card);
  border-radius: 3px;
  overflow: hidden;
  padding: 0.3rem;
}

/* --- 7. STORIES SECTION --- */
.section-stories {
  background-image: url('/assets/images/wave-bg.png');
  background-size: auto; 
  background-position: center; 
  background-repeat: no-repeat; 
  padding: 9rem 0;
  overflow: hidden;
}
.stories-container {
  position: relative;
  z-index: 2;
}
.stories-heading {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--text-main);
}
.stories-subheading {
  color: var(--text-secondary);
  font-size: 1.1rem;
  /* margin-bottom: 3rem; */
}
.stories-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-main);
  transition: all 0.2s;
  font-size: 1.2rem;
  cursor: pointer;
}
.stories-nav-btn:hover.active {
  background-color: rgba(255, 255, 255, 0.8);
}
.stories-nav-btn.active {
  background-color: var(--border-light);
  color: #050608;
  border-color: var(--border-light);
  opacity: 1;
  cursor: pointer;
}
.stories-nav-btn.outline-active {
  border-color: var(--border-light);
  opacity: 1;
  cursor: pointer;
  background-color: var(--border-light);
  color: #050608;
}
.stories-nav-btn.outline-active:hover {
background-color: rgba(255, 255, 255, 0.8);
}
.stories-nav-btn.disabled-look {
  opacity: 0.4;
  cursor: default;
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-light);
}
.stories-nav-btn:hover:not(.disabled-look) {
  border-color: var(--border-light);
}
.stories-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.stories-carousel::-webkit-scrollbar {
  display: none;
}

/* -------------------------------
   PERSPECTIVES / SOLUÇÕES CAROUSEL
   ------------------------------- */
.persp-nav-wrapper {
  position:relative;
  display:block;
  margin-bottom:1rem;
}
.persp-controls {
  display:flex;
  gap:.5rem;
  align-items:center;
  position:absolute;
  top:-40px;
  right:0;
  z-index:10;
}
@media (max-width: 990px) {
  .persp-controls { top:-32px; }
}
.persp-carousel {
  display:flex;
  gap:1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding:2rem 0 0 0;
  /* ensure items start from the left so the first card can be flush-left */
  justify-content:flex-start;
  align-items:stretch;
  -webkit-overflow-scrolling: touch; /* smoother touch scrolling on mobile/Safari */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  touch-action: pan-x;
}
.persp-carousel::-webkit-scrollbar { height: 8px; display: none; }
.persp-carousel.is-dragging { cursor: grabbing; }
.stories-carousel.is-dragging { cursor: grabbing; }
.story-card { cursor: grab; }

.persp-item {
  flex: 0 0 420px;
  max-width:420px;
  min-width: 280px;
  transition:transform .32s cubic-bezier(.2,.9,.2,1), opacity .32s;
  opacity:0.45;
  transform:scale(.96);
  cursor:grab;
  scroll-snap-align: center;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}
.persp-item .light-card { min-height:320px; }
.persp-item.active,
.persp-item[aria-selected="true"] {
  transform:scale(1);
  opacity:1;
  box-shadow: 0 14px 40px rgba(3,8,20,0.6);
  z-index:5;
}
.persp-item:focus-visible {
  box-shadow: 0 0 0 4px rgba(99,102,241,0.18), 0 10px 30px rgba(3,8,20,0.45);
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 990px) {
  .persp-item { flex:0 0 86%; max-width:86%; }
  .persp-nav-wrapper .integrations-badge-blue { display:none; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .persp-carousel { scroll-behavior: auto !important; }
  .persp-item { transition: none !important; }
}
/* Also apply class-based override when JS detects reduced motion */
.reduced-motion .persp-carousel { scroll-behavior: auto !important; }
.reduced-motion .persp-item { transition: none !important; }

/* Accessibility and fallback helpers */
.persp-carousel { -ms-overflow-style: -ms-autohiding-scrollbar; }
.stories-nav-btn[disabled], .stories-nav-btn[aria-disabled="true"] { cursor: not-allowed; opacity: 0.45; }
.persp-item[tabindex] { -webkit-tap-highlight-color: rgba(0,0,0,0); }
.persp-item:focus { outline: none; }

.story-card {
  min-width: 850px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 3px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}
.story-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.story-profile-col {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.profile-img-wrapper {
  width: 200px;
  height: 200px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  background-color: #333;
}
.profile-name {
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.profile-role {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.story-link {
  color: var(--icon-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.story-link:hover {
  color: var(--niuco-blue);
}
.story-quote-col {
  flex: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 2rem;
  position: relative;
  display: grid;
  align-content: flex-end;
}
.quote-icon-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--niuco-blue);
  opacity: 1;
}
.quote-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
}
.quote-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- 8. INTEGRAÇÕES --- */
.section-integrations {
  background-color: var(--bg-body);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.integrations-badge-blue {
  display: inline-block;
  background-color: rgba(13, 110, 253, 0.2);
  color: #1EA8FF;
  border: 1px solid rgba(13, 110, 253, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.integrations-badge-violet {
  display: inline-block;
  background-color: rgba(133, 13, 253, 0.2);
  color: #bf6cff;
  border: 1px solid rgba(141, 29, 253, 0.647);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.integrations-badge-rose {
  display: inline-block;
  background-color: rgba(253, 13, 205, 0.2);
  color: #ff26f8;
  border: 1px solid rgba(253, 13, 205, 0.809);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.integrations-heading {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.integrations-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 450px;
}
.integrations-grid-wrapper {
  height: 600px;
  position: relative;
  display: flex;
  gap: 20px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  overflow: hidden;
}
.integration-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.scroll-down {
  animation: scroll-vertical 15s linear infinite;
}
.scroll-up {
  animation: scroll-vertical-reverse 15s linear infinite;
}
@keyframes scroll-vertical {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scroll-vertical-reverse {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}
.int-card {
  background-color: #1f2129;
  border: 1px solid #2e323d;
  border-radius: 3px;
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}
.int-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: #252830;
}
.int-icon {
  width: 25%;
  margin-bottom: 1rem;
}
.int-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
}
.int-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}
/* .ic-slack {
  color: #e01e5a;
}
.ic-google {
  color: #4285f4;
}
.ic-ms {
  color: #00a4ef;
}
.ic-aws {
  color: #ff9900;
}
.ic-github {
  color: var(--text-main);
}
.ic-asana {
  color: #f06a6a;
}
.ic-zendesk {
  color: #03363d;
}
.ic-entraid {
  color: #0078d4;
} */

/* --- 9. SUPORTE --- */
.section-support {
  background-color: var(--text-main);
  padding: 6rem 0 8rem 0;
  border-top: 1px solid #e5e7eb;
}
.support-heading {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: #050608;
}
.support-subheading {
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 4rem;
}
.support-card {
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  height: 100%;
  display: grid;
  flex-direction: column;
  background: #fff;
  transition: transform 0.3s;
  padding: 0.5rem;
}
/* .support-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
} */
.support-card-body {
  padding: 1.5rem 1rem;
  text-align: center;
  /* flex: 1; */
}
.support-card-title {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #050608;
}
.support-card-text {
  color: var(--text-terciary);
  font-size: 0.95rem;
  line-height: 1.5;
  /* margin-bottom: 2rem; */
}
.support-img-wrapper {
  width: 100%;
  /* border-top: 1px solid #f3f4f6;
  background-color: var(--text-main); */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.support-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- 10. CTA FINAL --- */
.section-cta {
  position: relative;
  background-color: #050608;
  padding: 18rem 0;
  overflow: hidden;
  margin-bottom: 2rem;
}
.cta-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
}
.cta-glow-purple {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url('/assets/images/glow.jpg');
  background-size: auto; 
  background-position: center; 
  background-repeat: no-repeat; 
  /* z-index: 1; */
  opacity: 0.5;
}
.cta-wave-lines {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /* background: url("https://i.ibb.co/bQsJ70L/lines-wave-abstract.png") no-repeat
    center center; */
  /* background-size: contain; */

  background-image: url('/assets/images/solicite-uma-demo.png');
  background-size: contain; 
  background-position: center; 
  background-repeat: no-repeat; 

  opacity: 0.6;
  z-index: 1;
  mix-blend-mode: screen;
}
.cta-content {
  position: relative;
  z-index: 5;
  text-align: center;
}
.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
}
.cta-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* --- 11. FOOTER --- */
footer {
  background-color: #050608;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 350px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--border-light);
  border-radius: 6px;
  color: #050608;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.social-link:hover {
  transform: translateY(-3px);
}
.footer-heading {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.footer-legal-links {
  display: flex;
  gap: 2rem;
}
.footer-legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: var(--text-secondary);
}

@media (max-width: 990px) {
  .cta-title {
    font-size: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal-links {
    gap: 1rem;
  }
} 



/* ==========================================================================
   Pagina: Detalhe Case de Uso
   ========================================================================== */

.section-about-case {
    background-color: var(--bg-body);
    padding: 0 0 5rem; 
    position: relative;
}

.hero-wrapper-img{
  width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 0px 0px 8px 8px;
  display: block;
}

/* Card Principal (Container) */
.about-case-card {
    background-color: #1F2129; 
    border: 1px solid #2E323D;
    border-radius: 8px;
    padding: 2rem; 
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.about-case-card-left{
  display: grid;
  align-content: space-between;
}

.about-case-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem; 
    letter-spacing: -0.02em;
}

/* Estilo dos Ícones (Sinos) */
.about-icon-box {
    width: 36px;
    height: 36px;
    background-color: #2D3039; 
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--icon-color);
}

.profile-img-about {
  width: 150px;
  height: 150px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.profile-text-about {
  display: inline-flex;
  align-items: end;
  gap: 1rem;
  text-align: left;
}

/* Textos das Colunas */
.about-info-label {
    font-size: 0.95rem;
    font-weight: 800; 
    color: white;
    margin-bottom: 0.3rem;
    display: block;
}

.about-info-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    line-height: 1;
}

/* --- Seção Resultados --- */
.result-box{
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: grid;
  height: 100%;
  align-items: center;
}

.result-impact{
  margin-bottom: 1rem;
}
.result-impact-section{
  display: grid;
  align-content: space-between;
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  /* text-align: -webkit-center;
  justify-items: center; */
  padding: 0 1rem 0 2rem;
}
.result-impact-text{
  color: var(--niuco-blue);
  font-size: 2.5rem;
  font-weight: 700;
}
.result-impact-item{
  display: grid;
  justify-items: center;
}

.result-impact-card{
  display: grid;
  justify-items: center;
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: grid;
  height: 100%;
  align-items: center;
  padding: 2rem;
}
.result-impact-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  line-height: 1.3;
  padding: 1rem 0 2rem 0;
}



/* --- Seção Solução --- */
.section-light-features {
    margin-bottom: 2rem;
}

/* --- Seção Dialogo --- */
.about-desc-box {
    background-color: rgba(0, 0, 0, 0.2); 
    border: 1px solid #2E323D; 
    padding: 2.5rem; 
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center; 
}

.about-desc-text {
    color: #D1D5DB; 
    font-size: 1rem;
    line-height: 1.7; 
    margin: 0;
    font-weight: 400;
}

.section-highlight-quote-text{
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

/* Ajustes Mobile */
@media (max-width: 992px) {
    .about-case-card { padding: 2rem; }
    .about-desc-box { margin-top: 2.5rem; padding: 1.5rem; height: auto; }
}




/* ==========================================================================
   Page IT Heroes
   ========================================================================== */
.bg-manifesto {
  background-color: #000;
}

.wrapper,
.content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.content {
  overflow-x: hidden;
}

.content .section {
  width: 101%;
  height: 100vh;
}

.content .section.hero {
  background-image: url(/assets/images/bg_hero_manifesto.jpg);
  background-repeat: no-repeat!important;
  background-size: cover!important;
  background: linear-gradient(rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0)), center center url(/assets/images/bg_hero_manifesto.jpg);
}

.content .section.our_mission {
  background-image: url(/assets/images/bg_our_mission.jpg);
  background-repeat: no-repeat!important;
  background-size: cover!important;
  background: linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7)), center center url(/assets/images/bg_our_mission.jpg);
  height: auto;
}

.content .our_vision {
  background-image: url(/assets/images/bg_our_vision.jpg);
  background-repeat: no-repeat!important;
  background-size: cover!important;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.377)), center center url(/assets/images/bg_our_vision.jpg);
}

.content .section .content_misson {
  margin: 0 auto;
  width: 100%;
}

.content .sub_title_manifesto {
  color: #068aff;
  font-size: 28px;
  font-weight: 200;
}

.content .text_manifesto {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.content .text_disclaimer {
  color: #eeeeee;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 200;
  letter-spacing: 1px;
  margin-top: 24px;
  text-align: center;
}

.content .text_manifesto span {
  color: #068aff;
}

.image-container,
.image-container-mob {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  z-index: 2;
  perspective: 500px;
  overflow: hidden;
}

.image-container img,
.image-container-mob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-container-mob img {
  display: none;
}

.img_plataforma {
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 350px) scale(0.8, 0.8) !important;
  padding: 100px 0 0px;
}

.gsap-marker-end,
.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-scroller-start {
  display: none !important;
}

/* List Creditos Manifesto */
.block-grid {
  display: flex;
  justify-content: center;
}

.block {
  margin: 2em 0 0 0;
  color: #eeeeee;
  display: flex;
  justify-content: center;
}

.credits {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.creditsline {
  display: flex;
  margin-bottom: 0.75rem;
}

.character,
.autor {
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
}

.autor {
  color: #068aff;
  font-weight: 300;
}

/* Ajustes Manifesto */
.mt-85 {
  margin-top: 85px;
}
.c-white {
  color: white!important;
}
.body-manifesto {
  top: 0!important;
  margin-bottom: 0!important;
  display: inline-grid;
  width: 100%;
}
.pb-50{
  padding: 50px 0!important;
}
.txt-center{
  text-align: center;
}

/* Arrow Manifesto */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.encircle {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: solid 2px #068aff;
  position: fixed;
  bottom: 30px;
  left: 50%;
}

.arrow {
  margin: 0 auto;
  margin-top: 12px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: solid #068aff;
  border-width: 0 3px 3px 0;
}

.bounce {
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -ms-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

/* ==========================================================================
   Pagina: Solicitar uma Demo
   ========================================================================== */

.section-impact-demo {
  padding: 5rem 0 5rem 0;
}

.story-card-demo{
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 3px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.story-card-demo:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Pagina: FAQ
   ========================================================================== */

.accordion-button {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-weight: bold;
}
.accordion-button:hover{
  background-color: #1f2129;
  color: var(--text-main);
}
.accordion-item{
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #B7B8C2;
}
.accordion-button:not(.collapsed){
  background-color: #1f2129;
  box-shadow: none;
  color: var(--text-main);
}
.accordion-button::after{
  background-image: url(/assets/svg/arrow-first.svg);
}
.accordion-button:not(.collapsed)::after{
  background-image: url(/assets/svg/arrow-first-hover.svg)
}