@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #c49a3c;
  --primary-rgb: 196, 154, 60;
  --white-64: #ffffffa3;
  --white-50: #ffffff80;
  --white-32: #ffffff52;
  --white-16: #ffffff29;
  --black-64: #000000a3;
  --revora-green-dark: #1a3c2a;
  --revora-green-mid: #3e7a5a;
  --danger: #ff8f8f;
  --success: #3dab25;
  --container: 1320px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(26, 60, 42, 0.38), rgba(0, 0, 0, 0) 340px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #000;
  background-size: auto, 72px 72px, 72px 72px, auto;
  font-family: "Figtree", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--white-16);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 172px;
  height: auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white-64);
  font-size: 14px;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.mobile-nav-note {
  display: none;
}

.page-shell {
  padding: 72px 0 48px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 54px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.page-title,
.hero-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.page-title {
  max-width: 920px;
  font-size: 48px;
}

.section-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.lead,
.page-lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--white-64);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions,
.form-actions,
.result-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tf-btn {
  position: relative;
  z-index: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
}

.tf-btn::before {
  content: "";
  position: absolute;
  inset: auto -1px -1px -1px;
  top: calc(100% + 1px);
  z-index: -1;
  border-radius: 10px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.tf-btn:hover {
  color: var(--black);
}

.tf-btn:hover::before {
  top: 0;
}

.tf-btn.style-fill {
  color: var(--black);
  border-color: var(--primary);
  background-color: var(--primary);
}

.tf-btn.style-fill::before {
  content: none;
}

.tf-btn.ghost {
  color: var(--white-64);
  border-color: var(--white-16);
}

.tf-btn.ghost:hover {
  color: var(--black);
}

.tf-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.tf-btn [data-lucide] {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.animate-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -110%;
  background-image: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.58), transparent 70%);
  opacity: 0.55;
}

.animate-btn:hover::after {
  animation: shine-reverse 0.85s forwards;
}

@keyframes shine-reverse {
  from {
    left: 100%;
  }
  to {
    left: -110%;
  }
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  border-left: 1px solid var(--white-16);
  padding-left: 42px;
}

.hero-mark {
  width: min(100%, 460px);
  opacity: 0.18;
  filter: grayscale(100%) contrast(1.04);
}

.metric-stack {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: min(100%, 360px);
  display: grid;
  gap: 12px;
}

.metric-card,
.pillar-card,
.question-card,
.score-card,
.history-card,
.phase-card,
.insight-card {
  border: 1px solid var(--white-16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: all 0.3s ease;
}

.metric-card {
  padding: 18px;
  backdrop-filter: blur(12px);
}

.metric-card strong,
.score-number {
  display: block;
  color: var(--primary);
  font-size: 30px;
  line-height: 1.1;
}

.metric-card span,
.muted {
  color: var(--white-64);
}

.pillar-grid,
.score-grid,
.phase-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.pillar-card {
  min-height: 176px;
  padding: 26px 24px 24px;
}

.pillar-card:hover,
.question-card:focus-within,
.history-card:hover {
  border-color: rgba(var(--primary-rgb), 0.72);
  background: rgba(196, 154, 60, 0.065);
}

.pillar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pillar-num {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pillar-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.22);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.pillar-name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.pillar-card span {
  color: var(--primary);
  font-weight: 700;
}

.pillar-card h2,
.pillar-card h3,
.score-card h3,
.phase-card h3,
.insight-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.pillar-card p,
.score-card p,
.phase-card li,
.insight-card p,
.history-card p {
  margin: 0;
  color: var(--white-64);
  font-size: 14px;
  line-height: 1.5;
}

.app-footer {
  border-top: 1px solid var(--white-16);
  padding: 22px 0;
  color: var(--white-50);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.progress-wrap {
  margin: 34px 0 40px;
}

.s-header {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--white-64);
  font-size: 13px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white-16);
}

.progress-bar {
  width: var(--progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--revora-green-mid));
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  margin-top: 42px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.tf-field,
.select-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.tf-field input,
.tf-field textarea,
.select-field select {
  width: 100%;
  min-height: 58px;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--white-16);
  border-radius: 0;
  outline: 0;
  background: transparent;
  padding: 22px 0 8px;
  transition: border-color 0.3s ease;
}

.tf-field textarea {
  min-height: 112px;
  resize: vertical;
}

.select-field select {
  appearance: none;
  color: var(--white);
  background: transparent;
}

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

.select-field::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 42px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--white-64);
  border-bottom: 1px solid var(--white-64);
  transform: rotate(45deg);
  pointer-events: none;
}

.tf-field span,
.select-field span {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white-64);
  font-size: 13px;
  pointer-events: none;
}

.tf-field input:focus,
.tf-field textarea:focus,
.select-field select:focus {
  border-color: var(--primary);
}

.tf-field input.is-invalid,
.tf-field textarea.is-invalid,
.select-field select.is-invalid {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin: 2px 0 0;
  color: var(--danger);
  font-size: 12px;
}

.stage-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.stage-row-label {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.stage-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(var(--primary-rgb), 0.55);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(196, 154, 60, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.questions-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.question-card {
  padding: 24px;
}

.question-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.question-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--white-16);
  border-radius: 50%;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.question-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
}

.score-options {
  display: grid;
  grid-template-columns: repeat(11, minmax(34px, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.score-option {
  min-height: 38px;
  color: var(--white-64);
  border: 1px solid var(--white-16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.34);
  transition: all 0.3s ease;
}

.score-option:hover,
.score-option.is-active {
  color: var(--black);
  border-color: var(--primary);
  background: var(--primary);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: var(--white-32);
  font-size: 12px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.check-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 54px;
  padding: 14px;
  border: 1px solid var(--white-16);
  border-radius: 6px;
  color: var(--white-64);
  background: rgba(0, 0, 0, 0.34);
  transition: all 0.3s ease;
}

.check-option:has(input:checked) {
  color: var(--white);
  border-color: var(--primary);
  background: rgba(196, 154, 60, 0.09);
}

.check-option input {
  accent-color: var(--primary);
  margin-top: 4px;
}

.channel-score {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.result-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: center;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--white-16);
}

.score-ring {
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: conic-gradient(var(--primary) var(--score-percent, 0%), rgba(255, 255, 255, 0.12) 0);
}

.score-ring-inner {
  width: 206px;
  height: 206px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #020403;
  text-align: center;
}

.score-ring strong {
  color: var(--primary);
  font-size: 58px;
  line-height: 1;
}

.score-ring span {
  color: var(--white-64);
  font-size: 13px;
}

.result-section {
  padding: 54px 0 0;
}

.score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.score-card {
  padding: 22px;
}

.score-bar {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white-16);
}

.score-bar span {
  display: block;
  width: var(--width, 0%);
  height: 100%;
  background: var(--primary);
}

.radar-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.radar-card {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.radar-card svg text {
  fill: var(--white-64);
  font: 600 12px "Figtree", sans-serif;
}

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

.insight-card,
.phase-card {
  padding: 22px;
}

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

.phase-card ul,
.simple-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.phase-card li,
.simple-list li {
  position: relative;
  padding-left: 28px;
}

.phase-card li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--primary);
  border-radius: 3px;
}

.history-list {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.history-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.history-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.history-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.empty-state {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--white-16);
  border-radius: var(--radius);
  color: var(--white-64);
}

.hidden {
  display: none !important;
}

.status-message {
  min-height: 22px;
  margin-top: 16px;
  color: var(--white-64);
  font-size: 14px;
}

.status-message.success {
  color: #8fdf7f;
}

.status-message.error {
  color: var(--danger);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .hero-grid,
  .result-hero,
  .radar-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--white-16);
    padding-top: 34px;
  }

  .pillar-grid,
  .score-grid,
  .phase-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-hero {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 60px;
  }

  .brand-logo {
    width: 130px;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-note {
    display: block;
    color: var(--white-50);
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .page-shell {
    padding: 40px 0 56px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-title,
  .page-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .section-title {
    font-size: 26px;
  }

  .lead,
  .page-lead {
    font-size: 16px;
    margin-top: 16px;
  }

  .eyebrow {
    font-size: 12px;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px 0;
    margin-top: 28px;
  }

  .progress-wrap {
    margin: 24px 0 30px;
  }

  .form-section-label {
    margin-top: 28px !important;
    font-size: 11px;
  }

  /* Pillar questions */
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .question-card {
    padding: 18px 16px;
  }

  .question-title {
    font-size: 16px;
  }

  .score-options {
    grid-template-columns: repeat(11, minmax(0, 1fr));
    gap: 4px;
    margin-top: 14px;
  }

  .score-option {
    min-height: 34px;
    font-size: 12px;
    border-radius: 4px;
  }

  .scale-labels {
    display: none;
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .check-option {
    min-height: 48px;
    padding: 12px;
    font-size: 13px;
  }

  /* Results */
  .score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }

  .phase-grid,
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .result-section {
    padding: 38px 0 0;
  }

  .result-hero {
    gap: 28px;
    padding-bottom: 32px;
  }

  .score-ring {
    width: 200px;
    height: 200px;
  }

  .score-ring-inner {
    width: 162px;
    height: 162px;
  }

  .score-ring strong {
    font-size: 46px;
  }

  .radar-layout {
    gap: 24px;
  }

  .radar-card {
    min-height: 280px;
  }

  /* History */
  .history-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 6px;
  }

  .footer-tagline {
    display: none;
  }

  /* Buttons */
  .tf-btn {
    min-height: 46px;
    padding: 0 20px;
    font-size: 14px;
  }

  .form-actions {
    margin-top: 28px;
    gap: 12px;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .page-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 22px;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .score-options {
    gap: 3px;
  }

  .score-option {
    min-height: 32px;
    font-size: 11px;
  }

  .question-index {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .stage-chip {
    font-size: 12px;
    min-height: 28px;
    padding: 0 10px;
  }

  .hero-br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   HOME — PÁGINA SEM SCROLL (DESKTOP)
   ============================================= */
body[data-page="home"] {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body[data-page="home"] main {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-full {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 44px 0 36px;
  gap: 32px;
  min-height: 0;
}

body[data-page="home"] .eyebrow {
  margin-bottom: 12px;
}

body[data-page="home"] .hero-title {
  font-size: 44px;
  line-height: 1.06;
  margin: 0;
}

body[data-page="home"] .lead {
  font-size: 16px;
  margin-top: 14px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.58);
}

body[data-page="home"] .hero-actions {
  margin-top: 22px;
}

/* Pillars section */
.home-pillars {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-pillars-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="home"] .pillar-grid {
  flex: 1 1 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  gap: 12px;
  min-height: 0;
}

body[data-page="home"] .pillar-card {
  min-height: auto;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .pillar-card-top {
  margin-bottom: 12px;
}

body[data-page="home"] .pillar-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

body[data-page="home"] .pillar-card p {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

body[data-page="home"] .pillar-icon {
  width: 17px;
  height: 17px;
}

body[data-page="home"] .app-footer {
  flex-shrink: 0;
}

/* Mobile: allow scroll */
@media (max-width: 760px) {
  body[data-page="home"] {
    height: auto;
    overflow: visible;
  }

  body[data-page="home"] main {
    overflow: visible;
  }

  .home-inner {
    padding: 36px 0 28px;
    gap: 32px;
  }

  body[data-page="home"] .hero-title {
    font-size: 32px;
  }

  body[data-page="home"] .lead {
    font-size: 15px;
  }

  body[data-page="home"] .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    flex: none;
    gap: 12px;
  }

  body[data-page="home"] .pillar-card {
    padding: 18px 16px 16px;
  }

  body[data-page="home"] .pillar-name {
    font-size: 15px;
  }

  body[data-page="home"] .pillar-card p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .home-inner {
    padding: 28px 0 24px;
    gap: 28px;
  }

  body[data-page="home"] .hero-title {
    font-size: 28px;
  }

  body[data-page="home"] .pillar-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body[data-page="home"] .pillar-card {
    padding: 14px 14px 12px;
  }

  body[data-page="home"] .pillar-card-top {
    margin-bottom: 8px;
  }

  body[data-page="home"] .pillar-icon {
    width: 16px;
    height: 16px;
  }

  body[data-page="home"] .pillar-name {
    font-size: 14px;
    margin-bottom: 3px;
  }

  body[data-page="home"] .pillar-card p {
    font-size: 11.5px;
  }
}

/* =============================================
   FORMULÁRIO — SEÇÃO LABEL
   ============================================= */
.form-section-label {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   PAINEL ADMIN
   ============================================= */
.admin-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-gate-box {
  width: 100%;
  max-width: 420px;
  padding: 48px;
  border: 1px solid var(--white-16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.admin-gate-logo {
  width: 148px;
  margin-bottom: 32px;
}

.admin-gate-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

.admin-gate-lead {
  margin: 0 0 32px;
  color: var(--white-64);
  font-size: 15px;
}

.admin-login-form {
  display: grid;
  gap: 20px;
}

.admin-login-btn {
  width: 100%;
  justify-content: center;
}

.admin-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-header-badge {
  color: var(--white-64);
  font-size: 13px;
}

.admin-entries-mount {
  margin-top: 40px;
}

.admin-list-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 100px 90px 80px;
  gap: 16px;
  align-items: center;
  padding: 10px 20px;
  color: var(--white-64);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--white-16);
  margin-bottom: 8px;
}

.admin-entry-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 100px 90px 80px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--white-16);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: all 0.25s ease;
}

.admin-entry-row:hover {
  border-color: rgba(var(--primary-rgb), 0.55);
  background: rgba(196, 154, 60, 0.055);
}

.admin-entry-company {
  font-weight: 600;
  font-size: 15px;
}

.admin-entry-segment {
  color: var(--white-64);
  font-size: 12px;
  margin-top: 3px;
}

.admin-entry-person {
  font-size: 14px;
}

.admin-entry-role {
  color: var(--white-64);
  font-size: 12px;
  margin-top: 3px;
}

.admin-detail-back {
  margin-top: 0;
  margin-bottom: 32px;
}

.admin-detail-hero {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white-16);
  margin-bottom: 48px;
}

.admin-data-section {
  margin-bottom: 48px;
}

.admin-data-section-head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-16);
}

.admin-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-data-item {
  padding: 16px 18px;
  border: 1px solid var(--white-16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.admin-data-item.full {
  grid-column: 1 / -1;
}

.admin-data-label {
  color: var(--white-64);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.admin-data-value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
}

.admin-empty {
  margin-top: 48px;
  padding: 36px;
  border: 1px solid var(--white-16);
  border-radius: var(--radius);
  color: var(--white-64);
  text-align: center;
  font-size: 15px;
}

@media (max-width: 900px) {
  .admin-list-header,
  .admin-entry-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 90px 60px;
  }

  .admin-list-header > :nth-child(3),
  .admin-entry-row > :nth-child(3) {
    display: none;
  }
}

@media (max-width: 600px) {
  .admin-gate-box {
    padding: 32px 24px;
  }

  .admin-list-header,
  .admin-entry-row {
    grid-template-columns: minmax(0, 1fr) 80px 60px;
  }

  .admin-list-header > :nth-child(2),
  .admin-entry-row > :nth-child(2) {
    display: none;
  }

  .admin-data-grid {
    grid-template-columns: 1fr 1fr;
  }
}
