:root{
  --bg: #070A12;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }
body{
  background: radial-gradient(1200px 800px at 20% 10%, rgba(167, 99, 246,.18), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(34, 211, 238,.14), transparent 60%),
              radial-gradient(900px 700px at 60% 90%, rgba(16, 185, 129,.12), transparent 55%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.bg-orb{
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  transform: translateZ(0);
}
.orb-1{ left: -140px; top: -120px; background: rgba(167, 99, 246, .8); }
.orb-2{ right: -160px; bottom: -160px; background: rgba(34, 211, 238, .8); }

.brand-pill{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.brand-pill .dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(167,99,246,1), rgba(34,211,238,1));
  box-shadow: 0 0 0 4px rgba(167,99,246,.18);
}
.brand-pill .brand{
  letter-spacing: .4px;
  font-weight: 700;
}

.card-glass{
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  border-radius: 22px;
}
.option-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
}
.option-card:active{
  transform: translateY(-2px);
}

.icon-badge{
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(167, 99, 246,.18);
}
.icon-badge i{ font-size: 1.6rem; }

.icon-badge-whatsapp{
  background: rgba(16, 185, 129,.18);
}

.arrow{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
}
.arrow i{ font-size: 1.25rem; }

.chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .38rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}

.contact-pill{
  width: fit-content;
  padding: .6rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
}

h1, h2, p { text-wrap: balance; }
.lead{ color: rgba(255,255,255,.76) !important; }
.text-secondary{ color: rgba(255,255,255,.70) !important; }

a.option-card{ color: inherit; }
a.option-card:focus{
  outline: none;
  box-shadow: 0 0 0 6px rgba(34,211,238,.18), var(--shadow);
}

@media (max-width: 576px){
  .bg-orb{ width: 420px; height: 420px; }
}
