.footer {
  margin-top: 3rem;
  padding: 1.5rem 1rem;
  background: #cccccc;
  border-top: 1px solid #e5e5e5;
}

.footer-contenido {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-texto {
  font-size: 0.85rem;
  color: #555;
}

.footer-redes {
  display: flex;
  gap: 0.6rem;
}

.footer-redes .red {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Colores */
.footer-redes .whatsapp {
  background: #25d366;
}

.footer-redes .instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.footer-redes .tiktok {
  background: #000;
}

/* Hover */
.footer-redes .red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-contenido {
    flex-direction: column;
    text-align: center;
  }
}
