/*--------------------------------------------------------------# Contact Section Efrén--------------------------------------------------------------*/
.wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* h2 {  font-size: 22px;  font-weight: 500;  margin-bottom: 2rem;  color: #1a1a1a;} */
/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.step-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--default-color);
  flex-shrink: 0;
  transition: all 0.2s;
}

.step-circle.active {
  background: #7F77DD;
  border-color: #7F77DD;
  color: #fff;
}

.step-circle.done {
  background: #1D9E75;
  border-color: #1D9E75;
  color: #fff;
}

.step-label {
  font-size: 11px;
  color: var(--default-color);
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-label.active {
  color: var(--default-color);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .step-line {
    flex: .005;
    height: 1px;
    background: #e0e0e0;
    margin: 0 6px;
    min-width: 8px;
  }
}

@media (min-width: 769px) {
  .step-line {
    flex: .5;
    height: 1px;
    background: #e0e0e0;
    margin: 0 6px;
    min-width: 8px;
  }
}

/* Card */
.card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.section-title-contacto {
  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 1.25rem;
}

/* Fields */
.field {
  margin-bottom: 1.1rem;
}

.field>label {
  font-size: 13px;
  color: var(--default-color);
  display: block;
  margin-bottom: 6px;
}

.req {
  color: #7F77DD;
  margin-left: 2px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=date],
select,
textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--default-color);
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #7F77DD;
  box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.12);
}

textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {

  .row2,
  .medidas-row {
    grid-template-columns: 1fr;
  }
}

/* Note */
.note-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f5f5f3;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 6px;
}

.note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7F77DD;
  flex-shrink: 0;
  margin-top: 6px;
}

.note-box span {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Radio */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.radio-opt:hover {
  border-color: #bbb;
  background: #fafafa;
}

.radio-opt.selected {
  border-color: #7F77DD;
  background: #EEEDFE;
}

.radio-opt input[type=radio] {
  accent-color: #7F77DD;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.radio-opt span {
  font-size: 14px;
  color: var(--default-color);
}

/* Checkboxes */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

@media (max-width: 400px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}

.check-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.check-opt:hover {
  border-color: #bbb;
  background: #fafafa;
}

.check-opt.selected {
  border-color: #7F77DD;
  background: #EEEDFE;
}

.check-opt input[type=checkbox] {
  accent-color: #7F77DD;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.check-opt span {
  font-size: 13px;
  color: var(--default-color);
}

/* Upload */
.upload-zone {
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.upload-zone:hover {
  background: #fafafa;
}

.upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-label {
  font-size: 13px;
  color: var(--default-color);
}

.upload-label strong {
  color: #7F77DD;
  font-weight: 500;
}

.upload-hint {
  font-size: 11px;
  color: var(--default-color);
  margin-top: 4px;
}

.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f3;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--default-color);
  margin-top: 8px;
}

.file-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--default-color);
  font-size: 14px;
  padding: 0 2px;
}

/* Medidas */
.medidas-row {
  display: grid;
  grid-template-columns: 1fr 1fr 110px;
  gap: 12px;
  align-items: end;
}

.medidas-row .field {
  margin-bottom: 0;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

button {
  padding: 8px 24px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: var(--default-color);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

button:hover {
  background: #f5f5f3;
}

/* WhatsApp button */
.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s;
}

.btn-wa:hover {
  background: #1ebe5d;
}

.btn-wa:active {
  transform: scale(0.98);
}

/* Email button */
.btn-email {
  background: #7F77DD;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s;
}

.btn-email:hover {
  background: #534AB7;
}

.btn-email:active {
  transform: scale(0.98);
}

/* Date reveal */
.date-reveal {
  margin-top: 8px;
}

/* WA banner */
.wa-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e6f9ee;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 1rem;
}

.wa-banner span {
  font-size: 13px;
  color: #085041;
  line-height: 1.5;
}

/* Success */
.success-wrap {
  text-align: center;
  padding: 2.5rem 1rem;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 26px;
}

.success-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.success-sub {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 1.5rem;
}

.summary-pill {
  display: inline-block;
  background: #f5f5f3;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 13px;
  color: var(--default-color);
  margin: 4px;
}