* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.hide {
  display: none !important;
}

:root {
  --verde: #2E7D32;
  --marrom: #8D6E63;
  --dourado: #FBC02D;
  --branco: #fff;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
}



.nav-products {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 70px;
}

.nav-products .nav-items {
  display: flex;
  flex: 1;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
}

.nav-products .nav-items li {
  padding-right: 70px;
}

.nav-products .nav-items li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s;
}

.nav-products .nav-items li a:hover {
  color: #2e7d32;
}

.nav-products form {
  display: flex;
  height: 40px;
  border-radius: 10px;
  padding: 0;
  background: #2c2c2c;
  min-width: 38%;
}

.nav-products form .search-data {
  height: 100%;
  width: 100%;
  padding: 0 3%;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  border-radius: 10px;
  background: none;
  border: none;
  outline: none;
}

.nav-products form button {
  padding: 0 15px;
  background: #fbc02d;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: #000000;
  border-radius: 10px;
}

.nav-products .menu-icon,
.nav-products .search-icon,
.nav-products .cancel-icon {
  width: 40px;
  color: #fff;
  text-align: center;
  margin: 0 70px;
  font-size: 17px;
  cursor: pointer;
  display: none;
}

.nav-products .menu-icon,
.nav-products .search-icon,
.nav-products .cancel-icon {
  width: 40px;
  color: #fff;
  text-align: center;
  margin: 0 50px;
  font-size: 17px;
  cursor: pointer;
  display: none;
}

.nav-products .menu-icon span,
.nav-products .search-icon,
.nav-products .cancel-icon {
  display: none;
}



.hero {
  height: auto;
  margin-top: 25px;
  background: url("../imagens/background-PC.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 45px;
  margin-top: 215px;
  /* opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6 ease; */
}

.hero p {
  font-size: 18px;
  margin: 27px 0;
}

.hero-btn {
  background: var(--dourado);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
}



section {
  padding: 90px 10%;
}

.produtos-call {
  background: var(--verde);
  width: 100%;
  height: 650px;
  padding: 60px 150px;
}

.produtos-call-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0px;
  margin-bottom: 50px;
}

.titulo {
    color: var(--dourado);
    font-size: 80px;
    text-align: left;
    flex: 1;
  }

.text-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.text-animate.ativo {
  opacity: 1;
  transform: translateY(0px);
}

.produtos-call-text {
  flex: 1;

}

.produtos-call-text p {
  color: #fff;
  font-size: 23px;
  line-height: 1.8;
}

.produtos-call-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.produtos-call-cards-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #023a04;
  border-radius: 15px;
  width: 330px;
  height: 100px;
  text-align: left;
  transition: 0.3s ease;
}

.produtos-call-cards-text:hover {
  transform: scale(1.05);
}

.produtos-call-cards-text p {
  margin: 30px;
  flex: 20;
  color: #fff;
  font-weight: 600;
}

.icon-cards {
  color: #fff;
  font-size: 30px;
  margin-left: 30px;
  flex: 1;
}

.produtos-call-btn {
  background: var(--dourado);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin: 50px auto 20px auto;
  transition: 0.3s ease;
}

.produtos-call-btn:hover {
  transform: scale(1.05);
}



#sobre {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 40px 40px;
}

#sobre h2 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
  color: #2E7D32;
  font-weight: 700;
}

.line {
  background: #2e7d32;
  color: #2e7d32;
  height: 3px;
  margin-bottom: 40px;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-img img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transition: 0.3s ease;
}

.sobre-img img:hover {
  transform: scale(1.02);
}

.sobre-text p {
  font-size: 22px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 20px;
  color: #444;
}


#como-comprar {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 40px 40px;
}

#como-comprar h2 {
  color: var(--verde);
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: 700;
}

#como-comprar p {
  font-size: 22px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 20px;
  color: #444;
}

.como-comprar-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.como-comprar-cards-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(211, 211, 211);
  border-radius: 15px;
  width: 250px;
  height: 100px;
  text-align: left;
  transition: 0.3s ease;
}

.como-comprar-cards-text:hover {
  transform: scale(1.05);
}

.como-comprar-cards-text h4 {
  margin: 20px 0 20px 30px;
  font-size: 25px !important;
  flex: 1;
  color: #000000 !important;
  font-weight: 600;
}

.como-comprar-cards-text p {
  margin: 20px;
  font-size: 15px !important;
  flex: 7;
  color: #000000 !important;
  font-weight: 500;
}

#contato {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 40px 40px;
}

#contato h2 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
  color: #2E7D32;
  font-weight: 700;
}



#contato h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

.contato-content {
  display: flex;
  align-items: center;
  gap: 100px;
}

.contato-text {
  flex: 1;
}

#contato p {
  font-size: 22px;
  line-height: 1.9;
  text-align: justify;
  margin: 0px 0px 0px 15px;
  color: #444;
}

.contato-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-info a {
  text-decoration: none;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.whatsapp-inicio-btn {
  display: block;
  margin-top: auto;
  text-align: center;
  background: #25D366;
  color: white;
  margin: 15px;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.instagram-btn {
  display: block;
  margin-top: auto;
  text-align: center;
  margin: 15px;
  background: linear-gradient(45deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888);
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.e-mail-btn {
  display: block;
  margin-top: auto;
  text-align: center;
  margin: 15px;
  background: red;
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.whatsapp-inicio-btn:hover,
.instagram-btn:hover,
.e-mail-btn:hover {
  transform: scale(1.05);
}



.container {
  margin-top: 60px;
  padding: 40px 60px;
}

.title {
  color: #2e7d32;
  font-size: 30px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 30px;
}

.line-products {
  background: #2e7d32;
  color: #2e7d32;
  height: 3px;
  margin-bottom: 30px;
}

.products-loading {
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.card {
  height: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px;
}

.card h2 {
  color: #2e7d32;
  font-size: 25px;
  font-family: 'Montserrat', sans-serif;
}

.scientific {
  font-size: 16px;
  color: rgb(109, 109, 109);
}

.card p {
  margin: 10px 0;
  font-size: 15px;
  font-weight: 600;
  min-height: 65px;
}

.whats-btn {
  display: block;
  margin-top: auto;
  text-align: center;
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.whats-btn:hover {
  transform: translateY(-3px);
}

.load-more {
  text-align: center;
  margin-top: 40px;
}

.load-more button {
  padding: 12px 24px;
  background: #2e7d32;
  font-size: 15px;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.load-more button:hover {
  background: #1c551f;
  transform: scale(1.05);
}



.footer {
  display: grid;
  align-items: center;
  margin-top: 10px;
  height: 500px;
  background: #050505;
  color: white;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.logo-footer {
  width: 200px;
  height: 100%;
}

.div-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.div-footer p {
  padding: 10px;
}

.socials {
  display: flex;
  justify-content: center;
}

.socials a {
  color: white;
  font-size: 25px;
  margin-right: 15px;
  text-decoration: none;
  transition: .3s;
}

.socials a:hover {
  color: #fbc02d;
}

.copy {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}



@media(max-width:768px) {
  .nav-products {
    padding: 0;
  }

  .nav-products .nav-items {
    position: fixed;
    z-index: 999;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #011b05dc;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    transition: left 0.3s ease;
  }

  .nav-products form .search-data {
    height: 100%;
    width: 100%;
    padding: 0 3%;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 10px;
    background: none;
    border: none;
  }

  .nav-products .nav-items.active {
    left: 0%;
  }

  .nav-products .nav-items li {
    margin: 10px 0;
    padding: 20px 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 350px;
    background: #2e7d329a;
    border-radius: 15px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-top: 2px solid rgba(255, 255, 255, 0.6);
  }

  .nav-products .nav-items li a {
    font-size: 18px;
    text-align: center;
  }

  .nav-products form {
    position: absolute;
    top: 80px;
    right: 20px;
    left: 20px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }

  .nav-products form.active {
    opacity: 1;
    top: 95px;
    pointer-events: auto;
  }

  .nav-products form:before {
    position: absolute;
    content: "";
    top: -13px;
    right: 0;
    height: 0;
    width: 0;
    z-index: -1;
    margin: -20px 10px 0;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
  }

  .nav-products form:after {
    position: absolute;
    content: "";
    height: 60px;
    width: calc(100% + 15px);
    padding: 2px;
    border-radius: 10px;
    background: #1e232b;
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

  }

  .nav-products .menu-icon {
    display: block;
    margin-left: 20px;
    font-size: 20px;
  }

  .nav-products .search-icon,
  .nav-products .menu-icon span {
    display: block;
    margin-right: 20px;
    font-size: 20px;
  }

  .nav-products .search-icon.hide,
  .nav-products .menu-icon span.hide {
    display: none;
  }

  .nav-products .cancel-icon.show {
    display: block;
    margin-left: 20px;
    font-size: 20px;
  }



  .hero {
    height: 700px;
    margin-top: 10px;
    background: url("../imagens/background-MOBILE.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0px;
  }

  .hero h1 {
    font-size: 35px;
    margin-top: 180px;
  }

  .hero p {
    font-size: 15px;
    margin: 27px 0 100px 0;
  }

  .hero-btn {
    background: var(--dourado);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
    width: fit-content;
    /* margin: 80px auto; */
  }



  section {
    padding: 0px 10%;
  }

  .produtos-call {
    background: var(--verde);
    width: 100%;
    height: 950px;
    padding: 40px 10px;
  }

  .produtos-call-content {
    flex-direction: column;
    text-align: center;
  }

  .titulo {
    color: var(--dourado);
    font-size: 30px;
    margin-bottom: 40px;
    text-align: center;
  }

  .produtos-call-text {
    width: 90%;
    text-align: justify;
  }

  .produtos-call-text p {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
  }

  .produtos-call-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .produtos-call-cards-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #023a04;
    border-radius: 15px;
    width: 330px;
    height: 100px;
    text-align: left;
  }

  .produtos-call-cards-text p {
    margin: 30px;
    flex: 20;
    color: #fff;
    font-weight: 600;
  }

  .icon-cards {
    color: #fff;
    font-size: 30px;
    margin-left: 30px;
    flex: 1;
  }

  .produtos-call-btn {
    background: var(--dourado);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
    width: fit-content;
    margin: 55px auto 20px auto;
  }



  #sobre {
    padding: 0px 20px 40px 20px;
  }

  #sobre h2 {
    font-size: 30px;
    margin: 20px 0;
  }

  .line {
    margin-bottom: 20px;
  }

  .sobre-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-img img {
    height: 320px;
  }

  .sobre-text h3 {
    font-size: 26px;
  }

  .sobre-text p {
    font-size: 16px;
  }



  #como-comprar {
    padding: 0px 20px 40px 20px;
  }

  #como-comprar h2 {
    color: var(--verde);
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  #como-comprar p {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 20px;
    color: #444;
  }

  .como-comprar-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .como-comprar-cards-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(211, 211, 211);
    border-radius: 15px;
    width: 330px;
    height: 100px;
    text-align: left;
    transition: 0.3s ease;
  }

  .como-comprar-cards-text:hover {
    transform: scale(1.05);
  }

  .como-comprar-cards-text h4 {
    margin: 20px 0 20px 30px;
    font-size: 25px !important;
    flex: 1;
    color: #000000 !important;
    font-weight: 600;
  }

  .como-comprar-cards-text p {
    margin: 20px;
    font-size: 15px !important;
    flex: 7;
    color: #000000 !important;
    font-weight: 500;
  }



  #contato {
    padding: 0px 20px 40px 20px;

  }

  #contato h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: #2E7D32;
    font-weight: 700;
  }

  #contato h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
  }

  .contato-content {
    flex-direction: column;
    gap: 40px;
  }

  #contato p {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    margin: 0px;
    color: #444;
  }

  .contato-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contato-info a {
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
  }



  .container {
    margin-top: 45px;
    padding: 40px 20px;
  }

  .title {
    color: #2e7d32;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 15px;
  }

  .line-products {
    background: #2e7d32;
    color: #2e7d32;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .products-loading {
    margin-bottom: 15px;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }



  .footer {
    bottom: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .div-footer p {
    font-size: 14px;
    padding: 4px;
  }

  .copy {
    grid-column: 1/-1;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
  }

}