/* RESET UNIVERSAL - Aplica em todos os elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* Impede a tela de "sambar" para os lados */
  width: 100%;
}
/*index*/

body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

  .topo {
    background-color: #000000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .topo img {
    height: 150px;
  }

  .menu-botoes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .menu-botoes a {
    background-color: #2196f3;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .menu-botoes a:hover {
    background-color: #42a5f5;
  }

  .meio {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px 20px 60px;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }

  .conteudo {
    max-width: 600px;
    width: 100%;
    margin-bottom: 40px;
  }

  .conteudo h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .conteudo p {
    color: #cccccc;
    margin-bottom: 0;
  }

  /* CARROSSEL DE FILMES */

  .carrossel-filmes {
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    position: relative;
  }

  .carrossel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
  }

  .carrossel::-webkit-scrollbar {
    display: none;
  }

  .carrossel img {
    height: 220px;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
    flex-shrink: 0;
  }

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

  .seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    font-size: 2em;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, transform 0.2s;
    user-select: none;
    width: auto;
margin-bottom: 0;
  }

  .seta:hover {
    background-color: #2196f3;
    transform: translateY(-50%) scale(1.1);
  }

  .seta.esquerda {
    left: 10px;
  }

  .seta.direita {
    right: 10px;
  }

  .rodape {
    background-color: #000000;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    color: #cccccc;
  }

  .redes-sociais {
    margin-bottom: 8px;
  }

  .redes-sociais a {
    color: #cccccc;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
  }

  .redes-sociais a:hover {
    color: #42a5f5;
  }

  /*catalago*/
  body.catalogo {
      
      font-family: Arial, sans-serif;
      background-color: #121a2f;
      color: white;
      padding: 40px;
      max-width: 900px;
      margin: auto;
    }

    .titulo-topo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
    }
      
   /* Setinha voltar */
    .voltar {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 18px;
      color: #2196f3;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .voltar:hover {
      color: #42a5f5;
    }

    h1 {
      color: #2196f3;
      font-size: 1.8em;
    }

    h2 {
      color: #42a5f5;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    ul li::before {
      content: "✔ ";
      color: #2196f3;
      margin-right: 5px;
    }
  /*SOPORTE*/
    body.suporte {
      font-family: Arial, sans-serif;
      background-color: #121a2f;
      color: white;
      padding: 40px;
      max-width: 700px;
      margin: auto;
      position: relative;
    }

    h1 {
      color: #2196f3;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 25px;
    }

    button {
      width: 100%;
      background-color: #2196f3;
      color: white;
      border: none;
      padding: 15px;
      font-size: 1em;
      border-radius: 8px;
      cursor: pointer;
      margin-bottom: 15px;
      transition: background 0.3s;
      text-align: left;
    }

    button:hover {
      background-color: #42a5f5;
    }

    .resposta {
      background-color: #1e2a4f;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      display: none;
      white-space: pre-line;
    }

    .voltar {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 24px;
      color: #2196f3;
      text-decoration: none;
      font-weight: bold;
    }

    .voltar:hover {
      color: #42a5f5;
    }

    form {
      margin-top: 40px;
    }

    input, select, textarea, button[type="submit"] {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      border: none;
      border-radius: 8px;
      font-size: 1em;
    }

    button[type="submit"] {
      background-color: #2196f3;
      color: white;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 0;
    }

    button[type="submit"]:hover {
      background-color: #42a5f5;
    }

    label {
      margin-top: 15px;
      display: block;
      font-weight: bold;
      color: #ccc;
    }
   /*planos*/
    body.planos {
      font-family: Arial, sans-serif;
      background-color: #121a2f;
      color: white;
      padding: 40px;
      max-width: 500px;
      margin: auto;
      text-align: center;
      position: relative; /* Essencial para a setinha se posicionar aqui dentro */
    }

    body.planos h1 {
      color: #2196f3;
      margin-bottom: 30px;
      margin-top: 25px; /* Empurra o título para baixo, separando da setinha */
    }

    body.planos .plano {
      background-color: #1e2a4f;
      margin-bottom: 30px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
    }

    body.planos .plano h2 {
      color: #42a5f5;
      margin-bottom: 10px;
      font-size: 1.8em;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    body.planos .preco {
      color: #90caf9;
      font-weight: bold;
      font-size: 1.2em;
    }

    body.planos p {
      color: #cccccc;
      margin-bottom: 10px;
    }

    body.planos .pergunta {
      margin: 15px 0 5px;
      font-weight: bold;
      color: #ccc;
    }

    body.planos .radio-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
    }

    body.planos label {
      font-weight: bold;
      color: #cccccc;
      cursor: pointer;
    }

    body.planos button {
      background-color: #2196f3;
      color: white;
      padding: 12px 30px;
      font-size: 1em;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s, transform 0.2s;
      display: flex;
      align-items: center;
      gap: 10px;
      margin: auto;
      width: auto;
    }

    body.planos button:hover {
      background-color: #42a5f5;
      transform: scale(1.05);
    }

    /* Setinha voltar idêntica ao suporte e catálogo */
    body.planos .voltar {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 18px;
      color: #2196f3;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    body.planos .voltar:hover {
      color: #42a5f5;
    }
 
  /* RESPONSIVIDADE - CELULAR */
@media (max-width: 600px) {

  .topo {
    padding: 15px;
    justify-content: center;
  }

  .topo img {
    height: 100px;
  }

  .menu-botoes {
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .menu-botoes a {
    padding: 9px 12px;
    font-size: 0.9em;
  }

  .meio {
    padding: 20px 15px 40px;
  }

  .conteudo h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .conteudo p {
    font-size: 0.95em;
    line-height: 1.5;
  }

  .carrossel {
    gap: 10px;
    padding: 10px 40px;
  }

  .carrossel img {
    height: 180px;
  }

  .seta {
    font-size: 1.4em;
    padding: 7px;
    width: auto;
    margin-bottom: 0;
  }

  .seta.esquerda {
    left: 5px;
  }

  .seta.direita {
    right: 5px;
  }

  .rodape {
    padding: 15px 10px;
    font-size: 0.8em;
  }
}