/* =========================================
   FOOTER DASHBOARD - ULTRA PRO
   ========================================= */

.footer-dashboard {
  background-color: #050505; /* Negro profundo (coincide con Loader/Nosotros) */
  color: #fff;
  font-family: 'Segoe UI', system-ui, sans-serif;
  padding-top: 60px;
  padding-bottom: 20px;
  border-top: 1px solid #1a1a1a; /* Línea sutil superior */
  position: relative;
  z-index: 10;
}

/* --- NEWSLETTER --- */
.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #fff, #999);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.newsletter-text {
  color: #888;
  font-size: 0.95rem;
  margin: 0;
}

.newsletter-form .input-group {
  background: #111;
  border-radius: 50px;
  padding: 5px;
  border: 1px solid #222;
  transition: border-color 0.3s;
}

.newsletter-form .input-group:focus-within {
  border-color: var(--brand-blue);
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: #fff;
  padding-left: 20px;
  box-shadow: none;
}

.newsletter-form .form-control::placeholder {
  color: #555;
}

.btn-subscribe {
  background-color: var(--brand-blue);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-subscribe:hover {
  background-color: var(--brand-accent);
  transform: translateX(-2px);
}

/* --- SEPARADORES --- */
.footer-divider {
  border-top: 1px solid #1a1a1a;
  opacity: 1;
  margin: 40px 0;
}

/* --- COLUMNAS PRINCIPALES --- */
.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

/* Redes Sociales (Círculos) */
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid #222;
}

.social-btn:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
  transform: translateY(-3px);
}

/* --- LINKS Y NAVEGACIÓN --- */
.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Efecto Hover Dashboard: El link se mueve y se ilumina */
.footer-links a:hover {
  color: #fff;
  transform: translateX(5px); /* Desplazamiento lateral */
}

/* Contacto Items */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--brand-blue);
}

.footer-contact a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--brand-accent);
}

/* --- BOTTOM (LEGALES) --- */
.copyright {
  color: #555;
  font-size: 0.85rem;
  margin: 0;
}

.legal-links a {
  color: #555;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #fff;
}

.separator {
  color: #333;
  margin: 0 10px;
}

/* Responsive Ajustes */
@media (max-width: 768px) {
  .footer-dashboard {
    padding-top: 40px;
    text-align: left; /* Mantenemos alineación izquierda para que se vea pro */
  }
  
  .newsletter-form {
    margin-top: 15px;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }
}