/* ===== RESET BÁSICO ===== */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ===== LAYOUT (FOOTER ABAJO) ===== */
body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 20px 20px;
}

/* Contenedor */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Secciones */
.footer-section h2,
.footer-section h3 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section p {
  font-size: 14px;
  color: #cbd5e1;
}

/* Links */
.footer-section a {
  display: block;
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* Lista */
.footer-section ul {
  list-style: none;
  padding: 0;
}

/* Redes sociales */
.socials a {
  display: inline-block;
  margin-right: 12px;
}

/* Línea inferior */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #94a3b8;
}

/* ===== RESPONSIVE EXTRA ===== */
@media (max-width: 500px) {
  .footer {
    text-align: center;
  }

  .socials a {
    display: block;
    margin: 5px 0;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

#Logo {
  max-height: 32px;
  width: auto;
  display: block;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
}