* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Gabarito", sans-serif;
}

/* HOME AND NAV */
.home-box {
  background-color: #f3f3f3;
}

.home-background {
  background-image: url("/assets/images/home-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px 0px 120px 0px;
}

.home-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0px;
}

.home-navbar .navbar-logo {
  width: 85px;
  height: 64px;
}

.home-button {
  border-radius: 80px;
  background: #3b622c;
  color: white;
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

.home-button:hover {
  background: #2a471f;
}

.menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu .menu-item {
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.menu .menu-item:hover {
  color: rgb(240, 240, 240);
}

.home-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 180px 0px 240px 0px;
}

.home-logo-image {
  width: 500px;
}

@media (max-width: 1000px) {
  .home-button {
    padding: 15px 20px;
    font-size: 14px;
  }

  .menu {
    gap: 15px;
  }
}

@media (max-width: 800px) {
  .menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-logo-image {
    width: 100%;
  }
}
/* HOME AND NAV */

/* PARTNERS */
.partners-box {
  background-color: #f3f3f3;
  padding: 100px 0px;
}
.partners-content {
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partners-subtitle {
  color: #394149;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.partners-images {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
/* PARTNERS */

/* ABOUT-US */
.about-us-box {
  padding: 120px 0px;
}

.about-us-content {
  display: flex;
  gap: 120px;
  align-items: center;
}

.about-us-info {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.about-us-image {
  background-image: url("/assets/images/about-image.jpg");
  width: 50%;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  position: relative;
}

.about-us-overlay {
  position: absolute;
  border-radius: 65px;
  background: #f3f3f3;
  width: 400px;
  bottom: -30px;
  right: -30px;
  padding: 5px;
}

.about-circle {
  width: 85px;
  height: 85px;
  background-color: #3b622c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 1000px) {
  .about-us-overlay {
    right: unset;
  }

  .about-us-image {
    width: 100%;
    display: flex;
    height: 300px;
    justify-content: center;
  }

  .about-us-content {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }

  .about-us-info {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .about-us-overlay {
    width: 100%;
  }
}
/* ABOUT-US */

/* VISION AND MISSION */
.vision-mission-box {
  padding: 120px 0px;
}

.vision-mission-content {
  display: flex;
  gap: 120px;
  align-items: center;
}

.vision-mission-content .vision-image-box {
  background-image: url("/assets/images/mission-image.jpg");
  width: 50%;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  position: relative;
}

.vision-mission-content .vision-image-box .vision-overlay {
  position: absolute;
  border-radius: 18px;
  background: #f3f3f3;
  width: 300px;
  top: -30px;
  right: -30px;
  padding: 20px 20px;
}

.vision-mission-content
  .vision-image-box
  .vision-overlay
  .vision-overlay-circle {
  width: 85px;
  height: 85px;
  position: absolute;
  background-color: #3b622c;
  border-radius: 50%;
  top: -35px;
  right: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-mission-content .vision-info-box {
  width: 50%;
}

.vision-info-title {
  color: #80858b;
  font-size: 24px;
  font-weight: 700;
}

.vision-info-description {
  color: #80858b;
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
  margin: 0;
}

@media (max-width: 1000px) {
  .vision-mission-content .vision-image-box {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .vision-mission-content .vision-image-box .vision-overlay {
    right: unset;
  }

  .vision-mission-content {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }

  .vision-mission-content .vision-info-box {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .vision-mission-content .vision-image-box .vision-overlay {
    width: 225px;
  }
}
/* VISION AND MISSION */

/* PRODUCTS */
.products-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tabs-container {
  display: flex;
  align-items: baseline;
}

.tabs-container .tabs {
  display: flex;
  white-space: nowrap;
  gap: 24px;
}

.tabs-container .tabs .tab {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 80px;
  border: 1px solid #3b622c;
  cursor: pointer;
}

.tabs-container .tabs .tab:hover {
  background-color: #3b622c;
  color: white;
}

.tabs-container .tabs .tab.active {
  background: #3b622c;
  color: white;
}

.products-content .tab-content {
  display: none;
}

.products-content .tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-item {
  position: relative;
  width: 100%;
}

.product-image-box {
  border-radius: 24px 24px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}

.product-item-content {
  display: flex;
  flex-direction: column;
  height: 211px;
  background-color: white;
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 0px 0px 24px 24px;
  box-shadow: 8px 8px 16px 0px rgba(39, 48, 90, 0.04);
}

.product-image {
  position: absolute;
  top: 30px;
  width: 236.221px;
  height: 323px;
}

.product-title {
  color: #394149;
  font-size: 28px;
  font-weight: 700;
}

.product-text {
  color: #80858b;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  overflow-y: auto;
}

@media (max-width: 1100px) {
  .tabs-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    margin: 0px 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1000px) {
  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .tab-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* PRODUCTS */

/* LEARN MORE */
.learn-more-box {
  padding: 120px 0px;
}

.learn-more-box .learn-more-content {
  padding-top: 40px;
  display: flex;
}

.learn-more-box .learn-more-content iframe {
  border-radius: 24px 0 0 24px;
  width: 50%;
}

.learn-more-box .learn-more-content .learn-more-text-box {
  display: flex;
  padding: 40px;
  align-items: center;
  background: rgba(73, 111, 23, 0.04);
  border-radius: 0 24px 24px 0;
  width: 50%;
}

@media (max-width: 800px) {
  .learn-more-box .learn-more-content {
    flex-direction: column;
  }

  .learn-more-box .learn-more-content iframe {
    width: 100%;
    height: 315px;
    border-radius: 24px 24px 0 0;
  }

  .learn-more-box .learn-more-content .learn-more-text-box {
    width: 100%;
    border-radius: 0 0 24px 24px;
  }
}
/* LEARN MORE */

/* CONTACT */
.contact-box {
  border-radius: 0px 120px 0px 0px;
  background: #f18c24;
  padding: 120px 0px;
}

.contact-box-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.box-title {
  width: 60%;
  display: flex;
}

.box-form {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.box-form .box-form-field {
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.2);
  height: 54px;
  padding: 4px 4px 4px 40px;
  outline: none;
  border: none;
}

.box-form .box-form-field::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 1;
}

@media (max-width: 800px) {
  .contact-box-content {
    flex-direction: column;
    gap: 16px;
  }

  .box-title {
    width: 100%;
    justify-content: center;
  }

  .box-form {
    width: 100%;
  }
}
/* CONTACT */

/* QUESTIONS */
.questions-box {
  background: #3b622c;
  padding: 120px 0px;
}

.questions-box .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
/* QUESTIONS */

/* LOCATION */
.location-box {
  background-color: #314f18;
  padding: 120px 0px;
}

.location-box .location-content {
  display: flex;
  gap: 120px;
  align-items: center;
}

.location-box .location-content iframe {
  border-radius: 24px;
  width: 50%;
  border: 0;
}

.location-box .location-content .location-info {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 16px;
}

.location-box .location-content .location-info .location-title {
  font-size: 21px;
  color: white;
  font-weight: 700;
}

.location-box .location-content .location-info .location-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-decoration: none;
}

@media (max-width: 800px) {
  .location-box .location-content {
    flex-direction: column;
  }

  .location-box .location-content .location-info {
    width: 100%;
  }

  .location-box .location-content iframe {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .location-box .location-content {
    gap: 20px;
  }
}
/* LOCATION */

/* FOOTER */
footer {
  background: #0b2607;
  padding: 80px 0px;
}

footer .footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

footer .footer-box .footer-text {
  font-size: 18px;
  color: white;
  text-align: center;
}
/* FOOTER */

/* UTILS */
.tecno-section-black-title {
  color: #394149;
  font-size: 36px;
  font-weight: 700;
}

.tecno-section-white-title {
  color: white;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

.tecno-white-button {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 80px;
  background: #fff;
  text-decoration: none;
  color: #3b622c;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  border: none;
}

.tecno-white-button:hover {
  background-color: rgb(230, 230, 230);
}

.tecno-overlays-title {
  color: #394149;
  font-size: 24px;
  font-weight: 700;
}

.tecno-overlays-descriptions {
  color: #80858b;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}

.tecno-sections-text {
  color: #80858b;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

/* UTILS */

/* SCROLL */
/* Estiliza a barra de rolagem inteira */
::-webkit-scrollbar {
  width: 8px; /* Largura da barra de rolagem */
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track {
  background: #f3f3f3; /* Cor de fundo */
  border-radius: 10px;
}

/* A "alça" que você arrasta */
::-webkit-scrollbar-thumb {
  background: #e2e2e2; /* Cor da barra */
  border-radius: 10px;
}

/* Quando passa o mouse sobre a barra */
::-webkit-scrollbar-thumb:hover {
  background: #b9b9b9;
}

/* SCROLL */
