
:root{
  --bn-primary: #8dc63f;
  --bn-accent: #000;
  --bn-muted: #64748B;
  --bn-text: #000;
  --bn-surface: #F7F9FB;
}

body { background: #fff; color: var(--bn-text); font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.navbar-brand img { height: 36px; }

.btn-bn {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bn-primary);
  --bs-btn-border-color: var(--bn-primary);
  --bs-btn-hover-bg: #8dc63f;
  --bs-btn-hover-border-color: #8dc63f;
  --bs-btn-focus-shadow-rgb: 25,135,84;
}

.badge-soft {
  background: rgba(33,194,94,0.12);
  color: var(--bn-primary);
  border: 1px solid rgba(33,194,94,0.25);
}

.section-muted { background: var(--bn-surface); }

.kpi-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.card-feature {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.icon-pill {
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:12px;
  background: rgba(33,194,94,0.12); color: var(--bn-primary);
  border:1px solid rgba(33,194,94,0.2);
}

.footer {
  border-top:1px solid #e5e7eb;
  background: #fff;
}

.text-bn-primary {
  color: #8dc63f;
  display: inline-block;
}

.fade-in {
  opacity: 1;
  transition: opacity .3s ease-in;
}

.fade-out {
  opacity: 0;
  transition: opacity .3s ease-out;
}


.problem-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.problem-icon {
  background: #e8f8e3;
  border-radius: 14px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  color: #65a30d;
  font-size: 28px;
}

.problem-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Puntos del carrusel sobre fondo blanco */
.carousel-indicators [data-bs-target] {
  background-color: #475569 !important; /* gris oscuro tipo slate */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: .6;
}

.carousel-indicators .active {
  background-color: #8dc63f !important; /* verde de Snap Nube */
  opacity: 1;
}

/* BOTÓN DE WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  color: #ffffff;
}

.whatsapp-float {
  text-decoration: none !important;
}

.whatsapp-float i {
  text-decoration: none !important;
  line-height: 1;
}

.navbar-nav .nav-link {
  font-weight: 600 !important;
}



