/* Selector principal (Home) ------------------------------------------ */

.hero-selector {
  min-height: 78vh;
}

.hero-bg-selector {
  background-image:
    radial-gradient(circle at 15% 0%, rgba(0, 224, 255, 0.18), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(0, 165, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #020b1e 0, #020817 40%, #020818 100%);
  opacity: 0.35;
}

/* Cards de elección */
.choice-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  min-height: 320px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.choice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.78);
  border-color: rgba(0, 224, 255, 0.45);
}

/* Fondo visual por tipo (podés cambiar las imágenes) */
.choice-isp {
  background:
    radial-gradient(circle at top, rgba(0, 224, 255, 0.18), transparent 100%),
    linear-gradient(135deg, rgba(2, 11, 30, 0.52), rgba(2, 8, 23, 0.52)),
    url("../img/FondoISP.png");
  background-size: cover;
  background-position: center;
}

.choice-business {
  /* Tonalidad distinta (más “business”), sin tocar la paleta global */
  background:
    radial-gradient(circle at top, rgba(43, 255, 170, 0.16), transparent 80%),
    linear-gradient(135deg, rgba(6, 22, 20, 0.52), rgba(2, 10, 18, 0.52)),
    url("../img/fondoBusiness.png");
  background-size: cover;
  background-position: center;
}

.choice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.choice-content {
  position: relative;
  z-index: 1;
  padding: 26px 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.choice-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 224, 255, 0.12);
  border: 1px solid rgba(0, 224, 255, 0.28);
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 14px;
}

.choice-tag-business {
  background: rgba(43, 255, 170, 0.10);
  border: 1px solid rgba(43, 255, 170, 0.26);
  color: rgba(210, 255, 235, 0.92);
}

.choice-tag-ISP {
  background: rgba(43, 255, 170, 0.10);
  border: 1px solid rgba(16, 105, 177, 0.26);
  color: rgba(210, 255, 235, 0.92);
}

.choice-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.choice-text {
  color: var(--text-soft);
  font-size: 14px;
  max-width: 560px;
  margin-bottom: 16px;
}

.choice-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.choice-hint {
  font-size: 12px;
  color: rgba(220, 235, 255, 0.72);
}

.choice-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(3, 13, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-soft);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choice-note i {
  color: var(--accent);
}


