:root {
  --dark-green: #004D2C;
  --bg-light-green: #7AB280;
  --neon-green: #00FF00;
  --white: #ffffff;
  --btn-green: #108B00;
}

.aboreto-regular {
  font-family: "Aboreto", system-ui;
}

.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
}

.amaranth-bold {
  font-family: "Amaranth", sans-serif;
  font-weight: 700;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-family: 'Quicksand', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--dark-green);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header img {
  height: 60px;
  width: auto;
}

header ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

header a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
}

header a:hover,
header a:focus {
  color: #797979;
  outline: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  transition: 0.3s;
  background-color: #fff;
  border-radius: 2px;
}

.hero-main {
  height: 70vh;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products {
  background-color: #005E2F;
  position: relative;
  padding: 100px 0 150px;
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 30px;
}

.tilted-img-left {
  width: 100%;
}

.tilted-img-right {
  width: 100%;
}

.product-text {
  text-align: center;
}

.product-text h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.divider-line {
  width: 60px;
  height: 4px;
  background: var(--neon-green);
  margin: 0 auto 20px;
}

.check-list {
  list-style: none;
  text-align: left;
  margin: 1.2rem 0 2rem 0;
}

.check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.custom-check {
  width: 30px;
  height: 30px;
  background-color: var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.custom-check i {
  color: var(--dark-green);
  font-size: 0.9rem;
}

.grass-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('assets/bghero2.png') repeat-x bottom;
  background-size: contain;
}

.attributes {
  background-color: var(--bg-light-green);
  padding: 80px 0;
}

.attributes-flex {
  display: flex;
  gap: 20px;
}

.attributes-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 65%;
}

.attr-item {
  display: flex;
  gap: 15px;
}

.attr-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.dot {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-yellow {
  background: #CCDE47;
}

.yellow-text {
  color: #CCDE47;
}

.dot-blue {
  background: #2626FF;
}

.blue-text {
  color: #2626FF;
}

.dot-neon {
  background: #00FF00;
}

.neon-text {
  color: #00FF00;
}

.dot-orange {
  background: #FF9933;
}

.orange-text {
  color: #FF9933;
}

.dot-lightblue {
  background: #5088BD;
}

.lightblue-text {
  color: #5088BD;
}

.attributes-images {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.images {
  display: flex;
  gap: 1rem;
}

.attributes-images img {
  width: 50%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s;
}

.attributes-images img:hover {
  transform: scale(1.05);
}

.btn-small-green {
  padding: 10px 25px;
  background: var(--btn-green);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.projects-gallery {
  padding: 60px 0;
}

.title-green {
  color: #12B335;
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.essence {
  height: 35rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/essencia-bg.png') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.essence-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.essence-content p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: var(--btn-green);
  color: white;
  border: 2px solid var(--btn-green);
}

.btn-primary:hover {
  background: transparent;
  color: white;
}

.contact-section {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}

.contact-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
}

.form-row {
  display: flex;
  gap: 15px;
}

.input-group {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  resize: none;
}

.contact-title {
  color: #47675A;
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-p {
  color: #414141;
  margin-bottom: 30px;
}

.btn-submit {
  width: 100%;
  background: var(--btn-green);
  color: white;
  padding: 15px;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {

  .hero-img {
    min-height: 105%;
  }

  .products-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tilted-img-left,
  .tilted-img-right {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .attributes-text-grid,
  .attributes-images {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  header nav {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-green);
    padding: 20px 0;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
  }

  header ul.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  header ul li {
    width: 100%;
    text-align: center;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .product-text h2 {
    font-size: 2rem;
  }

  .attributes-text-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .essence {
    height: auto;
    padding: 60px 20px;
  }

  .hero-main {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 20px;
  }

  .title-green {
    font-size: 1.8rem;
  }
}