.elementor-kit-5{--e-global-color-primary:#2563EB;--e-global-color-secondary:#DFDFDF;--e-global-color-text:#222222;--e-global-color-accent:#FACC15;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===== MENU FIXO ===== */
.menu-topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 9999;
  padding: 15px 40px;
}

.menu-topo nav ul {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  list-style: none;
}

.menu-topo nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #111827;
  transition: color 0.3s;
}

.menu-topo nav ul li a:hover {
  color: #2563eb; /* azul GoNex */
}

/* ===== HERO ===== */
.hero-section {
  padding: 120px 20px 80px; /* compensar o menu fixo */
  text-align: center;
}

.hero-section h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ===== SOLUÇÕES ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 80px auto;
}

.solution-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background: #f3f4f6;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 80px 0;
  text-align: center;
}

/* ===== TIMELINE ===== */
.timeline {
  margin: 80px auto;
  position: relative;
  max-width: 900px;
}

.step-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

/* ===== PORTFÓLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 80px auto;
}

.portfolio-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: #f3f4f6;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 100px;
}

.cta-final h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #6b7280;
  margin-top: 40px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-topo nav ul { flex-direction: column; gap: 15px; }
  .hero-section { padding: 100px 15px 60px; }
  .solutions-grid, .portfolio-grid { grid-template-columns: 1fr; }
}/* End custom CSS */