.footer {
  min-height: 150px;
  background: linear-gradient(to bottom, #0066cc, #003366); padding-top: 60px; padding-bottom: 60px;
  color: white;
  font-family: 'Lato', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  line-height: 0;
  z-index: 1;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}


.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

.footer-list li {
    font-size: 0.9rem;
    color: #cfd6dd;
    margin-bottom: 8px;
}

.footer-list a {
    color: #cfd6dd;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-list a:hover {
    color: #00b9ff;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.15rem;
    transition: color .2s ease, transform .2s ease;
}

.social-icons a:hover {
    color: #00b9ff !important;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: #9aa4ad;
}


.footer-bottom a {
  color: #ffffff;              /* blanco */
  text-decoration: none;
  margin: 0 8px;
  display: inline-block;       /* necesario para animar */
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #f5c400;              /* amarillo */
  animation: bounce 0.6s ease;
}

/* Animación de rebote */
@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-6px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
