.ro-tasacion {
  max-width: 980px;
  margin: 0 auto;
}

.ro-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 35px;
}

.ro-step {
  padding: 16px;
  border: 1px solid #bdd3f8;
  border-radius: 4px;
  background: #eaf1fb;
  font-weight: 700;
  color: #2d2d2d;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  position: relative;
}

.ro-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 40px;
  border-top: 2px solid #C4DEFF;
  transform: translateY(-50%);
}

.ro-step.is-active {
  background: #006FFF;
  color: #fff;
}

.ro-step.is-done::after {
  content: '✓';
  margin-left: auto;
  background: #006FFF;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: -10px;
}

.ro-panel-step {
  display: none;
}

.ro-icon-placeholder {
  display: flex;
  max-width: 35px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
}

.ro-icon-placeholder img{
  width: 100%;
  height: 100%;
}

.ro-panel {
  display: none;
}

.ro-panel.is-active {
  display: block;
}

.ro-panel-content {
  overflow: hidden;
}

.ro-panel h3 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.ro-panel p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
}

.ro-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.ro-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ro-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.ro-tasacion input,
.ro-tasacion select {
  height: 43px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 5px 12px;
  background: #fff;
  width: 100%;
  color: #4D4D4D;
}

.ro-panel-content select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../images/chevorn-down-blue.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

.ro-tasacion select:disabled {
  background: #eef1f6;
  color: #8a8f99;
  cursor: not-allowed;
}

.ro-upload {
  display: block;
  border: 1px dashed #bfd7ff;
  border-radius: 6px;
  padding: 50px 25px;
  text-align: center;
  background: #f9fbff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ro-upload.is-dragging {
  background: #eef5ff;
}

.ro-upload.is-uploading {
  border-color: #006FFF;
  background: #eef4ff;
  cursor: progress;
}

.ro-upload-placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #666;
}

.ro-upload-placeholder strong {
  font-size: 32px;
  color: #8a8a8a;
}

.ro-upload-status {
  display: none;
  margin: 8px 0 0;
  color: #0a58ca;
  font-size: 14px;
  font-weight: 600;
}

.ro-upload-status.is-active {
  display: block;
}

.ro-upload-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ro-upload-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #e8eef9;
  padding: 8px 10px;
  border-radius: 4px;
}

.ro-upload-list button {
  border: 0;
  background: none;
  color: #006FFF;
  cursor: pointer;
  border: 1px solid transparent;
}

.ro-upload-list button img{
  width: 12px;
  height: 12px;
}

.ro-checkbox {
  display: flex;
  margin: 8px 0;
  color: #484848;
  align-items: center;
  gap: 10px;
}

.ro-checkbox input{
  width: auto !important;
}

.ro-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.ro-actions button {
  min-width: 180px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: #006FFF;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.ro-actions .ro-prev {
  background: #6c757d;
}

.ro-confirmation {
  text-align: center;
  padding: 28px 0;
}

.ro-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: #006FFF;
  color: #fff;
  font-size: 28px;
}

.ro-confirmation h3 {
  color: #006FFF;
  font-size: 44px;
  line-height: 1.1;
  margin: 10px 0;
}

.ro-confirmation-text {
  font-size: 34px;
  line-height: 1.4;
  color: #333;
  max-width: 760px;
  margin: 0 auto;
}

.ro-feedback {
   margin-top: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  display: none;
}

.ro-feedback.is-error,
.ro-feedback.is-info,
.ro-feedback.is-success {
  display: block;
}

.ro-feedback.is-error {
  background: #fdecea;
  border-color: #f4c7c3;
  color: #b3261e;
}

.ro-feedback.is-info {
  background: #e8f0ff;
  border-color: #bfd2ff;
  color: #0a58ca;
}

.ro-feedback.is-success {
  background: #e9f7ef;
  border-color: #b9e6ca;
  color: #1e7d3a;
  font-weight: 600;
}

@media (max-width: 900px) {
  .ro-grid-4,
  .ro-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .ro-steps {
    display: none;
  }

  .ro-form {
    display: grid;
    gap: 10px;
  }

  .ro-panel {
    display: block;
  }

  .ro-panel-step {
    display: flex;
  }

  .ro-panel-step.is-active {
    background: #006FFF;
    color: #fff;
  }

  .ro-panel-content {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .ro-panel.is-active .ro-panel-content {
    max-height: 2000px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 12px;
  }
}

@media (max-width: 767px) {
  .ro-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .ro-panel-content select {
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 32px;
  }

  .ro-grid-4,
  .ro-grid-3 {
    grid-template-columns: 1fr;
  }

  .ro-confirmation h3 {
    font-size: 32px;
  }

  .ro-confirmation-text {
    font-size: 22px;
  }
}