:root {
  --gris-footer: #292421;
}

/* Fondo y texto base */
.bg-dark {
  background-color: #2e303b !important;
}

.text-light {
  color: #f8f9fa !important;
}

/* Logo y redes */
.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-social .social-icons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-logo-social .social-icons a {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.footer-logo-social .social-icons a:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.footer-logo {
  height: 40px;
  max-width: 100%;
}

/* Títulos y listas */
.footer-title {
  color: #f26006;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* Íconos de contacto */
.footer-section p i {
  margin-right: 0.5rem;
}

/* Línea inferior */
.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid #746e6e;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-bottom p a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-bottom p a:hover {
  color: #0056b3;
}

/* Responsive para móviles */
@media (max-width: 576px) {
  .footer-logo-social {
    align-items: center;
    text-align: center;
  }

  .footer-logo-social .social-icons {
    justify-content: center;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .footer-bottom p a {
    display: inline-block;
    margin-top: 5px;
  }
}
