/* Estilos da calculadora */
.calculadora {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
}

.calculadora label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.calculator-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
  margin: 10px 0;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.calculator-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
  border: none;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.mt-2 {
  margin-top: 8px;
}

.mb-6 {
  margin-bottom: 24px;
}

.gradient-border {
  padding: 1px;
  border-radius: 0;
  background: linear-gradient(to right, #2563eb, #7c3aed, #c026d3);
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.bg-green-500 {
  background-color: #10b981;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.bg-purple-500 {
  background-color: #8b5cf6;
}

.p-6 {
  padding: 24px;
}

.p-4 {
  padding: 16px;
}

.p-8 {
  padding: 32px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-md {
  border-radius: 6px;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.border-blue-100 {
  border: 1px solid #dbeafe;
}

.text-blue-700 {
  color: #1d4ed8;
}

.text-blue-600 {
  color: #2563eb;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-sm {
  font-size: 14px;
}

.text-xl {
  font-size: 20px;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.w-full {
  width: 100%;
}

.h-2 {
  height: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.flex {
  display: flex;
}

.items-start {
  align-items: flex-start;
}

.mr-2 {
  margin-right: 8px;
}

.mt-0\.5 {
  margin-top: 2px;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
  gap: 32px;
}

.block {
  display: block;
}

/* Estilos responsivos */
@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-12 {
    padding: 48px;
  }
}
