@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #006d54;
  --secondary-color: #6b3600;
  --background-color: #f2dfd3;
  --text-color: #444;
  --highlight-color: rgb(255, 128, 0);
  --button-color: #25d366;
  --button-disabled: rgb(87, 250, 147);
  --header-bg: white;
  --header-shadow: rgba(0, 0, 0, 0.1);
  --doubt-bg: #007b5e;
  --doubt-hover: #005d4e;
  --border-color: #ddd;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  scroll-behavior: smooth;
  padding-top: 4.625rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  box-shadow: 0 0.25rem 0.375rem var(--header-shadow);
  z-index: 1000;
  padding: 0.938rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container,
.about-product-container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.who-we-are-container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.875rem 0;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
  transition: color 0.3s;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
  background: transparent;
}

.hamburger .bar {
  width: 1.875rem;
  height: 0.25rem;
  background-color: black;
  margin: 0.313rem;
}

.close-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 1001;
  color: black;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-color);
}

.header-button {
  width: 12.5rem;
  font-size: 0.938rem;
}

.shappe-container {
  position: relative;
  width: 100%;
  height: 6.25rem;
  background-color: rgb(231, 231, 231);
  margin-bottom: -0.063rem;
  clip-path: polygon(0% 100%, 0% 24%, 100% 100%);
}

#doubts {
  background-color: rgb(231, 231, 231);
}

#who-we-are {
  background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.8),
      rgba(255, 255, 255, 0.5)
    ),
    url("../img/plantation-image.jpg") no-repeat center center/cover;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-who-we-are-image img {
  max-width: 35rem;
}

.who-we-are-text-about {
  padding: 1.25rem;
  width: 31.25rem;
}

.who-we-are-text-about h1 {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--highlight-color);
}

.who-we-are-text-about p {
  font-size: larger;
  margin-left: -10rem;
  text-align: left;
  margin-top: 3.75rem;
  line-height: 1.3;
  color: white;
}

.about-product-container h2 {
  font-size: 2rem;
  margin-bottom: 1.875rem;
}

.about-product-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-product-benefit img {
  width: 4.375rem;
  height: auto;
  margin-right: 1.875rem;
}

.about-product-benefit-texto {
  max-width: 31.25rem;
  text-align: left;
}

.about-product-benefit-texto h3 {
  color: var(--secondary-color);
  font-size: 26px;
  font-weight: 900;
}

.about-product-benefit-texto p {
  font-size: 1.125rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.3;
}

.about-product-img-container {
  position: relative;
  display: inline-block;
  border-radius: 1.5rem;
  padding: 0.313rem;
  background: linear-gradient(45deg, rgb(197, 253, 219), var(--primary-color));
}

.about-product-img-container img {
  display: block;
  border-radius: 1.5rem;
  width: 100%;
  height: 31.25rem;
}

.container-section {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container-section h2, .page-under-maintenance-container h2 {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 2.813rem;
  color: var(--secondary-color);
}

.container-section span, .page-under-maintenance-container span {
  color: var(--primary-color);
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.card {
  width: 350px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  border-radius: 8px;
  padding: 0.938rem;
  box-shadow: 2px 2px 10px var(--header-shadow);
  text-align: center;
}

.card video {
  width: 100%;
  height: 250px;
  border-radius: 0.313rem;
  background-color: black;
}

.card h3 {
  text-transform: uppercase;
  color: var(--text-color);
}

button {
  background-color: var(--button-color);
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 3.438rem;
  font-size: 0.938rem;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

button:disabled {
  background-color: var(--button-disabled);
  cursor: not-allowed;
}

button i {
  font-size: 1.125rem;
}

.doubt-container {
  width: 1100px;
  margin-bottom: 0.938rem;
}

.doubt-question {
  background-color: var(--doubt-bg);
  color: white;
  font-size: 1.125rem;
  border: none;
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s;
  display: block;
  height: unset;
}

.doubt-question i {
  margin-right: 1.125rem;
  transition: transform 0.3s ease;
}

.doubt-question.active i {
  transform: rotate(180deg);
}

.doubt-question:hover {
  background-color: var(--doubt-hover);
}

.question-answer {
  display: none;
  padding: 10px 1.25rem;
  background-color: var(--background-color);
  border-radius: 1rem;
  margin-top: 0.313rem;
  text-align: left;
  border: 1px solid var(--border-color);
}

.question-answer p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.question-answer.show {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 1.25rem;
  border-radius: 10px;
  text-align: left;
  width: 300px;
  box-shadow: 0 0.25rem 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-content button {
  margin-top: 35px;
}

.close {
  position: absolute;
  top: 10px;
  right: 0.938rem;
  font-size: 35px;
  cursor: pointer;
}

.contact-container {
  padding: 50px 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 880px;
}

.contact-container img {
  height: 50px;
}

.contact-container button {
  padding: 0.938rem 1.875rem;
  font-size: 0.938rem;
}

.contact-container a {
  letter-spacing: 0.25rem;
  color: var(--secondary-color);
}

.contact-container i {
  font-size: 25px;
}

.footer-content {
  background-color: var(--primary-color);
  color: white;
  padding: 1.25rem;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 4.375rem;
    left: 0;
    padding: 1.25rem;
    box-shadow: 0px 0.25rem 0.375rem var(--header-shadow);
  }

  .hamburger {
    display: flex;
    padding: unset;
    margin-right: 2.813rem;
    grid-gap: unset;
    width: unset;
  }

  .menu-open .nav-links {
    display: flex;
    height: 100vh;
    width: auto;
  }
  .menu-open .close-menu {
    display: block;
    background: transparent;
    font-size: 3.438rem;
    margin-left: 7.5rem;
  }
  .menu-open .hamburger {
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .header-button {
    display: none;
  }

  .container-section h2 {
    margin-top: unset;
  }

  .who-we-are-container {
    flex-direction: column;
  }

  .about-who-we-are-image img {
    width: 100%;
  }

  .who-we-are-text-about {
    width: auto !important;
  }

  .who-we-are-text-about p {
    margin-left: 0 !important;
    text-align: center;
  }

  .about-product-container {
    flex-direction: column;
  }

  .about-product-benefit-texto {
    text-align: center;
  }

  .about-product-benefit {
    flex-direction: column;
  }

  .about-product-img-container {
    margin-top: 1.25rem;
  }

  .doubt-container {
    width: auto !important;
  }

  .doubt-question {
    display: flex !important;
  }

  .contact-container {
    flex-direction: column;
    width: auto !important;
    padding: 1.25rem !important;
  }

  .contact-container button,
  .contact-social {
    margin-bottom: 3.75rem;
  }
}


.page-under-maintenance-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.25rem;
}

.page-under-maintenance-container h1 {
  font-size: 2.25rem;
  color: #e74c3c;
  margin-bottom: 1.25rem;
}

.page-under-maintenance-container p {
  font-size: 1.125rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.3;
}

.page-under-maintenance-logo {
  width: auto;
  height: 6.25rem;
}

.loader {
  border: 1rem solid #f3f3f3;
  border-top: 1rem solid var(--primary-color);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
