/* ==========================================================================
   PÁGINA DE AVALIAÇÃO — THEME: CYBER-MODERN TECH
   ========================================================================== */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --bg-void: #030712;
  --bg-space: #060d1a;
  --bg-surface: rgba(13, 23, 42, 0.85);
  --bg-input: #040812;

  --cyan: #00f0ff;
  --cyan-bright: #38bdf8;
  --emerald: #00f5a0;
  --green-pix: #10b981;
  --gold: #fbbf24;
  --danger: #ff4d6d;

  --text-pure: #ffffff;
  --text-primary: #f3f7fc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.09);
  --shadow-glow-emerald: 0 0 35px rgba(0, 245, 160, 0.3);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-void);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(0, 245, 160, 0.08), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(0, 240, 255, 0.08), transparent 35%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* Header */
.review-header {
  min-height: 80px;
  padding: 15px max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af, var(--cyan));
  color: #ffffff;
  font-weight: 900;
  font-family: var(--font-mono);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
}

.review-brand strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.review-brand small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.back-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: #ffffff;
}

/* Review Page Grid */
.review-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  padding: 60px 0;
}

.review-copy {
  max-width: 520px;
}

.eyebrow, .form-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--cyan);
  display: inline-block;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.22);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.review-copy h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 18px 0 20px;
  color: #ffffff;
  font-weight: 900;
}

.review-copy > p {
  font-size: 17px;
  line-height: 1.7;
  color: #94a3b8;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.trust-list article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(13, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.trust-list article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.2);
  color: var(--emerald);
  font-weight: 900;
  font-size: 16px;
}

.trust-list strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
}

.trust-list small {
  display: block;
  color: #94a3b8;
  font-size: 11.5px;
  margin-top: 3px;
}

/* Card do Formulário */
.review-card {
  background: rgba(10, 18, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.review-card h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 12px 0 6px;
}

.form-intro {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.verified-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 245, 160, 0.08);
  border: 1px solid rgba(0, 245, 160, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.verified-banner > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--emerald);
  color: #03140c;
  font-weight: 900;
}

.verified-banner strong {
  display: block;
  font-size: 12px;
  color: var(--emerald);
  font-weight: 800;
}

.verified-banner small {
  display: block;
  font-size: 10px;
  color: #94a3b8;
}

.field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 800;
  color: #cbd5e1;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: var(--bg-input);
  color: #ffffff;
  outline: 0;
  font-size: 13px;
}

.field select option {
  background: #091224;
  color: #ffffff;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.rating-field {
  border: 0;
  padding: 0;
  margin: 20px 0 0;
}

.rating-field legend {
  font-size: 11.5px;
  font-weight: 800;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.star-rating {
  display: flex;
  gap: 6px;
}

.star-rating button {
  border: 0;
  background: transparent;
  color: #334155;
  font-size: 34px;
  line-height: 1;
  padding: 2px;
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease;
}

.star-rating button:hover {
  transform: scale(1.15);
}

.star-rating button.active {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.rating-field > small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  margin-top: 8px;
  font-weight: 800;
  font-family: var(--font-mono);
}

.counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 3px 6px;
  border-radius: 6px;
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}

.form-error {
  background: rgba(255, 77, 109, 0.12);
  color: var(--danger);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 11.5px;
  font-weight: 700;
  margin: 18px 0 0;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-md);
  margin-top: 22px;
  background: linear-gradient(135deg, var(--emerald), var(--green-pix));
  color: #03140c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 245, 160, 0.3);
  transition: all 0.22s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 245, 160, 0.45);
}

.privacy-note {
  display: block;
  color: #64748b;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 14px;
}

/* Success State */
.success-state {
  text-align: center;
  padding: 60px 10px;
}

.success-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  background: rgba(0, 245, 160, 0.12);
  color: var(--emerald);
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(0, 245, 160, 0.3);
}

.success-state p {
  color: #94a3b8;
  line-height: 1.7;
  max-width: 420px;
  margin: 10px auto 0;
}

.success-state .submit-button {
  max-width: 280px;
  margin: 28px auto 0;
}

/* Footer */
.review-footer {
  min-height: 70px;
  padding: 15px max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #02050c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
}

.review-footer small {
  color: #64748b;
}

@media (max-width: 900px) {
  .review-page {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 45px 0;
  }
  .review-copy {
    max-width: 680px;
  }
}

@media (max-width: 650px) {
  .review-page {
    width: min(100% - 28px, 1200px);
    padding: 30px 0 45px;
  }
  .trust-list {
    display: none;
  }
  .review-card {
    padding: 26px 18px;
  }
}
