/* Reset de estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header  */
header {
  background-color: #fff;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.logo img {
  max-width: 200px;
}

/* Seção de banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Seção de downloads */
.downloads {
  text-align: center;
  padding: 20px;
  padding-bottom: 50px;
  background-color: #fff;
  margin-bottom: 0;
}

.downloads h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-family: sans-serif;
  color: #00672f;
  padding-top: 40px;
  padding-bottom: 40px;
}

.download-item {
  margin: 20px;
  transition: transform 0.3s ease-in-out;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.download-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-item a {
  text-decoration: none;
  display: block;
  padding: 15px;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
  margin: 20px;
  height: 325px;
  width: 250px;
}

/* Colunas de PDFs */

.pdf-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-column img {
  max-width: 75%;
  height: auto;
}

/* Títulos embaixo dos PDFs */
.download-item p {
  margin-top: 10px;
  font-size: 16px;
  font-family: sans-serif;
  color: #333;
  font-weight: bold;
  height: 60px;
  width: fit-content;
}

/* "Baixe Agora"  */
.download-item span.download-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #006a30;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: sans-serif;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 5px;
}

.download-item span.download-button:hover {
  background-color: #08b539;
}

/* Seção de blog e vídeo */
.blog-video {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog,
.video {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  margin: 30px;
}

.blog:hover,
.video:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.blog img,
.video img {
  max-width: 570px;
  height: auto;
  margin-bottom: 10px;
}

.blog a,
.video a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog span,
.video span {
  padding: 10px 20px;
  background-color: #006a30;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: sans-serif;
  text-align: center;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.blog span:hover,
.video span:hover {
  background-color: #08b539;
  color: #fff;
}

/* Footer */
footer {
  background-color: #006a30;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-family: sans-serif;
}

.footer-postali {
  color: #fff;
  text-decoration: none;
}
