@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.topo {
  width: 100%;
  padding: 15px 0px;
  text-align: center;
  background-color: #1f1f1f;
  color: #fff;
}

.link-topo a{
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.link-topo a:hover{
  color: #ccc;
  text-decoration: underline;
}

.main {
  /* background-color: #f0f0f0; */
  background-color: #ccc;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.container {
  /* background-color: #ccc; */
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.card {
  /* background-color: #a12b2b; */
  flex: 1 1 300px;
  border-radius: 4px;
  box-shadow: 1px 1px 10px 1px gray;
}

.container-imagem img {
  width: 100%;
  height: 200px;
  border-radius: 4px;
}

img:hover{
    opacity: 0.7;
    cursor: pointer;
} 

.container-info {
  padding: 0px 10px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.container-info img{
  width: 30px;
}

.container-info img:hover {
  width: 35px;
}

p{
  font-weight: 600;
}

/* Início CSS Rodapé */

.rodape {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.link-rodape a {
  color: #3cbd87;
  text-decoration: none;
}

.link-rodape a:hover {
  color: #666;
  text-decoration: underline;
}

/* Fim CSS Rodapé */
