* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #dfe6d7;
  color: #2c2c2c;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ================= NAVBAR ================= */

nav {
  padding: 12px 0 0 0;

  background: #dfe6d7;
}

.nav-container {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

/* ========= LOGO ========= */

.logo-box {
  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(10px);

  padding: 10px 18px;

  border-radius: 22px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  display: flex;

  align-items: center;

  justify-content: center;
}

.logo-img {
  width: 120px;

  height: auto;

  object-fit: contain;

  display: block;
}

/* ========= MENÚ ========= */

.menu-box {
  display: flex;

  gap: 12px;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(10px);

  padding: 10px 15px;

  border-radius: 20px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.menu-box a {
  text-decoration: none;

  color: #333;

  padding: 10px 18px;

  border-radius: 14px;

  transition: 0.3s;

  font-size: 15px;

  font-weight: 500;
}

.menu-box a:hover {
  background: #e6efde;

  color: #6f9d69;
}

/* ================= HERO ================= */

.hero {
  padding: 40px 0 100px;

  background: #dfe6d7;

  overflow: hidden;
}

.hero-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 70px;
}

/* ========= LEFT ========= */

.hero-left {
  flex: 1;
}

.small-title {
  letter-spacing: 8px;

  font-size: 14px;

  color: #6c7468;

  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(2.8rem, 7vw, 90px);

  line-height: 0.95;

  color: #1d1d1d;

  margin-bottom: 30px;

  font-weight: 500;

  font-family: "Cormorant Garamond", serif;
}

.hero-left p {
  font-size: 22px;

  line-height: 1.8;

  color: #4d4d4d;

  max-width: 700px;

  margin-bottom: 40px;
}

.btn {
  display: inline-block;

  background: #89b36d;

  color: white;

  padding: 18px 40px;

  border-radius: 50px;

  text-decoration: none;

  font-size: 20px;

  transition: 0.3s;
}

.btn:hover {
  background: #71995a;
}

/* ========= RIGHT ========= */

.hero-right {
  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;
}

.hero-img {
  width: 750px;

  max-width: 100%;

  object-fit: contain;
}

/* ================= BENEFICIOS ================= */

.features {
  padding: 40px 0;

  background: #f6f6f2;
}

.benefits-title {
  text-align: center;

  font-size: 60px;

  color: #7ba06e;

  margin-bottom: 40px;

  font-family: "Cormorant Garamond", serif;
}

.benefits-img {
  width: 100%;

  max-width: 1400px;

  display: block;

  margin: auto;

  border-radius: 30px;
}

/* ================= ABOUT ================= */

.about {
  padding: 120px 0;

  background: white;
}

.about-content {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 70px;

  flex-wrap: wrap;
}

.about-image {
  flex: 1;

  min-width: 320px;

  position: relative;
}

.about-image img {
  width: 100%;

  border-radius: 30px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-text {
  flex: 1;

  min-width: 320px;
}

.section-subtitle {
  letter-spacing: 5px;

  color: #7ba06e;

  margin-bottom: 18px;

  font-size: 13px;
}

.about-text h2 {
  font-size: clamp(2.5rem, 6vw, 70px);

  line-height: 1;

  margin-bottom: 30px;

  font-family: "Cormorant Garamond", serif;
}

.about-text p {
  color: #666;

  line-height: 2;

  margin-bottom: 25px;

  font-size: 18px;
}

/* ================= FOOTER ================= */

footer {
  background: #dfe7d6;

  padding: 25px 40px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-left {
  text-align: left;
}

.footer-left p {
  font-size: 15px;

  color: #5f645f;

  margin-bottom: 6px;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  color: #5f645f;

  font-size: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .hero-content,
  .about-content {
    flex-direction: column;
  }

  .hero-left,
  .about-text {
    text-align: center;
  }

  .hero-left p {
    font-size: 18px;
  }

  .about-text p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */

  .nav-container {
    flex-direction: column;

    gap: 20px;
  }

  .menu-box {
    flex-wrap: wrap;

    justify-content: center;

    width: 100%;
  }

  .menu-box a {
    font-size: 14px;

    padding: 10px 14px;
  }

  /* HERO */

  .hero {
    padding: 30px 0 60px;
  }

  .hero-content {
    flex-direction: column;

    text-align: center;

    gap: 40px;
  }

  .small-title {
    letter-spacing: 4px;

    font-size: 12px;
  }

  .hero-left p {
    font-size: 17px;

    line-height: 1.8;
  }

  .btn {
    font-size: 16px;

    padding: 14px 28px;
  }

  .hero-img {
    width: 100%;

    max-width: 500px;
  }

  /* BENEFICIOS */

  .features {
    padding: 20px 0;
  }

  .benefits-title {
    font-size: 42px;
  }

  .benefits-img {
    border-radius: 20px;
  }

  /* ABOUT */

  .about {
    padding: 70px 0;
  }

  .about-content {
    flex-direction: column;

    gap: 40px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    font-size: 16px;

    line-height: 1.9;
  }

  /* FOOTER */

  footer {
    flex-direction: column;

    text-align: center;

    padding: 20px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-right p,
  .footer-left p {
    font-size: 15px;
  }
}

/* ================= FRASE FINAL ================= */

.frase-final {
  background-color: #dfe6d4;

  text-align: center;

  padding: 10px 20px;
}

.frase-final h2 {
  font-size: 20px;

  color: #7ea06f;

  margin-bottom: 10px;

  font-weight: 600;
}

.frase-final p {
  font-size: 14px;

  color: #555;

  font-style: italic;
}