.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;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background: rgba(15, 15, 15, 0.6);
  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;
  position: relative;
}



/* ====== MENU DESKTOP ====== */
header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

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: 12px;
}

.flags img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #32ff7e;
  box-shadow: 0 0 8px rgba(50, 255, 126, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.flags img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.8);
}

/* ===== BOTÃO HAMBÚRGUER ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #32ff7e;
  cursor: pointer;
  background: transparent;
  border: none;
  margin-left: auto;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 900px) {
  .header-content {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1100;
  }

  .flags {
    position: absolute;
    right: 65px;
    top: 17px;
    gap: 8px;
  }

  header nav {
    position: absolute;
    top: 70px;
    right: 15px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 10px;
    padding: 15px 25px;
    display: none;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
    text-align: right;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  header nav.active {
    display: flex;
    animation: fadeInDown 0.25s ease-out;
  }

  header nav ul {
    flex-direction: column;
    gap: 12px;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* Hero moderno - Psicologia Visual */
.hero {
  position: relative;
  text-align: center;
  padding: 160px 20px 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== MAPA MUNDI ANIMADO HERO ===== */
.hero-map-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Mapa mundi de fundo SVG */
.world-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  filter: brightness(0.6) contrast(1.3) hue-rotate(200deg) saturate(1);
}

.hero-map-container svg.world-map-bg {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 2000px;
  min-height: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-map-container svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 1200px;
  min-height: 600px;
  filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
}

/* Melhorar visualização dos continentes */
.hero-map .continents path {
  transition: opacity 0.3s ease;
}

.hero-map .continents:hover path {
  opacity: 0.25;
}

/* Animação da linha do caminho - desenha a rota */
#route-path {
  animation: drawRoute 8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

@keyframes drawRoute {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  70% {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
  85% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
}

/* Pontos das cidades */
.city-point {
  animation: fadeInCity 1s ease-in 2s both;
}

.city-point text {
  font-family: "Inter", Arial, sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

@keyframes fadeInCity {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bh-point {
  animation-delay: 0s;
}

.pa-point {
  animation-delay: 3s;
}

/* Partículas ao longo da rota */
.route-particle {
  filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.9));
  animation: particlePulse 1.5s ease-in-out infinite;
}

@keyframes particlePulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Adicionar mais partículas via CSS (pseudo-elementos) */
.hero-map-container::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  animation: particleMove1 10s linear infinite;
  opacity: 0.7;
}

.hero-map-container::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: #2563EB;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.8);
  animation: particleMove2 12s linear infinite;
  opacity: 0.6;
}

@keyframes particleMove1 {
  0% {
    left: 23%;
    top: 53%;
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    left: 87%;
    top: 47%;
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

@keyframes particleMove2 {
  0% {
    left: 23%;
    top: 53%;
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  85% {
    left: 87%;
    top: 47%;
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}

/* Responsividade do mapa */
@media (max-width: 768px) {
  .hero-map-container {
    opacity: 0.4;
  }

  .hero-map {
    min-width: 800px;
    min-height: 400px;
  }

  .city-point text {
    font-size: 10px;
  }

  #route-path {
    stroke-width: 2;
  }
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.1) 100%);
  z-index: 2;
  backdrop-filter: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green-light);
  animation: fadeInDown 1s ease forwards;
  box-shadow: var(--shadow-md);
}

.hero-badge::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: fadeInDown 1.2s ease forwards;
  color: var(--text-primary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero h1 .text-highlight {
  color: var(--accent-green);
  font-weight: 800;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  position: relative;
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 50px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.3s;
  color: var(--text-secondary);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.6s;
}

.metric-item {
  text-align: center;
}

.metric-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-trust {
  margin-top: 50px;
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.9s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust i {
  color: var(--accent-green);
  margin-right: 6px;
  font-size: 1rem;
}

.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: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.8s;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #fff;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-green);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-blue);
  transition: width 0.3s ease;
  z-index: 0;
}

.btn-secondary span,
.btn-secondary i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary:hover::before {
  width: 100%;
}

/* 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: 120px 20px 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* 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);
  }
}

/* Modal Contato - Estilos específicos */
#modal-contato .modal-content {
  max-width: 480px;
}

#modal-contato .form-group {
  margin-bottom: 20px;
}

#modal-contato .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #32ff7e;
  font-weight: 600;
  font-size: 0.95rem;
}

#modal-contato .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(50, 255, 126, 0.2);
  border-radius: 8px;
  background: #0d0d0d;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#modal-contato .form-group input:focus {
  outline: none;
  border-color: #32ff7e;
  box-shadow: 0 0 12px rgba(50, 255, 126, 0.3);
  background: #111;
}

#modal-contato .form-group input::placeholder {
  color: #666;
}

#modal-contato .btn-submit-contato {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #32ff7e, #00e676);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 5px 20px rgba(50, 255, 126, 0.3);
}

#modal-contato .btn-submit-contato:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 255, 126, 0.5);
}

#modal-contato .btn-submit-contato:active {
  transform: translateY(0);
}

.close-modal-contato,
#btn-fechar-modal,
#btn-fechar-modal-produto {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  line-height: 1;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  z-index: 10;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.close-modal-contato:hover,
#btn-fechar-modal:hover,
#btn-fechar-modal-produto:hover {
  color: var(--text-primary);
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--primary-blue);
  transform: scale(1.1) rotate(90deg);
  box-shadow: var(--shadow-md);
}

.close-modal-contato:active,
#btn-fechar-modal:active,
#btn-fechar-modal-produto:active {
  transform: scale(0.95) rotate(90deg);
}

/* ==== MODAL SUCESSO ==== */
.modal-sucesso-content {
  text-align: center;
  padding: 40px 30px;
}

.sucesso-icon {
  font-size: 4rem;
  color: #32ff7e;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease-out;
}

.sucesso-icon i {
  text-shadow: 0 0 30px rgba(50, 255, 126, 0.6);
}

.modal-sucesso-content h2 {
  color: #32ff7e;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.modal-sucesso-content .modal-subtitle {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.modal-sucesso-content .modal-message {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Remover spinner já que não vamos redirecionar */
.loading-spinner {
  display: none;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== MODAL PRODUTO MELHORADO ===== */
.modal-produto-content {
  max-width: 1100px;
  width: 95%;
  max-height: 95vh;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.98) 100%);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    var(--shadow-glow);
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-produto-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  border-radius: 24px 24px 0 0;
}

.modal-produto-content #produto-conteudo {
  padding: 50px 45px 45px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.produto-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  margin-bottom: 10px;
}

.modal-produto-content h2 {
  color: var(--text-primary);
  font-size: 2.4rem;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-produto-content .modal-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  text-align: left;
  line-height: 1.7;
  font-weight: 400;
}

.produto-beneficios {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
  border-radius: 20px;
  padding: 30px 35px;
  border: 1px solid var(--border-color);
  margin: 0;
  flex: 0 1 auto;
  overflow-y: auto;
  max-height: 50vh;
}

.produto-beneficios::-webkit-scrollbar {
  width: 8px;
}

.produto-beneficios::-webkit-scrollbar-track {
  background: rgba(37, 99, 235, 0.1);
  border-radius: 4px;
}

.produto-beneficios::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
  border-radius: 4px;
}

.produto-beneficios::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--accent-green-dark));
}

.produto-beneficios h3 {
  font-size: 1.3rem !important;
  margin: 0 0 25px 0 !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  text-align: left !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.produto-beneficios h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
  border-radius: 2px;
}

.produto-beneficios ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.produto-beneficios ul li {
  padding: 14px 18px !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

.produto-beneficios ul li:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(5px);
  color: var(--text-primary) !important;
}

.produto-beneficios ul li i {
  color: var(--accent-green) !important;
  font-size: 1rem !important;
  margin: 0 !important;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.produto-beneficios ul li span {
  flex: 1;
}

.produto-agendamento {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.12));
  border-radius: 16px;
  padding: 25px 30px;
  margin-top: 0;
  flex-shrink: 0;
  min-height: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.produto-agendamento::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
}

.produto-agendamento h3 {
  font-size: 1.2rem !important;
  margin: 0 0 18px 0 !important;
  text-align: left !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.produto-agendamento h3::before {
  content: '📅';
  font-size: 1.3rem;
}

.produto-agendamento .form-group {
  margin-bottom: 16px;
}

.produto-agendamento .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.produto-agendamento .form-group.half {
  flex: 1;
}

.produto-agendamento label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.produto-agendamento input,
.produto-agendamento textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.produto-agendamento input:focus,
.produto-agendamento textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), var(--shadow-md);
  background: rgba(15, 23, 42, 0.8);
}

.produto-agendamento input::placeholder,
.produto-agendamento textarea::placeholder {
  color: var(--text-muted);
}

.produto-agendamento textarea {
  resize: vertical;
  min-height: 70px;
  max-height: 100px;
  font-family: inherit;
}

.produto-cta-modal {
  margin-top: 10px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.btn-produto-modal {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-produto-modal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

/* ==== FAIXA ANIMADA CORRIGIDA ==== */
.faixa {
  background: #32ff7e;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.faixa span {
  display: inline-block;
  padding: 15px 50px;
  font-weight: bold;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==== FAIXA-NEON ==== */
.faixa-neon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* ✅ permite quebrar em telas pequenas */
  gap: 20px;
  padding: 12px 10px;
  background: #0b0b0b;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.faixa-neon span {
  font-weight: bold;
  color: #32ff7e;
  text-shadow: 0 0 8px #32ff7e, 0 0 20px #32ff7e;
  animation: neonBlink 3s infinite;
  flex-shrink: 0;
  /* ✅ evita deformação */
}

.faixa-neon span:nth-child(2) {
  animation-delay: 0.3s;
}

.faixa-neon span:nth-child(3) {
  animation-delay: 0.6s;
}

.faixa-neon span:nth-child(4) {
  animation-delay: 0.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;
  }
}

/* ==== MOBILE AJUSTE ==== */
@media (max-width: 768px) {
  .faixa span {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .faixa-neon {
    flex-direction: column;
    /* ✅ em telas menores, organiza em colunas */
    gap: 8px;
    text-align: center;
  }

  .faixa-neon span {
    font-size: 0.95rem;
  }
}


/* 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;
}

/* ===== SEÇÃO PRODUTOS MELHORADA ===== */
.produtos {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1E293B 100%);
  text-align: center;
  position: relative;
}

.produtos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.carrossel3d {
  width: 100%;
  padding: 70px 0 50px;
  position: relative;
}

.carrossel3d .swiper-wrapper {
  align-items: stretch;
  padding: 20px 0;
}

.carrossel3d .swiper-slide {
  width: 340px;
  height: auto;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.card-produto {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.95) 100%);
  border-radius: 24px;
  padding: 40px 35px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-produto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.card-produto:hover::before {
  transform: scaleX(1);
}

.card-produto:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(51, 65, 85, 0.95) 100%);
}

.produto-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
}

.card-produto:hover .produto-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(16, 185, 129, 0.3));
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: var(--shadow-lg);
}

.produto-icon i {
  font-size: 2.5rem;
  color: var(--accent-green);
  transition: transform 0.4s ease;
}

.card-produto:hover .produto-icon i {
  transform: scale(1.1);
}

.card-produto h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.produto-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
  min-height: 48px;
}

.produto-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
  text-align: left;
}

.produto-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.card-produto:hover .produto-features li {
  color: var(--text-primary);
}

.produto-features li i {
  color: var(--accent-green);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.btn-produto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  margin-top: auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-produto::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-produto span,
.btn-produto i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-produto:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

.btn-produto:hover::before {
  left: 0;
}

.btn-produto:hover i {
  transform: translateX(4px);
}

/* Paginação do Swiper */
.swiper-pagination {
  position: relative;
  margin-top: 40px;
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--accent-green);
  opacity: 1;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Responsividade Produtos */
@media (max-width: 768px) {
  .produtos {
    padding: 60px 20px;
  }

  .carrossel3d {
    padding: 40px 0 30px;
  }

  .carrossel3d .swiper-slide {
    width: 300px;
    min-height: 400px;
  }

  .card-produto {
    padding: 30px 25px;
  }

  .produto-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .produto-icon i {
    font-size: 2rem;
  }

  .card-produto h3 {
    font-size: 1.4rem;
  }

  .produto-desc {
    font-size: 0.95rem;
    min-height: auto;
  }

  .produto-features {
    margin-bottom: 25px;
  }

  .produto-features li {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .btn-produto {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .carrossel3d .swiper-slide {
    width: 280px;
    min-height: 380px;
  }

  .card-produto {
    padding: 25px 20px;
  }
}

/* Diferenciais */
.diferenciais {
  padding: 100px 20px;
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
  text-align: center;
  position: relative;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 255, 126, 0.3), transparent);
}

.diferenciais h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.card-diferencial {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
  padding: 40px 35px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.card-diferencial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: top;
}

.card-diferencial:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(51, 65, 85, 0.9) 100%);
}

.card-diferencial:hover::before {
  transform: scaleY(1);
}

.diferencial-metrica {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--accent-green-light);
  font-weight: 600;
}

.diferencial-metrica strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-green);
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.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);
}

/* ===== AJUSTE LOGO RESPONSIVO ===== */
.logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

/* Versão menor no mobile */
@media (max-width: 900px) {
  .logo img {
    height: 38px;
    /* ✅ reduz a altura da logo */
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 32px;
    /* ✅ ainda menor em celulares pequenos */
  }
}

/* ==== 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);
  }
}

/* ==== LGPD Bar (rodapé fixo) ==== */
.lgpd-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 37, 64, 0.95);
  color: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  z-index: 9999;
  border-top: 2px solid #32ff7e;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
}

.lgpd-bar a {
  color: #32ff7e;
  text-decoration: underline;
}

.lgpd-bar .btn-cta {
  background: #32ff7e;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lgpd-bar .btn-cta:hover {
  background: #00e676;
  transform: scale(1.05);
}

/* Botão de reabrir */
.lgpd-reopen {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #0a2540;
  color: #fff;
  border: 2px solid #32ff7e;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  transition: 0.3s;
}

.lgpd-reopen:hover {
  background: #32ff7e;
  color: #000;
}

/* ==== LGPD Bar (rodapé fixo) ==== */
.lgpd-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 37, 64, 0.95);
  color: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  z-index: 9999;
  border-top: 2px solid #32ff7e;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
}

.lgpd-bar a {
  color: #32ff7e;
  text-decoration: underline;
}

.lgpd-bar .btn-cta {
  background: #32ff7e;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lgpd-bar .btn-cta:hover {
  background: #00e676;
  transform: scale(1.05);
}

/* Botão de reabrir */
.lgpd-reopen {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #0a2540;
  color: #fff;
  border: 2px solid #32ff7e;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  transition: 0.3s;
}

.lgpd-reopen:hover {
  background: #32ff7e;
  color: #000;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #32ff7e;
  cursor: pointer;
  margin-left: auto;
}

/* ===== MENU MOBILE (ajustado para largura correta) ===== */
@media (max-width: 900px) {
  header nav {
    position: absolute;
    top: 70px;
    right: 10px;
    left: 10px;
    /* ✅ adiciona limite à esquerda */
    background: rgba(10, 10, 10, 0.96);
    border-radius: 10px;
    padding: 18px 20px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    /* alinha texto à direita */
    gap: 15px;
    width: auto;
    max-width: calc(100% - 20px);
    /* ✅ nunca ultrapassa a tela */
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow-x: hidden;
    /* ✅ evita scroll lateral */
  }

  header nav.active {
    display: flex;
    animation: fadeInDown 0.25s ease-out;
  }

  header nav ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  header nav ul li a {
    display: inline-block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    transition: color 0.3s;
  }

  header nav ul li a:hover {
    color: #32ff7e;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 2rem;
    color: #32ff7e;
    cursor: pointer;
    z-index: 1100;
  }

  .flags {
    position: absolute;
    right: 70px;
    top: 20px;
    display: flex;
    gap: 8px;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background: rgba(15, 15, 15, 0.6);
  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;
  position: relative;
}



/* ====== MENU DESKTOP ====== */
header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

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: 12px;
}

.flags img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #32ff7e;
  box-shadow: 0 0 8px rgba(50, 255, 126, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.flags img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.8);
}

/* ===== BOTÃO HAMBÚRGUER ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #32ff7e;
  cursor: pointer;
  background: transparent;
  border: none;
  margin-left: auto;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 900px) {
  .header-content {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1100;
  }

  .flags {
    position: absolute;
    right: 65px;
    top: 17px;
    gap: 8px;
  }

  header nav {
    position: absolute;
    top: 70px;
    right: 15px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 10px;
    padding: 15px 25px;
    display: none;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
    text-align: right;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  header nav.active {
    display: flex;
    animation: fadeInDown 0.25s ease-out;
  }

  header nav ul {
    flex-direction: column;
    gap: 12px;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.social {
  display: flex;
  gap: 20px;
  font-size: 1.8rem;
  justify-content: flex-start;
  align-items: center;
}

.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.15);
}

.social i {
  font-size: 1.8rem;
}

/* ===== SEÇÃO AGENDAR REUNIÃO ===== */
.agendar-reuniao {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agendar-reuniao h2 {
  font-size: 2.2rem;
  color: #32ff7e;
  margin-bottom: 10px;
}

.agendar-reuniao .subtitulo {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* ===== FORMULÁRIO ===== */
.form-reuniao {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-reuniao label {
  font-weight: bold;
  color: #32ff7e;
  margin-bottom: 5px;
  display: block;
}

.form-reuniao input,
.form-reuniao textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-reuniao input:focus,
.form-reuniao textarea:focus {
  outline: none;
  border-color: #32ff7e;
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.4);
}

.form-reuniao button {
  align-self: center;
  background: #32ff7e;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 0 15px #32ff7e;
}

.form-reuniao button:hover {
  background: #00e676;
  box-shadow: 0 0 25px #32ff7e;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .agendar-reuniao {
    padding: 60px 20px;
  }

  .agendar-reuniao h2 {
    font-size: 1.8rem;
  }

  .form-reuniao {
    width: 100%;
  }
}

/* ===== MISSÃO + AGENDAR EM COLUNAS ===== */
.missao-agendar {
  position: relative;
  padding: 100px 20px;
  background: url("../img/bg-missao.jpg") no-repeat center/cover;
  color: #fff;
  overflow: hidden;
}

.missao-agendar .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.missao-agendar-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.missao-content,
.agendar-content {
  flex: 1;
  min-width: 300px;
}

/* ===== LADO ESQUERDO (MISSÃO) ===== */
.missao-content h2 {
  font-size: 2.2rem;
  color: #32ff7e;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.missao-content .slogan {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.missao-content .slogan span {
  color: #32ff7e;
  text-shadow: 0 0 10px rgba(50, 255, 126, 0.5);
}

.missao-content .descricao {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.7;
}

/* ===== LADO DIREITO (AGENDAR) ===== */
.agendar-content h2 {
  font-size: 2rem;
  color: #32ff7e;
  margin-bottom: 10px;
}

.agendar-content .subtitulo {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-reuniao {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-reuniao label {
  font-weight: bold;
  color: #32ff7e;
}

.form-reuniao input,
.form-reuniao textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.form-reuniao input:focus,
.form-reuniao textarea:focus {
  outline: none;
  border-color: #32ff7e;
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.4);
}

.form-reuniao button {
  align-self: flex-start;
  background: #32ff7e;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 0 15px #32ff7e;
}

.form-reuniao button:hover {
  background: #00e676;
  box-shadow: 0 0 25px #32ff7e;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .missao-agendar-grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .form-reuniao {
    align-items: center;
  }

  .form-reuniao button {
    align-self: center;
  }
}
/* Campos de data e hora */
.form-reuniao input[type="date"],
.form-reuniao input[type="time"] {
  color-scheme: dark; /* deixa os seletores combinando com o tema escuro */
}

.form-reuniao input[type="date"]::-webkit-calendar-picker-indicator,
.form-reuniao input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.5);
  cursor: pointer;
}
/* === Estilização dos campos de data/hora === */
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group.half {
  flex: 1;
  min-width: 150px;
}

/* Torna os seletores claros e visíveis no tema escuro */
.form-reuniao input[type="date"],
.form-reuniao input[type="time"] {
  color-scheme: dark;
  background: #111;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  transition: 0.3s;
}

.form-reuniao input[type="date"]:focus,
.form-reuniao input[type="time"]:focus {
  outline: none;
  border-color: #32ff7e;
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.4);
}

/* Ícones do calendário e relógio visíveis no modo escuro */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.5);
  cursor: pointer;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* ===== CTA HEADER ===== */
.btn-header-cta {
  padding: 10px 20px;
  background: #32ff7e;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(50, 255, 126, 0.4);
  white-space: nowrap;
  margin-left: 0; /* Removido margin-left, usando gap do header */
  cursor: pointer;
}

/* Espaçamento entre bandeiras e botão CTA no header */
.header-content .flags {
  margin-right: 25px;
}

.btn-header-cta:hover {
  background: #00e676;
  box-shadow: 0 0 15px rgba(50, 255, 126, 0.6);
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .btn-header-cta {
    display: none; /* Esconde em mobile, pode ser adicionado ao menu */
  }
}

/* Ajuste do header para incluir o CTA */
.header-content {
  gap: 15px;
}

@media (min-width: 901px) {
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* ===== SEÇÃO HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.85rem;
  color: var(--accent-green-light);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-sm);
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-header .highlight {
  color: var(--accent-green);
  font-weight: 800;
  text-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.section-header .subtitulo {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== SEÇÃO SOLUÇÕES ===== */
.solucoes {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
  text-align: center;
  position: relative;
}

.o-que-fazemos {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
  text-align: center;
  position: relative;
}

.o-que-fazemos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 255, 126, 0.3), transparent);
}

.o-que-fazemos h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.o-que-fazemos h2 .highlight {
  color: #32ff7e;
  text-shadow: 0 0 20px rgba(50, 255, 126, 0.3);
}

.o-que-fazemos .subtitulo {
  font-size: 1.15rem;
  color: #aaa;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.card-servico {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.card-servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.card-servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #32ff7e, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card-servico:hover::before {
  transform: scaleX(1);
}

.card-servico:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(51, 65, 85, 0.9) 100%);
}

.card-servico:hover::before {
  transform: scaleX(1);
}

.icon-servico {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(16, 185, 129, 0.15));
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.icon-servico i {
  font-size: 2.2rem;
  color: var(--accent-green);
  transition: transform 0.4s ease;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.card-servico:hover .icon-servico {
  background: linear-gradient(135deg, rgba(50, 255, 126, 0.2), rgba(50, 255, 126, 0.1));
  border-color: rgba(50, 255, 126, 0.4);
  transform: scale(1.1);
}

.card-servico:hover .icon-servico i {
  transform: scale(1.1);
}

.card-servico h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-servico p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 25px 0;
}

.servico-beneficios {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  text-align: left;
}

.servico-beneficios li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.servico-beneficios li i {
  color: var(--accent-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.servico-beneficios li {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.card-servico:hover .servico-beneficios li {
  color: var(--text-primary);
}

.solucoes-cta {
  margin-top: 60px;
  text-align: center;
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.beneficios {
  padding: 80px 20px;
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
  text-align: center;
  position: relative;
}

.beneficios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 255, 126, 0.3), transparent);
}

.beneficios h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.beneficios h2 .highlight {
  color: #32ff7e;
  text-shadow: 0 0 20px rgba(50, 255, 126, 0.3);
}

.beneficios .subtitulo {
  font-size: 1.15rem;
  color: #aaa;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.card-beneficio {
  background: linear-gradient(135deg, #1a1a1a 0%, #1f1f1f 100%);
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid rgba(50, 255, 126, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card-beneficio::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #32ff7e, transparent);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.card-beneficio:hover::after {
  transform: scaleY(1);
}

.card-beneficio:hover {
  transform: translateY(-8px) translateX(5px);
  border-color: rgba(50, 255, 126, 0.4);
  box-shadow: 0 12px 40px rgba(50, 255, 126, 0.15);
  background: linear-gradient(135deg, #1f1f1f 0%, #242424 100%);
}

.icon-beneficio {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(50, 255, 126, 0.1), rgba(50, 255, 126, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(50, 255, 126, 0.2);
  transition: all 0.4s ease;
}

.icon-beneficio i {
  font-size: 1.8rem;
  color: #32ff7e;
  transition: transform 0.4s ease;
}

.card-beneficio:hover .icon-beneficio {
  background: linear-gradient(135deg, rgba(50, 255, 126, 0.2), rgba(50, 255, 126, 0.1));
  border-color: rgba(50, 255, 126, 0.4);
  transform: scale(1.1);
}

.card-beneficio:hover .icon-beneficio i {
  transform: rotate(5deg) scale(1.1);
}

.card-beneficio h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.card-beneficio p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.7;
  margin: 0;
}

/* ===== SEÇÃO PROVA SOCIAL ===== */
.prova-social {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
  text-align: center;
  position: relative;
}

.prova-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 255, 126, 0.3), transparent);
}

.prova-social h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.prova-social h2 .highlight {
  color: #32ff7e;
  text-shadow: 0 0 20px rgba(50, 255, 126, 0.3);
}

.prova-social .subtitulo {
  font-size: 1.15rem;
  color: #aaa;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.grid-prova-social {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

.card-metrica {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
  padding: 45px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.card-metrica::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #32ff7e, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card-metrica:hover::before {
  transform: scaleX(1);
}

.card-metrica:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(51, 65, 85, 0.9) 100%);
}

.card-metrica .numero {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 15px;
  line-height: 1;
  transition: transform 0.4s ease;
  letter-spacing: -0.02em;
  text-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.card-metrica:hover .numero {
  transform: scale(1.1);
}

.card-metrica .label {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.metric-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 400;
}

.depoimentos {
  max-width: 850px;
  margin: 0 auto;
}

.depoimento-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.95) 100%);
  padding: 55px 50px;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.depoimento-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(50, 255, 126, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.depoimento-card .quote {
  font-size: 5.5rem;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 30px;
  opacity: 0.25;
  font-family: Georgia, serif;
  position: relative;
  top: -15px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.depoimento-card .texto-depoimento {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 35px;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.autor-depoimento {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.autor-depoimento strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.autor-avatar {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(37, 99, 235, 0.3);
}

.autor-avatar i {
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.autor-depoimento {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.autor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(50, 255, 126, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #32ff7e;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.autor-info {
  flex: 1;
}

.autor-depoimento strong {
  display: block;
  margin-bottom: 5px;
}

.autor-depoimento span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0b0b0b 0%, #111 50%, #0b0b0b 100%);
  text-align: center;
  border-top: 1px solid rgba(50, 255, 126, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(50, 255, 126, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.cta-final h2 .highlight {
  color: #32ff7e;
  text-shadow: 0 0 30px rgba(50, 255, 126, 0.5);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-subtitulo {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-beneficio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 1rem;
}

.cta-beneficio-item i {
  color: #32ff7e;
  font-size: 1.1rem;
}

.cta-garantia {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #999;
}

.cta-garantia i {
  color: #32ff7e;
  margin-right: 5px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-cta-grande {
  padding: 20px 45px;
  font-size: 1.15rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-cta-grande::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta-grande:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta-grande span {
  position: relative;
  z-index: 1;
}

.btn-cta-grande.btn-primary {
  background: linear-gradient(135deg, #32ff7e, #00e676);
  color: #000;
  box-shadow: 0 5px 25px rgba(50, 255, 126, 0.4);
  border: none;
}

.btn-cta-grande.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(50, 255, 126, 0.6);
  transform: translateY(-3px) scale(1.02);
}

.btn-cta-grande.btn-secondary {
  border: 2px solid #32ff7e;
  color: #32ff7e;
  background: transparent;
  position: relative;
}

.btn-cta-grande.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #32ff7e;
  transition: left 0.4s ease;
  z-index: 0;
}

.btn-cta-grande.btn-secondary span {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn-cta-grande.btn-secondary:hover {
  border-color: #32ff7e;
  box-shadow: 0 5px 25px rgba(50, 255, 126, 0.4);
  transform: translateY(-3px);
}

.btn-cta-grande.btn-secondary:hover::after {
  left: 0;
}

.btn-cta-grande.btn-secondary:hover span {
  color: #000;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-metrics {
    gap: 20px;
  }

  .metric-number {
    font-size: 1.8rem;
  }

  .metric-label {
    font-size: 0.85rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header .subtitulo {
    font-size: 1rem;
  }

  .o-que-fazemos,
  .beneficios,
  .prova-social,
  .solucoes,
  .diferenciais {
    padding: 60px 20px;
  }

  .o-que-fazemos h2,
  .beneficios h2,
  .prova-social h2 {
    font-size: 2rem;
  }

  .o-que-fazemos .subtitulo,
  .beneficios .subtitulo,
  .prova-social .subtitulo {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .grid-servicos,
  .grid-beneficios {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-prova-social {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-servico,
  .card-beneficio {
    padding: 30px 20px;
  }

  .icon-servico,
  .icon-beneficio {
    width: 60px;
    height: 60px;
  }

  .icon-servico i,
  .icon-beneficio i {
    font-size: 1.5rem;
  }

  .card-metrica {
    padding: 30px 15px;
  }

  .card-metrica .numero {
    font-size: 2.5rem;
  }

  .depoimento-card {
    padding: 35px 25px;
  }

  .depoimento-card .quote {
    font-size: 4rem;
  }

  .depoimento-card .texto-depoimento {
    font-size: 1rem;
  }

  .cta-final {
    padding: 70px 20px;
  }

  .cta-final h2 {
    font-size: 2rem;
  }

  .cta-subtitulo {
    font-size: 1.05rem;
    margin-bottom: 35px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-cta-grande {
    width: 100%;
    max-width: 320px;
    padding: 18px 35px;
    font-size: 1.05rem;
  }
}

/* ===== WIDGET DE CHAT FLUTUANTE ===== */
.chat-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  animation: fadeInUp 0.5s ease-out;
}

.chat-bubble {
  position: relative;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  max-width: 60px;
}

.chat-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2ee576, #20a895);
}

.chat-bubble:active {
  transform: translateY(-1px);
}

.chat-bubble-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.chat-icon {
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.chat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chat-text {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsividade do modal produto */
@media (max-width: 768px) {
  .modal-produto-content {
    max-width: 98%;
    max-height: 98vh;
    border-radius: 20px;
  }

  .modal-produto-content #produto-conteudo {
    padding: 40px 25px 30px;
    gap: 25px;
  }

  .modal-produto-content h2 {
    font-size: 1.8rem;
  }

  .modal-produto-content .modal-subtitle {
    font-size: 1rem;
  }

  .produto-beneficios {
    max-height: 40vh;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .produto-beneficios h3 {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
  }

  .produto-beneficios ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .produto-beneficios ul li {
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
  }

  .produto-agendamento {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .produto-agendamento h3 {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
  }

  .produto-agendamento .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .produto-agendamento input,
  .produto-agendamento textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .produto-agendamento .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .close-modal-contato,
  #btn-fechar-modal-produto {
    right: 15px;
    top: 15px;
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }
}

/* Responsividade do widget de chat */
@media (max-width: 768px) {
  .chat-widget {
    bottom: 75px;
    right: 15px;
  }

  .chat-bubble {
    min-width: 180px;
    max-width: 200px;
    padding: 12px 16px;
  }

  .chat-text {
    font-size: 0.85rem;
  }

  .chat-icon {
    width: 100%;
    height: 100%;
  }

  .chat-avatar {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .chat-widget {
    bottom: 70px;
    right: 10px;
  }

  .chat-bubble {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    padding: 6px;
  }

  .chat-text {
    font-size: 0.8rem;
  }

  .chat-icon {
    width: 100%;
    height: 100%;
  }

  .chat-avatar {
    width: 100%;
    height: 100%;
  }
}

/* ===== CTA FIXO FLUTUANTE MELHORADO ===== */
.cta-fixo {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
  animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-fixo.visible {
  display: block;
}

.btn-cta-fixo {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
  color: #fff;
  padding: 20px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow:
    0 10px 40px rgba(37, 99, 235, 0.4),
    0 0 0 0 rgba(37, 99, 235, 0.7),
    0 0 0 0 rgba(16, 185, 129, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-cta-fixo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-cta-fixo:hover::before {
  left: 100%;
}

.btn-cta-fixo:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 15px 50px rgba(37, 99, 235, 0.6),
    0 0 0 8px rgba(37, 99, 235, 0.2),
    0 0 0 16px rgba(16, 185, 129, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-fixo:active {
  transform: translateY(-4px) scale(1.05);
}

.btn-cta-fixo i {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: bounceIcon 2s ease-in-out infinite;
}

.btn-cta-fixo span {
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 10px 40px rgba(37, 99, 235, 0.4),
      0 0 0 0 rgba(37, 99, 235, 0.7),
      0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow:
      0 10px 40px rgba(37, 99, 235, 0.5),
      0 0 0 4px rgba(37, 99, 235, 0.3),
      0 0 0 8px rgba(16, 185, 129, 0.2);
  }
}

@keyframes bounceIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .cta-fixo {
    left: 20px;
    right: 20px;
    bottom: 25px;
    transform: none;
    width: auto;
  }

  .cta-fixo.visible {
    display: block;
  }

  .btn-cta-fixo {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
    font-size: 1rem;
    gap: 12px;
  }

  .btn-cta-fixo i {
    font-size: 1.2rem;
  }

  @keyframes slideUpFade {
    from {
      opacity: 0;
      transform: translateY(30px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}