.footer {
  font-family: "Darker Grotesque", "Odoo Unicode Support Noto", sans-serif;
  background-color: #6d9111;
  color: white;
  font-size: 1rem;
  overflow-x: hidden; 
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0px;
}

.footer-subtitle {
  font-weight: bold;
  font-size: 1.1rem;
}

.footer-menu {
  column-count: 2;
  column-gap: 2rem;
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
  margin-top: 1rem;
}

.footer-menu li {
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.footer-menu a {
  color: #c7e67d;
  text-decoration: none;
  font-size: 1rem;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-description {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.footer-highlight {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.footer-description-column {
  display: block;
  grid-column: 2 / 3;
  text-align: left !important;
  align-items: flex-start !important;
  margin: 0;
  padding: 0;
  max-width: unset;
}

.footer-description-column p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  color: white;
  text-align: left !important;
  white-space: normal;
  margin-top: 3rem;
}

.footer-description-column .footer-highlight {
  font-weight: 350;
  color: white;
  margin-bottom: 0;
  text-align: left !important;
  white-space: normal;
  margin-top: 2.5rem;
}

.footer-contact {
  align-items: flex-end;
  text-align: right;
  margin-top: 3.8rem;
}

.footer-contact p {
  margin: 0.3rem 0;
}

.footer a {
  color: #c7e67d;
  text-decoration: none;
  font-size: 1rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.3rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
  justify-content: flex-end;
}

.footer-bottom {
  background-color: #55770d;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.footer-menu a[href="servicios.html"],
.footer-menu a[href="sostenibilidad.html"] {
  color: white !important;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-column, 
  .footer-contact, 
  .social-icons {
    justify-content: flex-start;
    align-items: center !important;
  }
}

@media (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-description-column p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    margin-top: 2rem;
    text-align: center !important;
  }

  .footer-description-column .footer-highlight {
    font-weight: 300;
    color: white;
    margin-bottom: 0;
    text-align: center !important;
    margin-top: 1.5rem;
  }

  .footer-column,
  .footer-description-column,
  .footer-contact,
  .footer-branding {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-contact p {
    width: 100%;
    text-align: center;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 10px;
  }

  .footer-menu {
    columns: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    font-size: 0.95rem;
  }

  .footer-title {
    font-size: 1.3rem;
  }

  .footer-subtitle,
  .footer-description,
  .footer-highlight {
    font-size: 1rem;
  }

  .footer-menu {
    columns: 1;
  }

  .social-icons {
    font-size: 1.3rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}