/* ============================================
   FOOTER STYLES - Replicado de Vue.js
   ============================================ */

.app-footer {
  background: #1f2937;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Main Footer */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.logo-text {
  background: linear-gradient(135deg, #E91E63 0%, #7B68EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  font-size: 1.125rem;
}

.social-link:hover {
  color: #E91E63;
  border-color: currentColor;
  transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Bottom Footer */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .app-footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  
  .footer-brand {
    text-align: center;
    gap: 0.75rem;
  }
  
  .brand-logo {
    justify-content: center;
    font-size: 1.25rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
  }
  
  .brand-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .social-links {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-section {
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .footer-list {
    gap: 0.25rem;
  }
  
  .footer-link {
    font-size: 0.875rem;
    justify-content: center;
    min-height: 40px;
  }
  
  .footer-link:hover {
    transform: none;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-bottom-link {
    justify-content: center;
    min-height: 40px;
  }
}

