* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

hr {
  border: 2px solid #fff;
  margin: 10px auto 20px;
  width: 100px;
  height: 3px;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@media (max-width: 500px) {
  .btn-whatsapp-pulse {
    bottom: 60px;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 17vh;
  width: 100%;
  padding: 0 3rem;
  background-color: #f6c30e;
  position: fixed;
  z-index: 3;
}
header a figure {
  height: 100px;
}
header button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
header nav {
  display: flex;
  gap: 1.5rem;
}
header nav a {
  text-decoration: none;
  color: #403021;
  font-size: 1.3rem;
  font-weight: 600;
}
header nav a:hover {
  color: #e1143d;
}

@media (max-width: 900px) {
  header {
    height: 10vh;
  }
  header a figure {
    height: 60px;
  }
  header a figure img {
    height: 100%;
  }
  header button {
    display: block;
    transition: 0.5s ease;
  }
  header nav {
    display: none;
  }
  header .nav-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 10vh;
    width: 100%;
    padding: 1rem;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    transition: 0.5s ease;
  }
  header .nav-open a {
    width: fit-content;
    text-align: end;
    margin-right: 3rem;
    border-radius: 5px;
    width: 100%;
  }
}
#home {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: start;
  background-color: #297526;
  padding: 0 3rem;
}
#home .text-home {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  margin-top: 6%;
}
#home .text-home h1 {
  color: #f6c30e;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
}
#home .text-home p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
#home .text-home a {
  color: #f6c30e;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  border: 2px solid #f6c30e;
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 5px;
  transition: 0.3s ease;
}
#home .text-home a:hover {
  color: #403021;
  background-color: #f6c30e;
  transition: 0.3s ease;
}
#home figure {
  width: 50%;
  display: flex;
  justify-content: end;
  margin-top: 6%;
}

@media (max-width: 768px) {
  #home {
    flex-direction: column;
    padding: 0 2rem;
    gap: 3rem;
  }
  #home .text-home {
    margin-top: 20%;
    width: 80%;
  }
  #home figure img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #home {
    flex-direction: column;
    padding: 0 2rem;
    gap: 0;
  }
  #home .text-home {
    margin-top: 10vh;
    width: 100%;
  }
  #home .text-home h1 {
    font-size: 2.5rem;
  }
  #home .text-home p, #home .text-home a {
    font-size: 1.1rem;
  }
  #home figure {
    width: 40%;
  }
  #home figure img {
    width: 100%;
  }
}
#services {
  height: auto;
  width: 100%;
  background-color: #818727;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 3rem;
}
#services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f6c30e;
  text-align: center;
}
#services .service-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
#services .service-cards .service-card {
  width: 350px;
  height: 400px;
  background-color: #297526;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #f6c30e;
  border-radius: 5px;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
}
#services .service-cards .service-card h3 {
  font-size: 1.6rem;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
#services .service-cards .service-card a {
  display: none;
}
#services .service-cards .service-card:hover a {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  color: #f6c30e;
  border: 2px solid #f6c30e;
  width: fit-content;
  padding: 1rem 1rem;
  border-radius: 5px;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#services .service-cards .service-card a:hover {
  border: 2px solid #403021;
  background-color: #f6c30e;
  color: #403021;
}
#services .service-cards .service-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

@media (max-width: 1024px) {
  .service-cards {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #services {
    padding: 3rem 2rem;
  }
  #services .service-cards .service-card {
    width: 100%;
  }
}
#products {
  height: auto;
  width: 100%;
  background-color: #297526;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
}
#products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f6c30e;
  text-align: center;
}
#products .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  gap: 1.5rem;
  width: 100%;
  justify-items: center;
}
#products .product-cards .product-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  padding: 1rem 0;
  width: 310px;
  max-width: 300px;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
}
#products .product-cards .product-card img {
  height: 200px;
  padding: 1rem;
}
#products .product-cards .product-card h3 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
  padding: 0.5rem 0;
  color: #403021;
}
#products .product-cards .product-card p {
  font-size: 1.2rem;
  text-align: start;
  padding: 0 1rem;
  color: #403021;
}
#products .product-cards .product-card span {
  color: #403021;
  font-size: 1.6rem;
  font-weight: 600;
}
#products .product-cards .product-card a {
  margin-top: 0.5rem;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  color: #f6c30e;
  background-color: transparent;
  border: 2px solid #f6c30e;
  width: fit-content;
  padding: 1rem 1rem;
  border-radius: 5px;
  transition: 0.3s ease;
}
#products .product-cards .product-card a:hover {
  background-color: #f6c30e;
  color: #403021;
  border: 2px solid #403021;
}

@media (max-width: 1024px) {
  #products .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  #products .product-cards .product-card {
    width: 100%;
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  #products .product-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  #products .product-cards .product-card {
    width: 310px;
    max-width: 310px;
  }
}
#faq {
  text-align: start;
  padding: 4rem 2rem;
  height: auto;
  background-color: #818727;
}
#faq .container {
  display: flex;
  flex-direction: column;
}
#faq .container .subtitle h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #f6c30e;
  text-align: center;
  margin-bottom: 20px;
}
#faq .container .faq-item {
  background: #297526;
  border: 1px solid #f6c30e;
  border-radius: 8px;
  margin: 10px auto;
  padding: 15px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
}
#faq .container .faq-item .faq-question {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  transition: background-color 0.3s ease;
}
#faq .container .faq-item .faq-answer {
  margin-top: 10px;
  padding: 10px;
  display: none;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
#faq .container .faq-item .faq-answer.hidden {
  display: none;
}
#faq .container .faq-item .faq-answer p {
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  #faq .container .faq-item {
    width: 100%;
  }
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4rem 2rem 1rem;
  background-color: #f6c30e;
  gap: 1rem;
}
footer .top-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
footer .top-footer .maps {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
}
footer .top-footer .maps ul {
  list-style: none;
}
footer .top-footer .maps ul li {
  font-size: 1.2rem;
  font-weight: 500;
  color: #403021;
  display: flex;
  gap: 1rem;
}
footer .top-footer nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .top-footer nav a {
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: #403021;
}
footer .top-footer nav a:hover {
  color: #e1143d;
}
footer .bottom-footer {
  width: 100%;
  text-align: center;
}
footer .bottom-footer a {
  color: #e1143d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  footer {
    padding: 2rem 3rem;
  }
  footer .top-footer {
    flex-direction: column;
    gap: 1rem;
  }
  footer .top-footer nav {
    display: none;
  }
  footer .top-footer .logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .top-footer .logo-footer img {
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=styles.css.map */
