* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #e9e3d9;
}

/* INÍCIO */
#inicio {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(83, 83, 83, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/fundo.jpeg");
  background-size: cover;
  background-position: center;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 150px;
  background: transparent;
  position: absolute;
  width: 100%;
}

.logo img {
  width: 60px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.1);
}

.menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 900;
  position: relative;
  padding: 4px 0;
  transition: 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00c27a;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #00c27a;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 0px 150px;
  height: 90vh;
}

.hero-text {
  max-width: 900px;
}

.hero-text h1 {
  font-size: 66px;
  color: white;
  line-height: 1.1;
  max-width: 950px;
  margin-top: 220px;
}

.hero-text span {
  color: #00c27a;
  font-weight: 900;
}

.hero-text p {
  margin-top: 40px;
  font-size: 25px;
  color: white;
  text-align: justify;
  max-width: 600px;
}

.btn {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  padding: 15px 36px;
  font-size: 20px;
  font-weight: 900;
  color: white;
  background: #2f5d4c;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.95);
}

/* SERVIÇOS */
.servicos {
  padding: 30px;
   background:
    linear-gradient(#00c27a, #1f3c30);
  text-align: center;
}

.subtitulo-servicos {
  max-width: 800px;
  margin: 20px auto 70px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

.titulo-servicos {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffffff;
}

.cards-servicos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1700px;
  margin: auto;
}

.card-servico {
  background: white;
  width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
  cursor: pointer;
  margin-bottom: 60px;
}

.card-servico:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.card-servico img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-servico h3 {
  font-size: 26px;
  margin: 25px 25px 10px 25px;
  color: #2f5442;
}

.card-servico p {
  font-size: 17px;
  color: #555;
  padding: 0 25px 30px 25px;
  line-height: 1.7;
}

/* CONSULTORIA ///////////////////////////////// */

.consultoria {
  padding: 100px 8%;
  background: #ffffff;
  height: 600px;
}

.consultoria-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.consultoria-img {
  flex: 1;
}

.consultoria-img img {
  width: 600px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.consultoria-texto {
  max-width: 550px;
}

.consultoria-texto h2 {
  font-size: 46px;
  margin-bottom: 20px;
  color: #2f5442;
}

.consultoria-texto p {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

.btn-consultoria {
  background: #2f5442;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-consultoria:hover {
  background: #1f3c30;
}

/* GAME QUIZ ////////////////////////////////////// */

.game {
  padding: 70px;
  text-align: center;
  background:
    linear-gradient(#00c27a, #1f3c30),
    url("../images/floresta-game.jpg");

  background-size: cover;
  background-position: center;
}

.game-title {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
}

.game-sub {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  color: #dcdcdc;
  margin-bottom: 70px;
}

.game-card {
  background: #1f3c30;
  padding: 60px 50px;
  max-width: 420px;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: 0.4s;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.game-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.game-card h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 15px;
}

.game-card p {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-play {
  display: inline-block;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background: linear-gradient(45deg, #00c27a, #1dd88c);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 194, 122, 0.4);
  transition: 0.3s;
}

.btn-play:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 194, 122, 0.6);
}

/* GUIA JARDINAGEM ////////////////////////////////// */

.guia {
  padding: 120px 8%;
  background: white;
}

.guia-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.guia-texto {
  max-width: 520px;
}

.guia-texto h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #2f5442;
}

.guia-texto p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.guia-topicos {
  list-style: none;
  margin-bottom: 30px;
}

.guia-topicos li {
  font-size: 18px;
  margin-bottom: 10px;
}

.btn-guia {
  display: inline-block;
  padding: 14px 30px;
  background: #2f5442;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-guia:hover {
  background: #1f3c30;
}

.guia-img img {
  width: 650px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FOOTER ////////////////////////////////// */

.footer {
  background: #4b735d;
  color: white;
  padding: 80px 0;
}

/* CONTAINER */

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* COLUNAS */

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-col p {
  margin-bottom: 10px;
  color: #dcdcdc;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: white;
}

/* SOCIAL */

.social {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.social a {
  background: white;
  color: #4b735d;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;

  transition: 0.3s;
}

.social a:hover {
  transform: scale(1.1);
}

.newsletter input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin-bottom: 15px;
}

.newsletter button {
  width: 100%;
  padding: 12px;
  background: #2f8edc;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #1d76c0;
}

/* RESPONSIVIDADE ////////////////////////////////// */

/* TABLET */

@media (max-width: 1024px) {
  .header {
    padding: 10px 40px;
  }

  .hero {
    padding: 0 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 20px;
  }

  /* CONSULTORIA */

  .consultoria {
    height: auto;
  }

  .consultoria-container {
    flex-direction: column;
    text-align: center;
  }

  .consultoria-img img {
    width: 100%;
    max-width: 500px;
  }

  .guia-container {
    flex-direction: column;
    text-align: center;
  }

  .guia-img img {
    width: 100%;
    max-width: 500px;
  }
}

/* CELULAR */

@media (max-width: 768px) {
  /* MENU */

  .menu ul {
    gap: 20px;
  }

  .menu a {
    font-size: 16px;
  }

  /* HERO */

  .hero {
    height: auto;
    padding: 120px 30px 60px 30px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 25px;
  }

  /* SERVIÇOS */

  .cards-servicos {
    flex-direction: column;
    align-items: center;
  }

  .card-servico {
    width: 90%;
  }

  /* GAME */

  .game-title {
    font-size: 34px;
  }

  .game-sub {
    font-size: 17px;
  }

  /* GUIA */

  .guia {
    padding: 80px 30px;
  }

  .guia-texto h2 {
    font-size: 32px;
  }

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

  .guia-img img {
    width: 100%;
  }

  /* FOOTER */

  .footer-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .social {
    justify-content: center;
  }
}

/* CELULAR PEQUENO */

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .titulo-servicos {
    font-size: 30px;
  }

  .card-servico h3 {
    font-size: 22px;
  }

  .card-servico p {
    font-size: 15px;
  }
}
