.hero-section {
  background-image: url("../imagens/background-01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  padding: 40px 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-section .container {
  text-align: center;
  width: 60%;
}

.hero-section .container h1 {
  margin-bottom: 50px;
  font-size: 48px;
}

.hero-section .container p {
  margin-bottom: 45px;
  font-size: 22px;
}

.hero-section .container a {
  text-decoration: none;
  padding: 18px 65px;
  border-radius: 5px;
  margin: 8px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.hero-section .container a:hover {
  background-color: white;
  color: #0e2816;
}

.about-section {
  padding: 60px 10px !important;
}

.container .content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.container .content-section .content-left {
  flex: 1;
  padding-right: 20px;
}

.container .content-section .content-left h2 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: #0e2816;
}

.container .content-section .content-left p {
  font-size: 1.5rem;
  color: #7a7a7a;
}

.negrito {
  font-weight: bold;
}

.container .content-section .content-right {
  flex: 1;
}

.container .content-section .content-right img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.container .content-button {
  text-align: center;
  margin: 50px 0 10px 0;
}

.cta-button {
  text-decoration: none;
  padding: 18px 65px;
  background-color: #0e2816;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: rgb(23, 75, 39);
}

.content-cards {
  background-image: url("../imagens/background-02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  padding: 60px 10px;
}

.content-cards .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

i {
  font-size: 50px;
  color: #fff;
}

.content-cards .card {
  width: 351px;
  height: 499px;
  background-color: #f5f5f5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 45px;
  margin-bottom: 30px;
  gap: 50px;
}

.content-cards .card .icons {
  background-color: #0d2715;
  border-radius: 50%;
  padding: 20px;
}

.content-cards .card h3 {
  color: #7a7a7a;
  font-size: 28px;
}

.content-cards .card p {
  color: #7a7a7a;
  font-size: 18px;
  text-align: center;
}

.content-work {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 2%;
}

.content-work .content-img {
  display: flex;
  justify-content: center;
}

.content-work .content-img img {
  width: 15%;
  margin-bottom: 30px;
}

.content-work .content-text {
  width: 50%;
  text-align: center;
}

.content-work .content-text h2 {
  color: #0d2715;
  font-size: 58px;
}

.content-work .content-text p {
  color: #252525;
  margin: 30px 0 50px 0;
  font-size: 27px;
}

@media (max-width: 768px) {
  .hero-section .container {
    padding: 40px 2%;
    width: 100%;
  }

  .hero-section .container h1 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .hero-section .container p {
    font-size: 18px;
  }

  .container .content-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 0;
  }

  .container .content-section .content-left {
    padding: 30px 0 0 0;
  }

  .content-cards {
    flex-direction: column;
  }

  .content-work .content-img img {
    width: 30%;
  }

  .content-work .content-text {
    width: 100%;
  }

  .content-work .content-text h2 {
    font-size: 30px;
  }

  .content-work .content-text p {
    font-size: 20px;
  }
}

@media (max-width: 578px) {
  .hero-section .container h1 {
    font-size: 28px;
  }

  .hero-section .container p {
    font-size: 16px;
  }

  .content .content-section .content-left h2 {
    font-size: 1.8rem;
  }

  .content .content-section .content-left p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .content-cards .card {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .hero-section .container h1 {
    font-size: 24px;
  }

  .hero-section .container p {
    font-size: 16px;
  }

  .content .content-section .content-left h2 {
    font-size: 1.5rem;
  }

  .content .content-section .content-left p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}