.site-footer {
  background-color: #eff0f1;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  color: #003366;
}

/* Parte superior */
.footer-top {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Enlaces */
.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0066cc;
}

/* Botones de tiendas */
.footer-apps {
  display: flex;
  gap: 10px;
}

.footer-apps img {
  height: 35px;
  transition: transform 0.2s;
}

.footer-apps img:hover {
  transform: scale(1.05);
}

/* Línea divisoria */
.site-footer hr {
  border: 0;
  border-top: 1px solid #d6d2d2;
  margin: 20px 0;
}

/* Parte inferior */
.footer-bottom {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

/* Iconos sociales */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  height: 22px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-apps {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* 🔹 Sección de enlaces con texto debajo */
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #003366;
  min-width: 120px;
}

.footer-item a {
  text-decoration: none;
  color: #003366;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.footer-item a:hover {
  color: #0066cc;
}

/* Frases debajo de cada enlace */
.footer-item p {
  font-size: 13px;
  margin: 2px 0;
  color: #00509e;
  opacity: 0.8;
  line-height: 1.3;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
