.zvo-home-widget,
.zvo-form-page {
  --zvo-primary-rgb: 10, 77, 184;
}

.zvo-home-widget {
  margin: 1rem 0 2rem;
}

.zvo-home-card {
  background: #fff;
  border: 1px solid #d8e0f3;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 36px rgba(var(--zvo-primary-rgb), 0.08);
}

.zvo-home-head h2 {
  margin: 0 0 0.5rem;
  color: #0f2446;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
}

.zvo-home-head p {
  margin: 0 0 1.2rem;
  color: #42516c;
  font-size: 1.05rem;
}

.zvo-home-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
}

.zvo-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.zvo-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #344766;
}

.zvo-field .zvo-field-help {
  margin: -0.05rem 0 0;
  color: #5d7398;
  font-size: 0.78rem;
  line-height: 1.35;
}

.zvo-field select,
.zvo-field input[type="text"],
.zvo-field input[type="email"],
.zvo-field input[type="search"],
.zvo-field input[type="file"],
.zvo-field textarea {
  border: 1px solid #c9d5ee;
  border-radius: 14px;
  min-height: 50px;
  background: #f8faff;
  color: #1c2d48;
  padding: 0.75rem 0.85rem;
}

.zvo-submit button,
.zvo-btn-primary {
  background: var(--zvo-primary);
  border: 1px solid var(--zvo-primary);
  color: #fff;
}

.zvo-submit button {
  min-height: 50px;
  width: 100%;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.zvo-brand-picker {
  position: relative;
}

.zvo-brand-trigger {
  width: 100%;
  border: 1px solid #c9d5ee;
  border-radius: 14px;
  min-height: 50px;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.8rem;
  color: #1d2f4c;
}

.zvo-brand-trigger-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zvo-brand-trigger-dot {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #dce7fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 24px;
}

.zvo-brand-trigger-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.zvo-brand-trigger-dot.has-logo {
  background: #fff;
  border: 1px solid #cdd9f1;
}

.zvo-brand-trigger-dot.has-logo img {
  display: block;
}

.zvo-brand-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 40;
  border: 1px solid #c9d5ee;
  border-radius: 16px;
  background: #fff;
  padding: 0.6rem;
  box-shadow: 0 20px 36px rgba(16, 35, 67, 0.16);
}

.zvo-brand-picker.is-open .zvo-brand-panel {
  display: block;
}

.zvo-brand-search {
  width: 100%;
  margin-bottom: 0.5rem;
}

.zvo-brand-options {
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: 0.35rem;
}

.zvo-brand-option {
  border: 1px solid #e4eaf8;
  border-radius: 12px;
  min-height: 46px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  padding: 0.3rem 0.45rem;
  color: #15315e;
}

.zvo-brand-option img,
.zvo-brand-fallback {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f0f4ff;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
}

.zvo-brand-option.is-selected {
  border-color: #8fb0eb;
  background: #edf4ff;
}

.zvo-pdp-cta {
  order: 2 !important;
  width: min(100%, 410px) !important;
  margin: 0 !important;
}

.zvo-pdp-cta-btn {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 78px;
  border: 2px solid #a7f3c2 !important;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  background: #effdf5 !important;
  color: #0b6b37 !important;
  text-decoration: none !important;
  text-transform: none;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  box-shadow: none;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.zvo-pdp-cta-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.zvo-pdp-cta-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #d9fbe7;
  color: #0b7a3c;
  font-size: 1rem;
}

.zvo-pdp-cta-btn span {
  display: block;
  flex: 0 1 auto;
  max-width: 245px;
  text-align: center;
}

.zvo-pdp-cta-btn:hover,
.zvo-pdp-cta-btn:focus {
  border-color: #75e7a1 !important;
  background: #e6faef !important;
  color: #075d2f !important;
  box-shadow: 0 18px 40px -28px rgba(11, 107, 55, 0.46);
  transform: translateY(-2px);
}

.zvo-pdp-cta-btn:focus {
  outline: 3px solid rgba(34, 197, 94, 0.2);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .zvo-pdp-cta,
  .zvo-pdp-cta-btn {
    width: 100%;
  }

  .zvo-pdp-cta-btn {
    min-height: 72px;
    border-radius: 20px;
    padding: 1rem 1.1rem;
    font-size: 1.02rem;
  }

  .zvo-pdp-cta-btn::after {
    border-radius: 18px;
  }

  .zvo-pdp-cta-btn i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 0.98rem;
  }
}

.zvo-form-page {
  margin: 1rem 0 2rem;
}

.zvo-form-shell {
  border: 1px solid #d5def3;
  border-radius: 18px;
  padding: 1.4rem;
  background: #fff;
  box-shadow: 0 20px 38px rgba(var(--zvo-primary-rgb), 0.08);
}

.zvo-form-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--zvo-primary);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.zvo-consign-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.zvo-consign-copy {
  min-height: 360px;
  border-radius: 16px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(15, 36, 70, 0.98), rgba(10, 77, 184, 0.86)),
    #0f2446;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zvo-consign-visual {
  border: 1px solid #d1dcf0;
  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(var(--zvo-primary-rgb), 0.12);
  overflow: hidden;
  position: relative;
}

.zvo-consign-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
}

.zvo-consign-visual img {
  display: block;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.zvo-consign-kicker {
  margin: 0 0 0.45rem;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zvo-consign-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.zvo-consign-lead {
  max-width: 660px;
  margin: 0.9rem 0 0;
  color: #e6eefc;
  font-size: 1.08rem;
  line-height: 1.6;
}

.zvo-consign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.zvo-consign-panel {
  border: 1px solid #cfdaf0;
  border-radius: 16px;
  padding: 1rem;
  background: #f8fbff;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.zvo-consign-panel div {
  border: 1px solid #dbe6f7;
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
}

.zvo-consign-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  background: var(--zvo-primary);
  color: #fff;
  font-weight: 900;
}

.zvo-consign-panel strong {
  display: block;
  color: #12305b;
  font-size: 1rem;
}

.zvo-consign-panel p {
  margin: 0.35rem 0 0;
  color: #506487;
  line-height: 1.45;
}

.zvo-consign-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.35rem;
}

.zvo-consign-benefits article {
  border: 1px solid #d8e3f5;
  border-radius: 12px;
  padding: 0.95rem;
  background: #fff;
}

.zvo-consign-benefits i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f2ff;
  color: var(--zvo-primary);
}

.zvo-consign-benefits h2 {
  margin: 0;
  color: #15315e;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 850;
}

.zvo-consign-benefits p {
  margin: 0.4rem 0 0;
  color: #546989;
  font-size: 0.9rem;
  line-height: 1.45;
}

.zvo-form-header {
  scroll-margin-top: 90px;
}

.zvo-form-header h1,
.zvo-form-header h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  color: #0f2446;
  font-weight: 800;
}

.zvo-form-header p {
  margin: 0.55rem 0 1rem;
  color: #445474;
  font-size: 1.05rem;
}

.zvo-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #128c4a;
  border-color: #128c4a;
  color: #fff;
  text-decoration: none;
}

.zvo-btn-whatsapp:hover,
.zvo-btn-whatsapp:focus,
.zvo-btn-primary:hover,
.zvo-btn-primary:focus {
  color: #fff;
  text-decoration: none;
}

.zvo-consign-customers {
  margin-top: 1.5rem;
  border-top: 1px solid #dbe5f6;
  padding-top: 1.35rem;
}

.zvo-consign-customers-head {
  max-width: 760px;
  margin-bottom: 1rem;
}

.zvo-consign-customers-head h2 {
  margin: 0;
  color: #0f2446;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 900;
}

.zvo-consign-customers-head p:last-child {
  margin: 0.45rem 0 0;
  color: #536783;
}

.zvo-consign-customer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.zvo-consign-customer-card {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #edf3fb;
}

.zvo-consign-customer-card picture,
.zvo-consign-customer-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.zvo-consign-customer-card img {
  object-fit: cover;
}

.zvo-alert p {
  margin-bottom: 0.35rem;
}

.zvo-stepper {
  margin: 1rem 0 1.2rem;
}

.zvo-stepper-track {
  background: #e7ecfa;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}

.zvo-stepper-fill {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: 999px;
  background: var(--zvo-primary);
  transition: width 0.25s ease;
}

.zvo-stepper-labels {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.zvo-stepper-labels span {
  font-size: 0.74rem;
  color: #62718f;
  font-weight: 700;
}

.zvo-stepper-labels .is-active {
  color: var(--zvo-primary);
}

.zvo-step {
  display: none;
  border: 1px solid #dce5f6;
  border-radius: 18px;
  padding: 1rem;
}

.zvo-step.is-active {
  display: block;
}

.zvo-step h3 {
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
  color: #16345f;
  font-weight: 800;
}

.zvo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.zvo-field-full {
  grid-column: 1 / -1;
}

.zvo-model-other-field {
  display: none;
}

.zvo-model-other-field.is-visible {
  display: flex;
}

.zvo-grid-contact {
  align-items: end;
}

.zvo-grid-contact .zvo-field label {
  text-align: left !important;
  align-self: flex-start;
}

.zvo-field-phone-combined {
  grid-column: 1 / -1;
}

.zvo-phone-input-wrap {
  position: relative;
  width: 100%;
}

.zvo-phone-input-wrap::before {
  content: '+56';
  position: absolute;
  top: 50%;
  left: 0.85rem;
  transform: translateY(-50%);
  color: #1c2d48;
  font-weight: 700;
  pointer-events: none;
}

.zvo-phone-input-wrap input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem 0.75rem 3.2rem;
}

.zvo-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

.zvo-btn {
  min-height: 48px;
  border-radius: 14px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.zvo-btn-ghost {
  background: #fff;
  border-color: #c9d5ee;
  color: #22406f;
}

.zvo-upload-shell {
  border: 1px solid #d8e3f7;
  border-radius: 16px;
  padding: 1rem;
  background: #f9fbff;
}

.zvo-upload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.zvo-upload-title {
  margin: 0;
  font-weight: 700;
  color: #173860;
}

.zvo-upload-counter {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eaf1ff;
  color: #1f4b84;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
}

.zvo-upload-dropzone {
  border: 2px dashed #9eb8e9;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  padding: 1.15rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.zvo-upload-dropzone:hover,
.zvo-upload-dropzone:focus,
.zvo-upload-dropzone.is-dragover {
  border-color: #4f84d9;
  background: linear-gradient(180deg, #ffffff 0%, #e9f1ff 100%);
  box-shadow: 0 0 0 3px rgba(var(--zvo-primary-rgb), 0.1);
  outline: none;
}

.zvo-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 0.45rem;
  background: #e4eeff;
  color: #1f5eb3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.zvo-upload-lead {
  margin: 0 0 0.65rem;
  color: #26446f;
  font-weight: 700;
}

.zvo-upload-choose {
  display: inline-flex;
  min-height: 42px;
  margin: 0 auto 0.45rem;
}

.zvo-upload-dropzone small {
  display: block;
  color: #5a6f92;
  font-size: 0.82rem;
}

.zvo-file-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.zvo-file-summary {
  margin-top: 0.7rem;
  color: #496087;
  font-size: 0.88rem;
}

.zvo-price-field {
  margin-top: 0.95rem;
}

.zvo-price-recommendation {
  margin: 0;
  color: #4d6489;
  font-size: 0.88rem;
  line-height: 1.45;
}

.zvo-details-field {
  margin-top: 0.95rem;
}

.zvo-details-help {
  margin: 0;
  color: #4d6489;
  font-size: 0.88rem;
  line-height: 1.45;
}

.zvo-details-field textarea {
  width: 100%;
  min-height: 108px;
  resize: vertical;
}

.zvo-consent {
  margin-top: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #304a72;
  font-size: 0.9rem;
}

.zvo-file-list {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.zvo-file-card {
  border: 1px solid #d9e5fb;
  border-radius: 14px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
}

.zvo-file-card-thumb {
  width: 74px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef4ff;
  color: #5a77a2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.zvo-file-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zvo-file-card-meta {
  min-width: 0;
}

.zvo-file-card-name {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1c345a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zvo-file-card-size {
  margin: 0.18rem 0 0;
  font-size: 0.78rem;
  color: #61789e;
}

.zvo-file-remove {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d9e5fb;
  background: #fff;
  color: #8b1f2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zvo-file-empty {
  border: 1px dashed #c8d9f8;
  border-radius: 12px;
  padding: 0.9rem;
  color: #5f7599;
  background: #f7faff;
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 1199px) {
  .zvo-home-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zvo-file-list {
    grid-template-columns: 1fr;
  }

  .zvo-consign-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zvo-consign-customer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .zvo-home-card,
  .zvo-form-shell {
    border-radius: 18px;
    padding: 1rem;
  }

  .zvo-home-head h2,
  .zvo-form-header h1,
  .zvo-form-header h2 {
    font-size: 1.55rem;
  }

  .zvo-consign-hero,
  .zvo-consign-panel,
  .zvo-consign-benefits,
  .zvo-consign-customer-grid {
    grid-template-columns: 1fr;
  }

  .zvo-consign-copy {
    min-height: 0;
  }

  .zvo-consign-visual img {
    min-height: 260px;
  }

  .zvo-consign-copy h1 {
    font-size: 2rem;
  }

  .zvo-consign-actions .zvo-btn {
    width: 100%;
  }

  .zvo-home-form,
  .zvo-grid {
    grid-template-columns: 1fr;
  }

  .zvo-stepper-labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.3rem;
  }

  .zvo-step-actions {
    justify-content: space-between;
  }

  .zvo-btn {
    flex: 1;
  }

  .zvo-upload-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .zvo-file-card {
    grid-template-columns: 62px 1fr auto;
  }

  .zvo-file-card-thumb {
    width: 62px;
    height: 56px;
  }
}
