/* Estilos del Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem 0 1rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

/* Media queries para footer responsive */
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Media queries para footer responsive */
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-container {
    padding: 0 0.5rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
