:root{
  /* Brand colors (adjust if you have exact logo hex) */
  --b2l-primary:#4B49A6;  /* purple */
  --b2l-accent:#F59A23;   /* orange */
  --b2l-ink:#121826;
  --b2l-muted:#6B7280;
  --b2l-bg:#F7F8FC;
  --radius: 18px;
}
html{
  scroll-behavior: smooth;
}
body{ 
  color:var(--b2l-ink);
  overflow-x: hidden;
}
.bg-soft{ background: var(--b2l-bg); }
.text-muted{ color: var(--b2l-muted) !important; }
.btn-brand{
  background: linear-gradient(135deg, var(--b2l-primary), #3f3db3);
  border: none;
  color:#fff;
  box-shadow: 0 10px 22px rgba(75,73,166,.25);
  transition: all 0.3s ease;
}
p {
  text-align: justify;
  line-height: 1.5;
}
.btn-brand:hover{ 
  filter: brightness(.98); 
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(75,73,166,.35);
}
.btn-outline-brand{
  border: 1px solid rgba(75,73,166,.35);
  color: var(--b2l-primary);
  transition: all 0.3s ease;
}
.btn-outline-brand:hover{
  background: rgba(75,73,166,.08);
  border-color: rgba(75,73,166,.45);
  color: var(--b2l-primary);
  transform: translateY(-2px);
}
.badge-brand{
  background: rgba(245,154,35,.12);
  color: #9a5a00;
  border: 1px solid rgba(245,154,35,.25);
  white-space: normal;
  display: inline-block;
  line-height: 1.4;
}
.card{
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, .1);
}
.section{
  padding: 72px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.fade-in{
  opacity: 1;
  transform: translateY(0);
}
header.section{
  opacity: 1;
  transform: translateY(0);
}
.section-title{
  letter-spacing: .2px;
}
.divider{
  height: 3px;
  width: 64px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--b2l-accent), var(--b2l-primary));
}
.hero{
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(900px 500px at 10% 15%, rgba(245,154,35,.18), transparent 50%),
    radial-gradient(900px 500px at 85% 20%, rgba(75,73,166,.22), transparent 55%),
    linear-gradient(180deg, #ffffff, #fbfbff);
  border: 1px solid rgba(17, 24, 39, .06);
}
.hero .hero-shape{
  position:absolute;
  right:-120px; top:-120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245,154,35,.45), rgba(245,154,35,.0) 60%),
              radial-gradient(circle at 70% 60%, rgba(75,73,166,.45), rgba(75,73,166,.0) 62%);
  filter: blur(2px);
  opacity:.9;
  pointer-events:none;
}
.icon-pill{
  width: 44px; height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(75,73,166,.08);
  color: var(--b2l-primary);
  transition: all 0.3s ease;
}
.icon-pill:hover{
  background: rgba(75,73,166,.15);
  transform: scale(1.05);
}
.list-check li{
  margin-bottom: .45rem;
}
.list-check li::marker{ color: var(--b2l-accent); }
.mini-note{
  font-size: .92rem;
  color: var(--b2l-muted);
}
.sticky-cta{
  position: sticky;
  bottom: 14px;
  z-index: 9;
}
.bottom-action-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(17, 24, 39, .1);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, .08);
  z-index: 1000;
  padding: 12px 0;
  transition: transform 0.3s ease;
  display: none;
}
.bottom-action-bar .container{
  display: flex;
  gap: 12px;
  justify-content: center;
}
.bottom-action-bar .btn{
  flex: 1;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 500;
}
.btn-whatsapp{
  background: #25D366;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover{
  background: #20BA5A;
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.btn-download{
  background: var(--b2l-primary);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-download:hover{
  background: #3f3db3;
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
@media (max-width: 991.98px){
  .section{ padding: 16px 0; }
  .bottom-action-bar{
    display: block;
  }
  .bottom-action-bar .btn{
    font-size: .9rem;
    padding: 10px 16px;
  }
}
.navbar{
  transition: all 0.3s ease;
}
.navbar-nav .nav-link{
  transition: color 0.3s ease;
}
#form-message{
  border-radius: var(--radius);
  border: 0;
  padding: 12px 16px;
  font-size: 0.95rem;
}
#form-message.alert-success{
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-left: 3px solid #16a34a;
}
#form-message.alert-danger{
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-left: 3px solid #dc2626;
}
@media (max-width: 575.98px){
  .bottom-action-bar .btn{
    font-size: .85rem;
    padding: 10px 12px;
    gap: 6px;
  }
  .bottom-action-bar .btn i{
    font-size: 1.1rem;
  }
  .badge-brand{
    font-size: .8rem;
    padding: 8px 12px !important;
    line-height: 1.5;
  }
  .hero .badge-brand{
    max-width: 100%;
  }
}

