/* footer.css - Versión oscurecida: fondo azul oscuro + texto blanco */
.footer {
  background-color: #0d2b49; /* Azul marino oscuro, elegante y profesional */
  color: #ffffff; /* Texto blanco */
  padding: 40px 20px;
  border-top: 1px solid #1a4a7a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Estilos comunes para columnas */
.footer-col {
  text-align: center;
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 10px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e9f5; /* Blanco suave para mejor legibilidad */
}

/* 🔗 Estilo de enlaces: sin subrayado, sin hover agresivo */
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.footer-col a:hover {
  opacity: 0.85; /* Solo reduce opacidad — sin subrayado, sin cambio de color */
}

/* Imagen Spotify */
.spotify-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px auto;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.spotify-img:hover {
  transform: scale(1.02);
}

.spotify-link {
  display: inline-block;
}

.app-download {
  margin-top: 16px;
  font-weight: 600;
  color: #ffffff;
}

.app-download a {
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  transition: background 0.3s;
}

.app-download a:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

/* ✅ Responsive: Tablet (hasta 992px) → 2 columnas */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-col:nth-child(2) {
    grid-column: span 2;
  }
}

/* ✅ Responsive: Móvil (hasta 768px) → 1 columna */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-col:nth-child(2) {
    grid-column: span 1;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-col li {
    font-size: 0.9rem;
  }
}

/* ✅ Móvil pequeño */
@media (max-width: 480px) {
  .footer-col li {
    font-size: 0.875rem;
  }

  .spotify-img {
    max-width: 90%;
  }
}