*,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}

.ap-link {
  padding: 10px 20px;
  background-color: #258328;
  color: white;
  border: none;
  cursor: pointer;
  align-self: center;
  font-size: 16px;
  border-radius: 5px;
  margin: 60px 0;
  width: 240px;
  height: 60px;
  transition: 0.3s;
  text-decoration: none;
  align-content: center;
  font-weight: 600;
}

.ap-link:hover {
  background-color: #1da121;
}

.ap-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.header {
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 300px;
  height: auto;
  object-fit: cover;
  align-self: center;
}

.ap-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  padding: 60px 0;
}

.ap-hero-info {
  display: flex;
  width: 100%;
  gap: 15px;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  overflow-y: hidden;
}

.ap-hero-info__bloco {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  flex-direction: column;
}

.title {
  color: #353535;
  font-size: 50px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Arial", sans-serif;
}

.ap-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ap-thumb-desc {
  font-weight: 100;
  font-size: 20px;
  color: #7d7c7c;
  text-align: center;
  margin: 15px 0 30px;
  width: 100%;
}

.ap-thumb {
  width: 690px;
  height: 460px;

  overflow: hidden;
}

.ap-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease-in-out;
}
.ap-thumb img:hover {
  transform: scale(1.1); /* Aumenta a imagem em 20% */
}
.ap-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  gap: 20px;
  background-color: #fdfdfd;
}

.ap-footer-logo-small {
  width: 240px;
  height: auto;
  object-fit: cover;
  align-self: center;
}

.ap-copy {
  color: #787878;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 1743px) {
  .ap-thumb-desc {
    width: 100%;
  }
}

@media screen and (max-width: 1440px) {
  .ap-hero-info {
    gap: 20px;
    padding: 0 15px;
  }

  .ap-thumb-desc {
    width: 100%;
  }

  .title {
    width: 100%;
  }
}

@media screen and (max-width: 1432px) {
  .title {
    width: 80%;
  }

  .ap-thumb-desc {
    width: 80%;
  }
}

@media screen and (max-width: 1432px) {
  .title {
    width: 100%;
  }

  .ap-thumb-desc {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .ap-hero-info {
    gap: 16px;
    flex-direction: column;
  }

  .ap-hero-info__bloco {
    width: 100%;
  }

  .title {
    font-size: 40px;
  }

  .ap-thumb-desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .ap-hero-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
  }

  .ap-hero-info__bloco {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .ap-thumb-desc {
    width: 100%;
  }

  .title {
    font-size: 45px;
  }
}

@media screen and (max-width: 480px) {
  .ap-thumb {
    height: 300px;
  }

  .title {
    font-size: 40px;
  }

  .ap-link {
    margin: 30px 0;
  }

  .ap-hero {
    padding-bottom: 20px;
  }
}
