/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  text-align: center;
}

/* Imagens sempre adaptáveis */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* TOPO */
.topo img {
  width: 100%;
  height: auto;
}

/* BOTOES */
.botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.botoes a {
  flex: 1 1 150px;
  max-width: 200px;
}

/* TEXTOS */
.sobre, .info, .atencao {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  text-align: justify;
}

.sobre p, .info p, .atencao p {
  font-size: 1rem;
}

.info h2 {
  margin-bottom: 15px;
  color: #900;
  text-align: center;
}

/* DIVISOR */
.divider {
  margin: 20px 0;
}

/* RODAPE */
.rodape {
  margin-top: 30px;
}

/* --------- MEDIA QUERIES ---------- */

/* Tablets */
@media (max-width: 992px) {
  .botoes {
    gap: 15px;
  }

  .sobre p, .info p, .atencao p {
    font-size: 0.95rem;
  }
}

/* Celulares */
@media (max-width: 576px) {
  .botoes {
    flex-direction: column;
    align-items: center;
  }

  .botoes a {
    max-width: 90%;
  }

  .sobre p, .info p, .atencao p {
    font-size: 0.9rem;
  }

  .info h2 {
    font-size: 1.2rem;
  }
}
