/* Calculadora Growth */
.calc-card {
  margin-top: 4px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: #f9fafb;
  padding: 12px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.calc-label-row strong {
  color: #020617;
}

.calc-value {
  font-size: 11px;
  color: #020617;
}

.calc-range {
  width: 100%;
}

.calc-range input[type="range"] {
  width: 100%;
}

.calc-register {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.calc-register-row {
  display: flex;
  gap: 8px;
}

.calc-register-row .form-mini {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-register label {
  font-size: 10px;
  font-weight: 600;
  color: #020617;
}

.calc-register input {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 6px 8px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  color: #020617;
}

.calc-register input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #1118271a;
}

.calc-note {
  font-size: 10px;
  color: #6b7280;
}

.calc-results {
  margin-top: 6px;
  border-radius: 12px;
  padding: 8px 10px;
  background: #111827;
  color: #f9fafb;
  font-size: 11px;
  display: none;
}

.calc-results.visible {
  display: block;
}

.calc-results strong {
  color: #f0ff00;
}

.calc-results-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}

.calc-results-row span {
  white-space: nowrap;
}

/* Responsive para calculadora */
@media (max-width: 760px) {
  .calc-register-row {
    flex-direction: column;
  }

  .calc-results-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
