/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fundo geral com notas de dólar */
body {
  font-family: Arial, sans-serif;
  background: url('dinheiro.png') center center / cover no-repeat fixed;
  color: white;
  overflow-x: hidden;
  min-height: 100%;
  background-color: transparent;
}

/* Corrige fundo de todos os blocos */
body * {
  background-color: transparent !important;
}

/* Layout */
.layout {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 140px;
  background-color: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  height: auto;
  min-height: 100vh;
  flex-shrink: 0;
}

.sidebar img.logo {
  width: 60px;
  margin-bottom: 40px;
}

.sidebar a {
  color: #0ff;
  font-size: 20px;
  margin: 15px 0;
  text-decoration: none;
  transition: transform 0.2s;
  padding: 10px;
  touch-action: manipulation;
}
.sidebar a:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Conteúdo */
.content {
  flex: 1;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Container padrão */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Títulos */
.site-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #f0f;
}

.neon-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #f0f;
}

/* Seções */
section {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px 0;
  border-bottom: 1px solid #444;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.secao-preta {
  background-color: rgba(0, 0, 0, 0.9) !important;
  padding: 30px 0;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  margin: 30px 0;
  text-align: center;
}

/* Descrição */
.descricao-campanha {
  background-color: rgba(0, 0, 0, 0.9) !important;
  padding: 30px 0;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  color: white;
  margin: 30px 0;
  line-height: 1.6;
}

.descricao-campanha ul {
  margin-top: 15px;
  padding-left: 20px;
}

.descricao-campanha li {
  margin-bottom: 10px;
}

/* Banner */
.banner-img {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.cta-frase {
  margin-top: 20px;
  font-size: 20px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  font-weight: bold;
  animation: pulse 2s infinite;
  text-align: center;
  line-height: 1.2;
}

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

/* Vídeo */
video {
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 15px #000;
  background-color: transparent;
}

/* Carrossel */
.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide 30s linear infinite;
}

.carousel img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #444;
  box-shadow: 0 0 10px #000;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Formulário */
form input,
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #666;
  border-radius: 6px;
  background: #111;
  color: #fff;
}

form button {
  background-color: #0ff;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #00f0ff;
}

#contato form {
  max-width: 600px;
  margin: 0 auto;
}

/* Topo animado */
/* Letreiro fixo no topo */
/* Topo animado */
.header-strip {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px; /* <-- isso alinha verticalmente */
  background-color: #000 !important;
  color: #0ff;
  font-size: 22px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 10px #0ff, 0 0 20px #00f0ff;
  border-bottom: 2px solid #0ff;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

.marquee-content span {
  display: inline-block;
  padding-right: 50%; /* pode reduzir para agilizar repetição */
  white-space: nowrap; /* impede quebra */
  overflow: hidden;
  min-width: max-content;
  text-shadow: 0 0 10px #0ff, 0 0 20px #00f0ff;
}

.led-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  min-width: max-content;
  animation: marquee 45s linear infinite;
  animation-delay: -5s;
  text-shadow: 0 0 10px #0ff, 0 0 20px #00f0ff;
}


@keyframes marquee {
  0% { transform: translateX(20%); }  /* ou até 0% */
  100% { transform: translateX(-100%); }
}



/* Escudo */
.intro-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.shield-logo {
  width: 430px;
  height: auto;
  background-color: black;
  padding: 10px;
  border-radius: 12px;
}

.mobile-cta-msg {
  display: none;
  color: #FFD700;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 6px;
  text-shadow: 0 0 5px #FFD700;
  animation: blink 2s infinite;
}

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    align-items: center;
  }

  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
  }

  .sidebar img.logo {
    width: 80px;
    margin: 0 0 10px 0;
  }

  .sidebar a {
    font-size: 18px;
    margin: 6px 0;
    padding: 6px;
  }

  .qrcode-container {
    margin-top: 5px;
  }

  .qrcode-img {
    width: 120px;
    margin: 0;
  }

  .qrcode-label {
    font-size: 11px;
  }

  .content {
    padding: 10px;
    max-width: 100%;
  }

  .footer-lb {
    font-size: 14px;
    padding: 6px 4px;
    margin-top: -10px;
    line-height: 1.2;
  }

  .site-title {
    font-size: 24px;
    margin-top: 10px;
  }

  .neon-title {
    font-size: 20px;
  }

  /* ✅ CARROSSEL COM ANIMAÇÃO */
  .carousel {
    overflow: hidden !important; /* 🔒 impede rolagem manual */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
  }

  .carousel-track {
    display: flex;
    gap: 12px;
    width: max-content !important;
    animation: slide 20s linear infinite !important;
  }

  .carousel img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .cta-frase {
    font-size: 16px !important;
    margin-top: 8px;
    line-height: 1.3;
    text-align: center;
  }

  .mobile-cta-msg {
    display: block;
    font-size: 13px;
    color: #FFD700;
    font-weight: bold;
    text-align: center;
    margin-top: 8px;
    text-shadow: 0 0 5px #FFD700;
    animation: blink 2s infinite;
  }
}

.qrcode-container {
  margin-top: 20px;
  text-align: center;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qrcode-img {
  width: 120x;
  height: auto;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 6px #0ff);
}

.qrcode-label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #FFD700;
  animation: blink 1.2s infinite;
  text-shadow: 0 0 4px #FFD700;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.1; }
}

.footer-lb {
  width: 100%;
  background-color: #000 !important;
  color: #0ff;
  font-size: 13px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 14px 10px;
  border-top: 2px solid #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
  box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.6);
}



















.mobile-links-extra {
  display: none;
}

@media (max-width: 768px) {
  .mobile-links-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  
  

  .mobile-cta-msg {
    display: block;
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #FFD700;
  }

  .qrcode-container {
    margin-top: 0;
    text-align: center;
  }

  .qrcode-img {
    width: 120px;
    filter: drop-shadow(0 0 6px #0ff);
  }

  .qrcode-label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #FFD700;
    animation: blink 1.2s infinite;
    text-shadow: 0 0 4px #FFD700;
  }
}

