.gif-player {
  display: block;
  margin: 0 auto;
  /* Centraliza */
  max-width: 100%;
  /* Nunca passa da tela */
  height: auto;
  /* Mantém proporção */
  border-radius: 10px;
  /* Se quiser cantos arredondados */
  border: none;
  box-shadow: none;
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.gif-player {
  display: block;
  margin: 0 auto;
  /* Centraliza */
  max-width: 100%;
  /* Nunca passa da tela */
  height: auto;
  /* Mantém proporção */
  border-radius: 10px;
  /* Se quiser cantos arredondados */
  border: none;
  box-shadow: none;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0;
  background: rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* MENU DESKTOP */
header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #32ff7e;
}

/* BANDEIRAS */
.flags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flags img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #32ff7e;
  box-shadow: 0 0 8px rgba(50, 255, 126, 0.5);
  transition: 0.3s;
  cursor: pointer;
}

.flags img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.8);
}

/* MENU TOGGLE (HAMBÚRGUER) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #32ff7e;
  cursor: pointer;
  margin-left: 10px;
}

/* ===== MOBILE HEADER ===== */
@media (max-width: 900px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* mostra o botão */
  .menu-toggle {
    display: block;
  }

  /* esconde o menu por padrão */
  header nav {
    width: 100%;
    display: none;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 8px;
    margin-top: 10px;
    padding: 15px 0;
    order: 4;
  }

  /* quando ativo (via JS) */
  header nav.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  header nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* reorganiza os elementos */
  .logo { order: 1; }
  .flags { order: 3; margin-left: auto; }
  .menu-toggle { order: 2; }
}


/* Menu toggle (hambúrguer) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #32ff7e;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-grid {
    flex-direction: column;
    text-align: center;
  }

  header nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  header nav.active {
    display: block;
  }
}


/* Hero moderno */
.hero {
  position: relative;
  text-align: center;
  padding: 140px 20px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #0b0b0b);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero h1 .highlight {
  color: #32ff7e;
  text-shadow: 0 0 12px rgba(50, 255, 126, 0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.6s;
}

/* Animações */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botões do Hero */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #32ff7e;
  color: #000;
  box-shadow: 0 0 15px #32ff7e;
  animation: pulse 2.5s infinite;
}

.btn-primary:hover {
  background: #00e676;
  box-shadow: 0 0 20px #32ff7e;
}

.btn-secondary {
  border: 2px solid #32ff7e;
  color: #32ff7e;
  background: transparent;
}

.btn-secondary:hover {
  background: #32ff7e;
  color: #000;
  box-shadow: 0 0 15px #32ff7e;
}

/* Pulso botão */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 255, 126, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(50, 255, 126, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(50, 255, 126, 0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


/* Hero gradient */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Faixa rolando */
.faixa {
  background: #32ff7e;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
}

.faixa span {
  display: inline-block;
  padding: 15px 50px;
  font-weight: bold;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Sobre */
.sobre-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  gap: 30px;
}

.sobre-img img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.3);
}

/* Estatística */
.estatistica {
  text-align: center;
  background: url('../img/city-bg.jpg') no-repeat center/cover;
  padding: 80px 20px;
  position: relative;
}

.estatistica::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.estatistica h2 {
  font-size: 5rem;
  color: #32ff7e;
  position: relative;
  z-index: 1;
}

.estatistica p {
  position: relative;
  z-index: 1;
}

/* Produtos */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333;
  transition: transform .3s, border .3s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #32ff7e;
  box-shadow: 0 0 15px rgba(0, 255, 128, 0.3);
}

/* Diferenciais */
.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.grid-diferenciais .card {
  text-align: center;
  padding: 25px;
  border: 1px solid #32ff7e;
  border-radius: 8px;
}

/* Missão */
.missao {
  text-align: center;
  padding: 80px 20px;
  background: #0d0d0d;
}

/* Footer */
footer {
  background: #000;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 768px) {
  .sobre-grid {
    flex-direction: column;
    text-align: center;
  }

  header nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #111;
    padding: 15px;
    border-radius: 8px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  header nav.active {
    display: block;
  }
}

/* Modal base */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

/* Conteúdo do modal */
.modal-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(50, 255, 126, 0.5);
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #32ff7e;
  text-align: center;
}

.modal-content label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #0d0d0d;
  color: #fff;
  margin-bottom: 15px;
}

.modal-content input:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #32ff7e;
  box-shadow: 0 0 8px rgba(50, 255, 126, 0.4);
}

.modal-content button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content button:hover {
  background: #00e676;
  color: #000;
}

/* Botão fechar */
.close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.close:hover {
  color: #32ff7e;
}

/* Animação modal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Faixa animada */
.faixa {
  background: #32ff7e;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;
}

.faixa-content {
  display: flex;
  gap: 100px;
  font-weight: bold;
  font-size: 1.1rem;
  animation: marquee 15s linear infinite;
}

.faixa-content span {
  display: inline-block;
}

/* Efeito duplicado para rolagem infinita */
.faixa-content:nth-child(2) {
  position: absolute;
  left: 100%;
  top: 0;
  animation-delay: 7.5s;
  /* metade do tempo da animação */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.faixa-neon {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
  background: #0b0b0b;
}

.faixa-neon span {
  font-weight: bold;
  color: #32ff7e;
  text-shadow: 0 0 8px #32ff7e, 0 0 20px #32ff7e;
  animation: neonBlink 3s infinite;
}

.faixa-neon span:nth-child(2) {
  animation-delay: .3s;
}

.faixa-neon span:nth-child(3) {
  animation-delay: .6s;
}

.faixa-neon span:nth-child(4) {
  animation-delay: .9s;
}

.faixa-neon span:nth-child(5) {
  animation-delay: 1.2s;
}

.faixa-neon span:nth-child(6) {
  animation-delay: 1.5s;
}

@keyframes neonBlink {

  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 8px #32ff7e, 0 0 20px #32ff7e;
  }

  50% {
    opacity: 0.4;
    text-shadow: none;
  }
}

/* Seção Sobre Nós */
.sobre {
  padding: 80px 20px;
  background: #111;
}

.sobre-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 300px;
}

.sobre-texto h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #32ff7e;
}

.sobre-texto p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.sobre-texto .highlight {
  color: #32ff7e;
  font-weight: bold;
}

.sobre-lista {
  list-style: none;
  margin-top: 20px;
}

.sobre-lista li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.sobre-lista li::before {
  content: "✔";
  color: #32ff7e;
  position: absolute;
  left: 0;
}

.sobre-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-img img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  /* sombra discreta */
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-grid {
    flex-direction: column;
    text-align: center;
  }

  .sobre-img img {
    max-width: 80%;
  }
}

.sobre-diferenciais {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sobre-diferenciais .item {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  background: #1a1a1a;
  padding: 12px 18px;
  border-radius: 8px;
  border-left: 4px solid #32ff7e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-diferenciais .item span {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #32ff7e;
}

.sobre-diferenciais .item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(50, 255, 126, 0.2);
}

.tecnologias {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.tecnologias h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.tecnologias .subtitulo {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.grid-tecnologias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tech-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s;
}

.tech-card h3 {
  color: #32ff7e;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: #32ff7e;
  box-shadow: 0 6px 18px rgba(50, 255, 126, 0.2);
}


.produtos {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.produtos h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.produtos .subtitulo {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card h3 {
  font-size: 1.3rem;
  color: #32ff7e;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.btn-link {
  font-size: 0.9rem;
  font-weight: bold;
  color: #32ff7e;
  text-decoration: none;
  transition: 0.3s;
}

.btn-link:hover {
  color: #00e676;
  padding-left: 5px;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #32ff7e;
  box-shadow: 0 8px 20px rgba(50, 255, 126, 0.15);
}

.produtos {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.produtos h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.produtos .subtitulo {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* Carrossel */
.carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

/* tira scroll no chrome */

/* Cards */
.carrossel .card {
  flex: 0 0 280px;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.carrossel .card h3 {
  font-size: 1.3rem;
  color: #32ff7e;
  margin-bottom: 10px;
}

.carrossel .card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Efeito hover */
.carrossel .card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(50, 255, 126, 0.2);
  border-color: #32ff7e;
}

.produtos {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.produtos h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.produtos .subtitulo {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.carrossel3d {
  width: 100%;
  padding: 60px 0;
}

.carrossel3d .swiper-wrapper {
  align-items: center;
  /* mantém slides alinhados no centro */
}

.carrossel3d .swiper-slide {
  width: 280px;
  /* largura fixa */
  height: 220px;
  /* altura fixa para consistência */
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #222;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.carrossel3d .swiper-slide h3 {
  font-size: 1.3rem;
  color: #32ff7e;
  margin-bottom: 10px;
}

.carrossel3d .swiper-slide p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Diferenciais */
.diferenciais {
  padding: 100px 20px;
  background: #0d0d0d;
  text-align: center;
}

.diferenciais h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #32ff7e;
}

.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.grid-diferenciais .card {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s;
  text-align: center;
}

.grid-diferenciais .card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #32ff7e;
}

.grid-diferenciais .card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.grid-diferenciais .card p {
  font-size: 0.95rem;
  color: #ccc;
  opacity: 0.9;
  line-height: 1.5;
}

/* Efeito hover */
.grid-diferenciais .card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #32ff7e;
  box-shadow: 0 8px 25px rgba(50, 255, 126, 0.2);
}

.missao {
  position: relative;
  padding: 120px 20px;
  background: url('../img/bg-missao.jpg') no-repeat center/cover;
  /* pode ser uma imagem inspiradora */
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.missao .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  /* escurece o fundo para destacar o texto */
  z-index: 1;
}

.missao-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.missao h2 {
  font-size: 2.4rem;
  color: #32ff7e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.missao .slogan {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.missao .slogan span {
  color: #32ff7e;
  text-shadow: 0 0 10px rgba(50, 255, 126, 0.5);
}

.missao .descricao {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}

/* Responsivo */
@media (max-width: 768px) {
  .missao {
    padding: 80px 20px;
  }

  .missao h2 {
    font-size: 2rem;
  }

  .missao .slogan {
    font-size: 1.4rem;
  }
}

.footer {
  background: linear-gradient(135deg, #0b0b0b, #111);
  padding: 60px 20px 20px;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer h3 {
  color: #32ff7e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer p,
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #32ff7e;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.social {
  display: flex;
  gap: 20px;
  font-size: 1.6rem;
}

.social a {
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: #32ff7e;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #888;
}

.footer {
  background: linear-gradient(135deg, #0b0b0b, #111);
  padding: 60px 20px 20px;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer h3 {
  color: #32ff7e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer p,
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #32ff7e;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.social {
  display: flex;
  gap: 15px;
  font-size: 1.4rem;
}

.social a {
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social a:hover {
  color: #32ff7e;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #888;
}

/* Onde Atuamos */
.onde-atuamos {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.onde-atuamos .background-globe {
  position: absolute;
  inset: 0;
  background: url('../img/mundi_01.gif') no-repeat center center;
  background-size: cover;
  z-index: 0;
  opacity: 55;
  /* deixa o texto legível */
}

.onde-atuamos .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.atuamos-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.atuamos-content .texto {
  flex: 1;
  max-width: 600px;
}

.atuamos-content h4 {
  color: #32ff7e;
  margin-bottom: 10px;
  font-weight: bold;
}

.atuamos-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.atuamos-content h2 .highlight {
  color: #32ff7e;
}

.atuamos-content p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ddd;
}

.atuamos-content .mapa img {
  max-width: 500px;
  border-radius: 10px;
  box-shadow: none;
  /* ✅ remove contorno verde */
  transition: transform 0.3s;
}

.atuamos-content .mapa img:hover {
  transform: scale(1.03);
}

/* Responsivo */
@media (max-width: 900px) {
  .atuamos-content {
    flex-direction: column;
    text-align: center;
  }

  .atuamos-content .mapa img {
    max-width: 100%;
  }
}

/* Bandeiras no Header */
.flags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.flags img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /* garante que fiquem redondas */
  border: 2px solid #32ff7e;
  /* borda neon */
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.flags img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.8);
}

/* Mobile */
@media (max-width: 768px) {
  .flags {
    margin-left: 0;
    margin-top: 10px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  /* ajuste para a sua imagem de fundo */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero .text-highlight {
  color: #00ff7f;
  text-shadow: 0 0 12px rgba(0, 255, 127, 0.7);
}

.hero-list li {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #ddd;
}

.hero-buttons .btn-primary {
  background: #00ff7f;
  border: none;
  color: #000;
  font-weight: 600;
}

.hero-buttons .btn-outline-light {
  border: 2px solid #00ff7f;
  color: #00ff7f;
  font-weight: 600;
}

.hero-buttons .btn-outline-light:hover {
  background: #00ff7f;
  color: #000;
}

#matrixRain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  /* transparência do efeito */
}

.hero .overlay {
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.consultor-btn {
  margin-top: 40px;
  text-align: center;
}

.consultor-btn .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  background: #32ff7e;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 15px #32ff7e;
  transition: 0.3s;
}

.consultor-btn .btn-primary:hover {
  background: #00e676;
  box-shadow: 0 0 25px #32ff7e;
}

.swiper-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #32ff7e;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border: 2px solid #32ff7e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #32ff7e;
  color: #000;
  transform: scale(1.1);
}

.logo img {
  height: 50px;   /* ajuste o tamanho da sua logo */
  width: auto;    /* mantém proporção */
  display: block;
}
/* ==== POPUP LGPD (versão dark GRFgraph) ==== */
.lgpd-popup {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.lgpd-box {
  background: #0a2540; /* azul escuro GRFgraph */
  color: #fff;
  border: 2px solid #32ff7e; /* verde neon */
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(50, 255, 126, 0.25);
  max-width: 480px;
  padding: 25px 30px;
  text-align: center;
  font-size: 0.95rem;
  animation: fadeInUp 0.5s ease;
}

.lgpd-box h5 {
  color: #32ff7e;
  font-weight: 700;
  margin-bottom: 10px;
}

.lgpd-box p {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5;
}

.lgpd-box a {
  color: #32ff7e;
  text-decoration: underline;
}

.lgpd-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lgpd-buttons .btn-cta {
  background: #32ff7e;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.lgpd-buttons .btn-cta:hover {
  background: #00e676;
  transform: scale(1.05);
}

.lgpd-buttons .btn-decline {
  background: transparent;
  border: 2px solid #bbb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.lgpd-buttons .btn-decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
