.seleccion-main {
  background-color: #ffffff;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.seleccion-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}

.seleccion-header {
  text-align: center;
  margin-bottom: 56px;
}

.seleccion-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9046ea;
  margin-bottom: 16px;
}

.seleccion-title {
  font-family: var(--font-roobert);
  font-size: 44px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px 0;
  line-height: 1.15;
}

.seleccion-subtitle {
  font-size: 17px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.seleccion-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.seleccion-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 36px 32px 32px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}

.seleccion-card:hover {
  border-color: #9046ea;
  box-shadow: 0 12px 36px rgba(61, 21, 206, 0.13);
  transform: translateY(-4px);
}

.seleccion-card--organizer {
  border-color: #ede9fe;
  background: linear-gradient(145deg, #faf8ff 0%, #ffffff 60%);
}

.seleccion-card--organizer:hover {
  border-color: #7c3aed;
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.16);
}

.seleccion-card--cliente {
  border-color: #e5e7eb;
  background: #ffffff;
}

.seleccion-card--cliente:hover {
  border-color: #6b7280;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}

.seleccion-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 24px;
  width: fit-content;
}

.seleccion-card--organizer .seleccion-card__badge {
  background: #ede9fe;
  color: #6d28d9;
}

.seleccion-card--cliente .seleccion-card__badge {
  background: #f3f4f6;
  color: #6b7280;
}

.seleccion-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.22s ease;
}

.seleccion-card:hover .seleccion-card__icon {
  transform: scale(1.08);
}

.seleccion-card--organizer .seleccion-card__icon {
  background: linear-gradient(135deg, #3d15ce 0%, #9046ea 100%);
  color: #ffffff;
}

.seleccion-card--cliente .seleccion-card__icon {
  background: #f3f4f6;
  color: #6b7280;
}

.seleccion-card__title {
  font-family: var(--font-roobert);
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.seleccion-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 28px 0;
  flex: 1;
}

.seleccion-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seleccion-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
}

.seleccion-card__features li svg {
  flex-shrink: 0;
}

.seleccion-card--organizer .seleccion-card__features li svg {
  color: #7c3aed;
}

.seleccion-card--cliente .seleccion-card__features li svg {
  color: #9ca3af;
}

.seleccion-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.seleccion-card--organizer .seleccion-card__cta {
  background: linear-gradient(135deg, #3d15ce 0%, #9046ea 100%);
  color: #ffffff;
}

.seleccion-card--cliente .seleccion-card__cta {
  background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
  color: #ffffff;
}

.seleccion-card:hover .seleccion-card__cta {
  opacity: 0.92;
  transform: translateY(-1px);
}

.seleccion-card__cta-arrow {
  transition: transform 0.2s ease;
}

.seleccion-card:hover .seleccion-card__cta-arrow {
  transform: translateX(4px);
}

.seleccion-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 24px;
}

.seleccion-divider::before,
.seleccion-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.seleccion-divider span {
  font-size: 13px;
  color: #9ca3af;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .seleccion-main {
    align-items: flex-start;
  }

  .seleccion-container {
    padding: 48px 16px 56px;
  }

  .seleccion-title {
    font-size: 32px;
  }

  .seleccion-subtitle {
    font-size: 16px;
  }

  .seleccion-header {
    margin-bottom: 40px;
  }

  .seleccion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .seleccion-card {
    padding: 28px 24px 24px;
  }
}

@media (max-width: 480px) {
  .seleccion-container {
    padding: 36px 16px 48px;
  }

  .seleccion-title {
    font-size: 28px;
  }

  .seleccion-card {
    padding: 24px 20px 20px;
  }

  .seleccion-card__title {
    font-size: 20px;
  }
}
