.feedback-cta {
  margin-bottom: 10px;
  
}

.feedback-cta span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #facc15;
}

.feedback-cta p {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

.feedback-order-actions .feedback-order-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  transition: all 0.25s ease;
}

.feedback-order-actions .feedback-order-btn:hover {
  border-color: #facc15;
  background: #fffdf5;
}

.feedback-order-actions .feedback-order-btn.is-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.feedback-section {
  margin-top: 56px;
}

.feedback-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 24px;
}

.feedback-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  border-top-color: #facc15;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Divider */
.feedback-divider {
  position: relative;
  margin-bottom: 32px;
  text-align: center;
}

.feedback-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #e5e7eb,
    transparent
  );
}

.feedback-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}


/* ===== INPUT DE FEEDBACK (FAKE INPUT) ===== */
.form-control[readonly] {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #6b7280;
  transition: all 0.25s ease;
}

.form-control[readonly]::placeholder {
  color: #9ca3af;
}

.form-control[readonly]:hover {
  border-color: #facc15;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  background-color: #fffef9;
}

/* ===== MODAL BASE ===== */
.modal-content {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* ===== HEADER ===== */
.modal-header {
  padding: 20px 24px 10px;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* ===== BODY ===== */
.modal-body {
  padding: 20px 24px;
}

.modal-body .form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6b7280;
}

/* ===== INPUTS ===== */
.modal-body .form-control {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.modal-body .form-control::placeholder {
  color: #9ca3af;
}

.modal-body .form-control:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
}

/* ===== FOOTER ===== */
.modal-footer {
  padding: 16px 24px 20px;
}

/* ===== BOTÕES ===== */
.modal-footer .btn-light {
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  color: #374151;
  background-color: #f3f4f6;
  border: none;
}

.modal-footer .btn-light:hover {
  background-color: rgb(151, 4, 4);
  color: #fff;
}

.modal-footer .btn-dark {
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background: #facc15;
  border: none;
}

.modal-footer .btn-dark:hover {
  background: #816801;
  color: #fff;
}

/* ===== LISTA ===== */
.feedback-list {
  max-width: 780px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ===== CARD ===== */
.comment-card {
  position: relative;
  display: flex;
  gap: 16px;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid #e6e8eb;
  border-radius: 18px;
  padding: 22px 24px;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.comment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}

.comment-card:hover {
  transform: translateY(-3px);
  border-color: #facc15;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.10),
    0 0 0 4px rgba(250, 204, 21, 0.12);
}

/* ===== AVATAR ===== */
.comment-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111827, #4b5563);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.35),
    inset 0 0 0 2px rgba(255,255,255,0.15);
}

/* ===== CONTEÚDO ===== */
.comment-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.comment-header {
  padding-right: 92px;
}

.comment-date {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
}

.comment-name {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}


/* ===== TEXTO ===== */
.comment-text {
  font-size: 15px;
  line-height: 1.65;
  color: #1f2937;
  word-break: break-word;
}

/* ===== MICRO DETALHE ===== */
.comment-text::selection {
  background: rgba(250, 204, 21, 0.25);
}
