#sec-cotizador-hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(5, 19, 14, 0.8)),
    url("images/LUM-280.JPG");
  background-position: 50% 50%;
  background-size: cover;
  min-height: 480px;
  padding: 80px 0;
}

#sec-cotizador-hero .cotizador-hero-content {
  max-width: 520px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

#sec-cotizador-hero .u-btn-1 {
  margin-top: 18px;
  border-radius: 50px;
  padding: 10px 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#sec-cotizador {
  background: #f4f4f4;
  padding: 60px 0 100px;
}

.cotizador-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 48px 48px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.cotizador-header h2 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 2rem;
  color: #111827;
}

.cotizador-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0;
}

.cotizador-description {
  max-width: 640px;
  margin: 0 auto 24px;
  color: #4b5563;
}

.steps-indicator {
  display: flex;
  gap: 0.6rem;
  margin: 24px 0 32px;
}

.step-dot {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: background 0.25s ease;
}

.step-dot.active {
  background: #172d23;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.field-group {
  margin-bottom: 18px;
}

.field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.field-group small {
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.option-card {
  border-radius: 16px;
  border: 1px solid #d1d5db;
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.option-card:hover {
  border-color: #1f2937;
}

.option-card.active {
  border-color: #1f2937;
  background: #e5e7eb;
}

.option-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.option-desc {
  font-size: 0.9rem;
  color: #6b7280;
}

input[type="number"],
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #0f172a;
}

.checkbox-list small {
  margin-left: 1.5rem;
  color: #6b7280;
}

.result-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
}

.result-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

.result-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
}

.info-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #dbeafe;
}

.info-title {
  font-weight: 700;
  color: #0f172a;
}

.info-text {
  font-size: 0.92rem;
  color: #475569;
  margin-top: 4px;
}

.buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: #152f24;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.contact-fields input {
  margin-top: 4px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #0f172a;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #b91c1c;
}

@media (max-width: 767px) {
  #sec-cotizador-hero {
    min-height: 360px;
    padding: 60px 0;
  }

  #sec-cotizador-hero .cotizador-hero-content {
    padding: 24px;
  }

  .cotizador-container {
    padding: 28px 24px 36px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
