.tp-entregador-oficial-28u {
  width: min(1120px, calc(100% - 24px));
  margin: 18px auto;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
  box-sizing: border-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.tp-ent-hero {
  margin-bottom: 18px;
}

.tp-ent-hero span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tp-ent-hero h1 {
  margin: 12px 0 6px;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 46px);
  line-height: .98;
  letter-spacing: -.055em;
}

.tp-ent-hero p {
  margin: 0;
  max-width: 760px;
  color: #475569;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.tp-ent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tp-ent-form label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tp-ent-form input,
.tp-ent-form select {
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  padding: 10px 12px;
  color: #0f172a;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  outline: none;
  box-sizing: border-box;
}

.tp-ent-form input:focus,
.tp-ent-form select:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .14);
}

.tp-ent-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  margin: 16px 0;
  padding: 13px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.tp-ent-check input {
  min-height: auto;
  margin-top: 2px;
}

.tp-ent-check span {
  color: #475569;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

#tpEntEnviar {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, #ff3b30, #ff6b00);
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 107, 0, .24);
}

#tpEntEnviar:disabled {
  opacity: .68;
  cursor: wait;
}

.tp-ent-msg {
  margin-top: 12px;
  padding: 12px 13px;
  border-radius: 16px;
  background: #eff6ff;
  color: #1e3a8a;
  border: 1px solid #bfdbfe;
  font-size: 13px;
  font-weight: 850;
}

.tp-ent-msg[data-tipo="ok"] {
  background: #dcfce7;
  color: #14532d;
  border-color: #86efac;
}

.tp-ent-msg[data-tipo="erro"] {
  background: #fee2e2;
  color: #7f1d1d;
  border-color: #fca5a5;
}

@media (max-width: 920px) {
  .tp-ent-grid {
    grid-template-columns: 1fr;
  }

  .tp-entregador-oficial-28u {
    padding: 18px;
    border-radius: 22px;
  }
}