/* ===== FOOTER ESTILO COLORES + RESPONSIVE ORIGINAL ===== */
.footer {
  background: rgba(44, 62, 80, 0.95); /* como colores.html */
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  color: white;
  position: relative;
}

/* Línea decorativa arriba usando pseudo-elemento */
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  position: absolute;
  top: 0;
  left: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

/* Logo y marca */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e74c3c;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.4);
}

.footer-brand-text h3 {
  font-size: 1.3rem;
  color: #ecf0f1;
  margin: 0;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #e74c3c;
  font-style: italic;
  margin: 0;
}

/* Enlaces */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

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

/* Contacto */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #bdc3c7;
  font-size: 0.8rem;
}

.contacto-item a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacto-item a:hover {
  color: #e74c3c;
}

/* Redes sociales */
.social-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  color: #ecf0f1;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4);
}

/* Footer bottom */
.footer-bottom {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  margin-bottom: 80px;
}

.footer-bottom p {
  color: #bdc3c7;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.2;
}

.copyright {
  color: #e74c3c;
  font-weight: 600;
}

.love {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.heart {
  color: #ef4444;
  animation: heartbeat 1.5s ease-in-out infinite;
  font-size: 0.8rem;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .footer {
    padding: 0.8rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    justify-self: center;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .footer-links {
    grid-column: 1;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .footer-contact {
    grid-column: 2;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .social-links {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    gap: 0.2rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 0.6rem;
  }
  
  .footer-container {
    gap: 0.8rem;
  }
  
  .footer-brand-text h3 {
    font-size: 1rem;
  }
  
  .footer-tagline {
    font-size: 0.7rem;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
  
  .contacto-item {
    font-size: 0.7rem;
  }
  
  .social-link {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .footer-bottom p {
    font-size: 0.65rem;
  }
}



.no-result {
  display: none; /* Hidden by default */
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.6;
  border-left: 4px solid #ff6b35;
}

.no-result strong {
  color: #212529;
  font-weight: 600;
}

.no-result small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Animation when showing */
.no-result.show {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}