/* ======== BASE ======== */
main.conteudo {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ocupa a altura da tela */
}

main.conteudo > section {
  flex-shrink: 0;
}

main.conteudo > .footer {
  margin-top: auto;
}



a {
  text-decoration: none;
}

/* ======== BOAS-VINDAS ======== */
.boas-vindas {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  gap: 16px;
}

.boas-vindas img {
  max-width: 200px;
}

.boas-vindas .texto h2 {
  font-size: 24px;
  color: #a84421;
  margin-bottom: 12px;
}

.boas-vindas .texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.botao-destaque {
  background-color: #f7941d;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.botao-destaque:hover {
  background-color: #e67e00;
}

/* ======== CARTÕES ======== */
.acessos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.cartao {
  background-color: #FDE6C6;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 300px;
}

.cartao img {
  height: 50px;
  margin: 0 auto 10px;
}

.cartao h3 {
  font-size: 18px;
  color: #a84421;
  margin-bottom: 8px;
}

.cartao p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
}

.botao {
  background-color: #f7941d;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.botao:hover {
  background-color: #e67e00;
}

/* ======== RESPONSIVO MOBILE FIRST ======== */
@media (min-width: 600px) {
  .boas-vindas {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .boas-vindas .texto {
    max-width: 500px;
  }

  .acessos {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {

    

  .boas-vindas .texto h2 {
    font-size: 28px;
  }

  .boas-vindas .texto p {
    font-size: 18px;
  }

  .cartao h3 {
    font-size: 20px;
  }

  .cartao p {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .topo {
    padding: 20px 40px;
  }

  .boas-vindas {
    padding: 40px;
  }

  .acessos {
    padding: 40px;
    gap: 30px;
  }

  .cartao {
    max-width: 320px;
  }

  .botao, .botao-destaque {
    font-size: 16px;
    padding: 12px 24px;
  }
}

@media (min-width: 1300px) {
  .boas-vindas .texto {
    max-width: 600px;
  }

  .cartao {
    max-width: 350px;
  }

  .cartao img {
    height: 60px;
  }
}
