.ac-service-card,
.ac-infra-card,
.ac-resultado-total {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.ac-service-card {
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-service-card:hover,
.ac-infra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow: 0 18px 40px rgba(0, 212, 255, 0.12);
}

.ac-service-card.selected,
.ac-infra-card.selected {
  border-color: rgba(0, 212, 255, 0.42);
  background: rgba(0, 212, 255, 0.08);
}

.ac-service-card-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-service-card.selected .ac-service-card-check {
  background: var(--accent-primary);
  color: #07111d;
  border-color: transparent;
}

.ac-infra-card {
  width: 100%;
  text-align: left;
  padding: 1.1rem;
}

.ac-resultado-total {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.10), rgba(255,255,255,0.02));
}

.ac-resultado-precio {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-primary);
}

.ac-desglose-line,
.ac-desglose-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ac-desglose-line {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ac-desglose-total {
  padding-top: 1rem;
  font-weight: 700;
}
