@media (max-width: 768px) {
  #cabecalho {
    height: 10vh;
  }
  .home .imagem-fundo {
    display: none;
  }

  .home .imagem-fundo-tablet {
    display: block;
    width: 100vw;
    height: 80vh;
    object-fit: cover;
    padding: 0px 10px;
  }
  .titulo {
    width: 40%;
  }

  .home:hover .titulo h1 {
    scale: 1.3;
    opacity: 1;
  }
  .home:hover .btn-saiba a {
    opacity: 1.3;
    background-color: #a00404;
    border: 2px solid #fff;
    padding: 0 10px;
    border-radius: 20px;
  }

  .jogos-da-plataforma li:nth-child(1) {
    width: 300px;
  }

  #btn legend {
    font-size: 0.5rem;
  }
  .info-email p {
    font-size: 0.5rem;
  }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

@media (max-width: 680px) {
  #cabecalho {
    height: 10vh;
  }

  .home .imagem-fundo-tablet {
    display: block;
    padding: 0 10px 0 10px;
    width: 100vw;
    height: 80vh;
    object-fit: cover;
  }

  .titulo {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .titulo h1 {
    font-size: 1.5rem;
  }

  .btn-saiba a {
    display: none;
  }

  .logo {
    position: sticky;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    backface-visibility: hidden;
    transform: translateZ(0px);
    transition: 0.3s;
  }

  .logo img {
    height: 40px;
  }

  .burger {
    position: static;
    z-index: 4;
    top: 50;
    right: 0;
    display: grid;
    place-items: center;
    padding: 0;
    width: 82px;
    height: 40px;
    font-size: 30px;
    color: #f9f9f9;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .burger i:last-child {
    display: none;
  }

  body.open .burger i:first-child {
    display: none;
  }

  body.open .burger i:last-child {
    display: block;
    position: fixed;
  }

  .overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(27 32 44 / 70%);
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(6px);
    transition: 0.3s;
  }

  body.open .overlay {
    visibility: visible;
    opacity: 1;
  }

  aside {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 100%;
    padding: 18px 20px 20px;
    background: black;
    box-shadow: 0 0 20px rgb(0 0 0 / 70%);
    translate: 100% 0;
    transition: 0.3s;
  }

  body.open aside {
    translate: 0;
  }

  aside a {
    display: flex;
    align-items: center;
    height: 50px;
  }

  aside button {
    background: linear-gradient(
      -60deg,
      #ff5733,
      #ff8c00,
      #ffd700,
      #ffff00,
      #ffd700,
      #ff8c00,
      #ff5733
    );
    border: 0;
    height: 30px;
    border-radius: 30px;
  }

  aside button:hover {
    color: #fff;
    transform: scale(1.05);
  }

  section#dados {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    gap: 50px;
  }

  #dados hr {
    width: 70%;
  }

  /* Adicionando regras para o carrossel responsivo */
  .cards {
    overflow: hidden;
    width: 100%;
  }

  .slider {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .slide img {
    width: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

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

  /* Adicionando estilos para as setas de navegação */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    z-index: 1;
  }

  .arrow-left {
    left: 0;
  }

  .arrow-right {
    right: 0;
  }

  .btn-plataforma {
    font-size: 0.8rem;
  }

  .historia {
    display: none;
  }
  .responsivo {
    display: block;
  }

  .responsivo img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    margin-top: -5px;
  }

  .boletim {
    flex-direction: column;
    gap: 30px;
  }

  #btn {
    width: 80vw;
  }

  .info-email p {
    padding-top: 10px;
  }
  .titulo-email h2 {
    width: 100vw;
    font-size: 1rem;
    text-align: center;
  }

  .titulo-email p {
    width: 100vw;
    font-size: 1.1rem;
    text-align: center;
  }

  .jogos-1,
  .jogos-2 {
    display: none;
  }
  .tudo-responsivo {
    display: block;
  }

  .tudo-responsivo img {
    display: flex;
    padding: 15px;
    margin: auto;
  }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

@media (max-width: 480px) {
  #cabecalho {
    height: 10vh;
  }
  .titulo {
    width: 63%;
  }

  .container h1 {
    padding-top: 30px;
  }

  .container .mundo {
    padding-top: 20px;
  }

  .boletim {
    flex-direction: column;
    gap: 30px;
  }

  #btn {
    width: 80vw;
  }

  .info-email p {
    padding-top: 10px;
  }
  .titulo-email h2 {
    width: 100vw;
    font-size: 1rem;
    text-align: center;
  }

  .titulo-email p {
    width: 100vw;
    font-size: 1rem;
    text-align: center;
  }

  Footer {
    text-align: center;
    padding: 20px;
    width: 100vw;
  }

  .termos {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
    padding-bottom: 10px;
    font-size: 0.5rem;
  }
  .img-icons img {
    height: 20px;
    padding: 5px;
  }

  .placa-icone img {
    height: 70px;
    padding: 20px 0px 20px 0px;
  }

  .declaracao a {
    font-size: 0.8rem;
    text-decoration: underline;
  }

  .declaracao .txt-principal {
    margin: auto;
    width: 50%;
    padding: 30px 10px;
    font-size: 0.4rem;
    text-align: center;
  }

  .declaracao p {
    font-size: 12px;
    padding-bottom: 30px;
  }

  .end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 10px;
  }

  .end a img {
    height: 50px;
  }

  .censura a img {
    height: 30px;
  }
  .links-final a {
    display: flex;
    justify-content: center;
    font-size: 0.5rem;
    padding: 10px;
  }

  .linha hr {
    margin: 0px 50px;
    border-bottom: 1px solid rgb(44, 44, 44);
  }
  .credito {
    padding-top: 50px;
    font-size: 12px;
    font-style: italic;
  }
}
