body {
  margin: 0;
  padding: 0;
  background-color: #121214;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  color: white;
}

.logo {
  width: 120px;
  margin-bottom: 10px;
  border-radius: 50%;
  box-shadow: 0 0 15px #ff1e1e55;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.box_one {
  margin-top: 80px;
  text-align: center;
}

.title_one {
  color: #ff1e1e;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 12px #ff1e1e;
}

.box_two {
  margin-top: 30px;
}

.form_box {
  background-color: #1e1e1e;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 350px; /* ou defina uma largura fixa, tipo 300px */
  margin: 0 auto;
}


.form_box:hover {
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.25);
}

@keyframes neonPisca {
  0%, 100% {
    text-shadow: 0 0 5px #000000, 0 0 10px #fafafa, 0 0 20px #000000;
    color: #fff;
  }
  50% {
    text-shadow: none;
    color: #ffffff;
  }
}

.form_box p {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  animation: neonPisca 2s infinite;
}


.list_button {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.button_zap,
.button_comunidade {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.button_zap {
  background-color: #ffe01b;
  color: #121214;
}

.button_zap:hover {
  background-color: #25D366;
  transform: scale(1.05);
  box-shadow: 0 0 15px #000000;
}

.button_comunidade {
  background-color: #ffe01b;
  color: #000000;
}

.button_comunidade:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 0 15px #000000;
}

.button_zap i,
.button_comunidade i {
  margin-right: 8px;
}

.yt-float {
  position: fixed;
  margin-bottom: 60px;
  bottom: 10px;
  width: 70px;
  height: 70px;
  background-color: #ff1e1e;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #ff1e1e88;
  font-size: 28px;
  z-index: 999;
  transition: 0.3s ease;
  box-shadow: 0 0 #ff1e1e
}

/* .yt-float:hover {
  background-color: #ff4c4c;
  transform: scale(1.1);
  box-shadow: 0 0 0 #ff1e1e;
} */

.bar_skorpion {
  margin-top: 30px;
  background-color: #ff1e1e;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  width: fit-content;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  box-shadow: 0 0 12px #ff1e1e;
}

.mensagem2 {
  text-align: center;
  color: white;
  max-width: 600px;
  margin:80px auto;
  padding: 0 10px;
  padding-top: 10px;
  word-wrap: break-word;
  white-space: normal;
  animation: piscar 3s infinite;
}

@keyframes piscar {
  20%, 100% { opacity: 1; }
  90% { opacity: 0; }
}

.videos-section {
  text-align: center;
}

.title_two {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,0,0,0.8);
  margin-bottom: 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.video-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,0,0.7);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* sempre 2 vídeos por linha no desktop */
  gap: 20px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr; /* no celular, 1 vídeo por linha */
  }
}

.cadeira-section {
  text-align: center;
  margin: 20px 0;
}

.cadeira-box {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px; /* Aumentei o espaço abaixo das imagens */
}

.cadeira-img {
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,0,0,0.6);
  transition: transform 0.3s ease;
}

.cadeira-img:hover {
  transform: scale(1.05);
}

.cadeira-button {
  text-align: center;
  margin-top: 20px; /* Dá respiro acima do botão */
}

.cadeira-box {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px; /* Aumentei o espaço abaixo das imagens */
}

.cadeira-box2 {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px; /* Aumentei o espaço abaixo das imagens */
}

.cadeira-img {
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,0,0,0.6);
  transition: transform 0.3s ease;
}

.cadeira-img2:hover {
  transform: scale(1.05);
}

.cadeira-button2 {
  text-align: center;
  margin-top: 20px; /* Dá respiro acima do botão */
}

.button_cadeira2 {
  display: inline-block;
  background: red;
  color: white;
  padding: 10px 50px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.button_cadeira2:hover {
  background: #810505;
}

.button_cadeira {
  display: inline-block;
  background: red;
  color: white;
  padding: 10px 50px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.button_cadeira:hover {
  background: #810505;
}

.contador-box {
  background: #1b1b1f;
  border: 2px solid #000000;
  border-radius: 15px;
  width: 350px;
  padding: 20px;
  text-align: center;
  color: white;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 0 20px #ff1a1a50;
  margin: 20px auto;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contador-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00000080;
}

.contador-box h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #000000;
}

.iframe-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.iframe-wrapper iframe {
  width: 300px;
  height: 80px;
  border: none;
  border-radius: 10px;
}

.contador-box p {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 8px #000000;
  margin: 0;
}

.text_button {
  color: white;
}