:root {
  --verde-neon: #00FF48;
  --fundo-escuro: #1B003D;
  --roxo-escuro: #1B003D;
  --azul-claro: #141b7b;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Arial', sans-serif;
  background-color: var(--fundo-escuro);
  color: white;
  overflow-x: hidden; /* Corrige rolagem horizontal */
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.img-animada {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
  flex-wrap: nowrap; /* ❗ garante linha horizontal mesmo em telas pequenas */
}

.logo {
  max-height: 100px;
  width: auto;
  height: auto;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.actions a {
  padding: 10px 18px;
  border: 2px solid var(--verde-neon);
  color: var(--verde-neon);
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s;
  font-size: 1rem;
}

.actions a:hover {
  background: var(--verde-neon);
  color: #000;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap; /* 🔒 mantém botão ao lado do logo */
    padding: 12px 20px;
  }

  .logo {
    max-height: 80px;
    width: auto;
    margin-right: auto;
  }

  .actions {
    flex-shrink: 0;
  }

  .actions a {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-height: 60px;
  }

  .actions a {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}




/* HERO */
.hero {
  width: 100%;
  height: 90vh;
  background: url('/img/banner3.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
}

.hero-content {
  text-align: left;
  color: white;
  max-width: 500px;
}

.hero-logo {
  width: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* RESPONSIVO HERO */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 0;
  }

  .hero-overlay {
    justify-content: center !important;
    align-items: center !important;
    padding: 40px 20px;
    text-align: center;
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-logo {
    width: 80px;
    margin: 0 auto 20px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.btn-hero {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid var(--verde-neon);
  color: var(--verde-neon);
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-hero:hover {
  background-color: var(--verde-neon);
  color: #000;
}



:root {
  --verde-neon: #00FF48;
  --roxo-escuro: #1B003D;
  --azul-claro: #141b7b;
}

.hub-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #5B0AFF, #1B003D);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hub-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hub-header img {
  width: 90px;
}

.hub-header h1 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
}

.hub-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

.feature-item {
  border: 1px solid var(--verde-neon);
  border-radius: 30px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
  background-color: rgba(255, 255, 255, 0.03); /* leve transparência se quiser destacar */
}

.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(4) { animation-delay: 0.6s; }

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--verde-neon);
}

.feature-icon {
  font-size: 2rem;
  color: var(--verde-neon);
  margin-bottom: 10px;
}

.feature-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* RESPONSIVO HUB */
@media (max-width: 768px) {
  .hub-header h1 {
    font-size: 1.6rem;
  }

  .hub-header img {
    width: 50px;
  }

  .feature-item {
    padding: 25px 15px;
    text-align: center;
  }

  .hub-features {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}


.hub-contabil {
  background-color: #fff;
  color: #000;
  padding: 60px 20px;
  text-align: center;
}

.hub-header h2 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #1B003D;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 500;
}

.hub-header h2 .destaque {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--verde-neon);
  margin-bottom: 8px;
}

.hub-header p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #333;
}

.hub-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 60px;
}

.hub-left {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hub-right {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-logo {
  width: 120px;
  margin-bottom: 30px;
}

.hub-left h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
}

.hub-left p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #222;
}

.hub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hub-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: #000;
}

.hub-list .icon {
  font-size: 1.5rem;
  color: var(--verde-neon, #00FF48);
  margin-top: 5px;
}

.hub-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* RESPONSIVO HUB CONTÁBIL */
@media (max-width: 768px) {
  .hub-grid {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .hub-left,
  .hub-right {
    max-width: 100%;
    height: auto;
  }

  .hub-left {
    text-align: center;
    align-items: center;
  }

  .hub-left h3,
  .hub-left p {
    text-align: center;
  }

  .hub-list li {
    justify-content: center;
  }

  .hub-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .hub-logo {
    margin: 0 auto 30px;
  }

  .hub-header h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .hub-header h2 .destaque {
    font-size: 1.8rem;
  }
}



.secao-clientes {
  background-color: #f3f3f3;
  padding: 60px 20px;
  width: 100%;
  overflow-x: hidden;
}

.clientes-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.clientes-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.clientes-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.clientes-texto {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
}

.clientes-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.clientes-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
}

/* RESPONSIVO CLIENTES */
@media (max-width: 768px) {
  .clientes-grid {
    flex-direction: column-reverse; /* Inverte para mostrar texto antes da imagem */
    text-align: center;
    gap: 5px;
  }

  .clientes-texto {
    text-align: center;
  }

  .clientes-texto h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .clientes-texto p {
    font-size: 1rem;
  }

  .clientes-img {
    margin-top: 10px;
  }
}



/* Seção externa com fundo branco */
.secao-tecnologia {
  background-color: #ffffff;
  padding: 60px 20px; /* Reduzido de 80px para 60px */
  width: 100%;
  overflow-x: hidden;
}

.tecnologia-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* Reduzido de 60px para 40px */
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.tecnologia-texto {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
  margin-bottom: 10px;
}

.tecnologia-texto h2 {
  font-size: 2rem;
  margin-bottom: 16px; /* Ajustado */
  color: #000;
}

.tecnologia-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 0;
}

.tecnologia-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.tecnologia-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* RESPONSIVO TECNOLOGIA */
@media (max-width: 768px) {
  .tecnologia-grid {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .tecnologia-texto {
    text-align: center;
  }

  .tecnologia-texto h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .tecnologia-texto p {
    font-size: 1rem;
  }

  .tecnologia-img {
    margin-top: 10px;
  }
}




.secao-suporte {
  background-color: #f3f3f3;
  padding: 80px 20px;
  width: 100%;
  overflow-x: hidden;
}

.suporte-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row-reverse; /* ← INVERTE A ORDEM */
  max-width: 1100px;
  margin: 0 auto;
}

.suporte-texto {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
}

.suporte-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.suporte-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
}

.suporte-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.suporte-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* RESPONSIVO SUPORTE */
@media (max-width: 768px) {
  .suporte-grid {
    flex-direction: column; /* Volta para coluna no mobile */
    text-align: center;
  }

  .suporte-texto {
    text-align: center;
  }

  .suporte-texto h2 {
    font-size: 1.6rem;
  }

  .suporte-texto p {
    font-size: 1rem;
  }

  .suporte-img img {
    margin-top: 10px;
  }
}


.secao-desenvolvimento {
  background-color: #fff;
  padding: 80px 20px;
  width: 100%;
  overflow-x: hidden;
}

.desenvolvimento-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.desenvolvimento-texto {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
}

.desenvolvimento-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.desenvolvimento-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
}

.desenvolvimento-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.desenvolvimento-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* RESPONSIVO DESENVOLVIMENTO */
@media (max-width: 768px) {
  .desenvolvimento-grid {
    flex-direction: column;
    text-align: center;
  }

  .desenvolvimento-texto {
    text-align: center;
  }

  .desenvolvimento-texto h2 {
    font-size: 1.6rem;
  }

  .desenvolvimento-texto p {
    font-size: 1rem;
  }

  .desenvolvimento-img img {
    margin-top: 10px;
  }
}



.secao-app-corrigida {
  width: 100%;
  height: auto;
  background: #1B003D;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.app-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
  align-items: center;
  gap: 60px;
}

.app-img {
  width: 30%;
  background: #1B003D;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  z-index: 2;
}

.app-img img {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.3));
}

.app-conteudo {
  width: 70%;
  color: white;
  padding: 0 40px;
}

.app-conteudo h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.app-conteudo p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 30px;
}

.botoes-principais {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-acesso,
.btn-cadastro {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s ease;
}

.btn-acesso {
  background: transparent;
  border: 2px solid #00FF48;
  color: #00FF48;
}

.btn-acesso:hover {
  background: #00FF48;
  color: #000;
}

.btn-cadastro {
  background: #00FF48;
  color: #000;
  border: 2px solid #00FF48;
}

.btn-cadastro:hover {
  opacity: 0.8;
}

.botoes-loja img {
  width: 140px;
  margin-right: 10px;
}

/* RESPONSIVO APP */
@media (max-width: 900px) {
  .app-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .app-img,
  .app-conteudo {
    width: 100%;
  }

  .app-img {
    padding: 40px 0;
  }

  .app-conteudo {
    padding: 40px 20px;
  }

  .botoes-principais {
    justify-content: center;
  }

  .botoes-loja {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 20px 20px;
  width: 100%;
  overflow-x: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-newsletter {
  flex: 1 1 300px;
}

.footer-newsletter h4,
.footer-links h4 {
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--verde-neon);
  border: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
}

.footer-links {
  display: flex;
  flex: 1 1 400px;
  justify-content: space-between;
  gap: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--verde-neon);
}

/* FOOTER BOTTOM COM REDES SOCIAIS */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-social a {
  font-size: 1.8rem;
  display: inline-block;
  transition: transform 0.3s, text-shadow 0.3s;
}

/* Cores sociais */
.footer-social .fa-instagram { color: #E1306C; }
.footer-social .fa-facebook-f { color: #1877F2; }
.footer-social .fa-linkedin-in { color: #0A66C2; }
.footer-social .fa-youtube { color: #FF0000; }

.footer-social a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}

/* RESPONSIVO FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 6px;
  }
}


.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.btn-hero {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  color: #00FF48;
  border: 2px solid #00FF48;
  background-color: transparent;
  transition: 0.3s ease;
  text-align: center;
}

.btn-hero:hover {
  background-color: #00FF48;
  color: #000;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: var(--verde-neon);
  border: none;
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.menu-links a {
  padding: 6px 12px;
  border: 2px solid var(--verde-neon);
  color: var(--verde-neon);
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s;
  font-size: 0.9rem;
}

.menu-links a:hover {
  background: var(--verde-neon);
  color: #000;
}

/* Responsivo - menu hambúrguer */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1B003D;
  }

  .logo {
    width: 80px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    color: var(--verde-neon);
    border: none;
    cursor: pointer;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1B003D;
    padding: 20px 10px;
    border-top: 1px solid #333;
    text-align: center;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-links a {
    display: block;
    padding: 12px;
    margin: 5px 0;
    border: 2px solid var(--verde-neon);
    color: var(--verde-neon);
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }

  .menu-links a:hover {
    background-color: var(--verde-neon);
    color: #000;
  }
}

@media (min-width: 769px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
  }

  .menu-toggle {
    display: none; /* Esconde o ícone hambúrguer no desktop */
  }

  .menu-links {
    display: flex !important; /* Mostra o menu fixo no desktop */
    flex-direction: row;
    gap: 15px;
    background: transparent;
    padding: 0;
    border: none;
    margin-top: 0;
    justify-content: flex-end;
  }

  .menu-links a {
    padding: 10px 18px;
    border: 2px solid var(--verde-neon);
    color: var(--verde-neon);
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }

  .menu-links a:hover {
    background-color: var(--verde-neon);
    color: #000;
  }
}

/* MENU - DESKTOP E MOBILE FUNCIONAL */

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #1B003D;
  position: relative;
}

.logo {
  height: 140px;
}

.menu-toggle {
  position: absolute;
  right: 20px;
  font-size: 28px;
  background: none;
  color: var(--verde-neon);
  border: none;
  cursor: pointer;
  display: none;
}

.menu-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.menu-links a {
  padding: 10px 18px;
  border: 2px solid var(--verde-neon);
  color: var(--verde-neon);
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.menu-links a:hover {
  background-color: var(--verde-neon);
  color: #000;
}

/* RESPONSIVO MOBILE */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background-color: #1B003D;
    border-top: 1px solid #333;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-links a {
    width: 80%;
    margin: 5px 0;
  }
}






