/* Estilos para el componente Footer */

.yeyobitz-footer {
  background-color: var(--background-dark);
  border-top: 4px solid var(--primary-color);
  position: relative;
  padding-bottom: 80px !important;
  color: var(--text-light);
}

.footer-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-columna {
  flex: 1;
  min-width: 250px;
  margin: 15px;
  position: relative;
}

.footer-titulo {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: var(--accent-tertiary);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.footer-titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  margin: 5px 0;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  padding: 3px 0;
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: var(--accent-tertiary);
  transform: translateX(15px);
}

.footer-links a:hover::before {
  transform: translateX(15px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  transition: transform 0.3s;
  transform: translateX(-100%);
}

.social-btn:hover::after {
  transform: translateX(0);
}

.social-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-tertiary);
}

.footer-columna p {
  margin: 10px 0;
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.6;
}

.footer-columna p i {
  width: 16px;
  margin-right: 8px;
  color: var(--accent-secondary);
}

.firma-container {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
}

.firma-container p {
  margin: 5px 0;
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.8;
}

.firma-container .fa-heart {
  color: var(--accent-color);
  animation: latido 1.5s infinite;
}

@keyframes latido {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.firma-link {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: bold;
  position: relative;
  padding: 0 3px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.firma-link:hover {
  color: var(--accent-tertiary);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.yeyobitz-firma {
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 4px;
  text-decoration: none;
  font-family: 'Press Start 2P', cursive;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--primary-light);
}

.copyright {
  font-size: 12px !important;
  margin-top: 10px !important;
  color: var(--text-light) !important;
  opacity: 0.6 !important;
}

.volver-arriba-container {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.boton-volver-arriba {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--text-light);
  border: 3px solid var(--primary-color);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 18px;
}

.boton-volver-arriba:hover {
  transform: translateY(-5px);
  box-shadow: 3px 8px 0px rgba(0, 0, 0, 0.4);
  background-color: var(--primary-color);
  border-color: var(--accent-tertiary);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contenido {
    flex-direction: column;
  }
  
  .footer-columna {
    margin: 10px 0;
    width: 100%;
  }
  
  .footer-titulo {
    font-size: 14px;
  }
  
  .volver-arriba-container {
    right: 10px;
    bottom: 10px;
  }
} 