.dribb-lr {
  max-width: 980px;
  margin: 0 auto;
  color: #eef0fb;
  font-family: inherit;
}




.dribb-lr * {
  box-sizing: border-box;
}

.dribb-lr-hero,
.dribb-lr-provider,
.dribb-lr-form,
.dribb-lr-alert {
  background: #252836;
  border-radius: 12px;
  padding: 28px;
  margin: 0 0 22px;
}

.dribb-lr-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dribb-lr-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--dribb-lr-accent, #6757d6);
  border-radius: 999px 999px 0 0;
}

.dribb-lr h1 {
  font-size: 34px;
  margin: 14px 0 10px;
  color: #fff;
  text-align: center;
}

.dribb-lr h2 {
  font-size: 21px;
  color: #fff;
}

.dribb-lr h3 {
  font-size: 17px;
  margin: 18px 0 12px;
  color: #fff;
}

.dribb-lr p {
  color: #c7cbe0;
  line-height: 1.65;
}

.dribb-lr-provider {
  padding: 28px !important;
}

.dribb-lr-provider-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.dribb-lr-provider-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2B2F40;
}

/* Tamaño del ícono dentro del cuadro de Datos del proveedor */
.dribb-lr-provider-icon svg,
.dribb-lr-provider-icon i {
  width: 48px;
  height: 48px;
  font-size: 48px;
}

.dribb-lr-provider-title h2 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2;
}

.dribb-lr-provider-title p {
  margin: 0;
  color: #d7dbef;
}

.dribb-lr-provider-details {
  display: grid;
  gap: 8px;
  color: #eef0fb;
}

.dribb-lr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.dribb-lr label {
  display: block;
  font-weight: 700;
  color: #fff;
}

.dribb-lr input:not([type="checkbox"]):not([type="radio"]),
.dribb-lr select,
.dribb-lr textarea {
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  outline: none;
}

.dribb-lr-full {
  grid-column: 1 / -1;
}

.dribb-lr-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  line-height: 1.25;
}

.dribb-lr-form > .dribb-lr-section-title:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.dribb-lr-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dribb-lr-accent, #6757d6);
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.dribb-lr-required {
  display: inline !important;
  color: #ff3b3b;
  font-weight: 900;
  margin-left: 4px;
}

.dribb-lr-actions {
  text-align: center;
}

.dribb-lr-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  font-weight: 700;
  color: #cfd3e8;
  gap: 10px;
  margin: 18px 0;
}

.dribb-lr-check input {
  width: auto;
  min-width: 16px;
  margin-top: 5px;
}

.dribb-lr-legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.dribb-lr-submit,
.dribb-lr-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--dribb-lr-accent, #6757d6);
  color: #fff !important;
  font-weight: 900;
  padding: 13px 22px;
  margin-top: 18px;
  cursor: pointer;
  text-decoration: none;
}

.dribb-lr-print {
  margin-left: 8px;
  background: #11121a;
  border: 1px solid rgba(255, 255, 255, .12);
}

.dribb-lr-alert--success {
  border-color: rgba(57, 217, 138, .45);
  background: rgba(57, 217, 138, .12);
}

.dribb-lr-alert--error {
  border-color: rgba(255, 93, 93, .55);
  background: rgba(255, 93, 93, .12);
}

.dribb-lr-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

@media (max-width: 720px) {
  .dribb-lr-grid {
    grid-template-columns: 1fr;
  }

  .dribb-lr h1 {
    font-size: 28px;
  }

  .dribb-lr-hero,
  .dribb-lr-provider,
  .dribb-lr-form,
  .dribb-lr-alert {
    padding: 20px;
  }

  .dribb-lr-provider-head {
    align-items: flex-start;
  }

  .dribb-lr-provider-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  .dribb-lr-section-title {
    align-items: flex-start;
  }

  .dribb-lr-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 21px;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .dribb-lr,
  .dribb-lr * {
    visibility: visible;
  }

  .dribb-lr {
    position: absolute;
    left: 0;
    top: 0;
    color: #111;
  }

  .dribb-lr-hero,
  .dribb-lr-provider,
  .dribb-lr-form,
  .dribb-lr-alert {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #111;
    box-shadow: none;
  }

  .dribb-lr input,
  .dribb-lr select,
  .dribb-lr textarea {
    border: 1px solid #111;
    color: #111;
    background: #fff;
  }

  .dribb-lr-submit,
  .dribb-lr-print {
    display: none;
  }
}

/* Botón principal del Libro de Reclamaciones */
.dribb-lr-submit {
  background: #df204d !important;
}

/* Hover del botón */
.dribb-lr-submit:hover {
  background:#c5163f !important;
}



/* Validaciones del formulario */
.dribb-lr .dribb-lr-input-error {
  border-color: #ff3b3b !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 59, .18) !important;
}

.dribb-lr-submit:disabled,
.dribb-lr-submit--loading {
  opacity: .78;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}
