:root {
  --bg: #faf8f5;
  --bg-warm: #f3ede4;
  --text: #2c2825;
  --text-muted: #6b635a;
  --accent: #5c4d7a;
  --accent-light: #8b7aa8;
  --border: rgba(44, 40, 37, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(44, 40, 37, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --c-basico: #8b3a3a;
  --c-sacral: #c45c2a;
  --c-plexo: #c49a2a;
  --c-cardiaco: #3d7a4a;
  --c-laringeo: #3a6a9a;
  --c-frontal: #4a4a8a;
  --c-coronario: #6a4a8a;
  --c-falta: #9a6a4a;
  --c-proporcional: #3d7a4a;
  --c-excesso: #8b3a3a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(92, 77, 122, 0.25);
}

.btn-primary:hover { box-shadow: 0 6px 24px rgba(92, 77, 122, 0.35); }

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.5rem 0;
  border-radius: 0;
}

.btn-ghost:hover { text-decoration: underline; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* Heroes */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero {
  padding: 7rem 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero.compact { padding-bottom: 2rem; }

.hero-badge, .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1, .page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-lead, .page-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.25rem;
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.flow-item { display: flex; align-items: center; gap: 0.25rem; }

.flow-node {
  padding: 0.5rem 1rem;
  background: var(--bg-warm);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.flow-arrow { color: var(--accent-light); padding: 0 0.25rem; }

section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

section.wide { max-width: 1200px; }
section.alt { background: var(--bg-warm); max-width: none; }
section.alt > .inner { max-width: 1100px; margin: 0 auto; }
section.full { max-width: none; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card p, .card li { color: var(--text-muted); font-size: 0.9375rem; }

.card ul { margin-top: 0.75rem; padding-left: 1.25rem; }

.pull-quote {
  margin-top: 2rem;
  padding: 2rem;
  border-left: 3px solid var(--accent);
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

.map-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.map-step {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.map-step-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.map-step p { font-size: 0.875rem; color: var(--text-muted); }

.chakras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.chakra-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--chakra-color);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.chakra-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.chakra-name { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.chakra-identity { font-size: 0.6875rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.4; }
.chakra-question { font-size: 0.75rem; color: var(--text-muted); font-style: italic; line-height: 1.4; }

/* Chakra detail */
.chakra-detail {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--chakra-color);
  scroll-margin-top: 6rem;
}

.chakra-detail-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.chakra-detail-header h2 { margin-bottom: 0; }

.chakra-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.detail-block h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.detail-block ul {
  list-style: none;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.detail-block li { padding: 0.2rem 0; }

.proportion-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .proportion-row { grid-template-columns: 1fr; }
}

.prop-card {
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.prop-card strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.prop-falta { background: rgba(154, 106, 74, 0.12); color: var(--c-falta); }
.prop-falta strong { color: var(--c-falta); }
.prop-proporcional { background: rgba(61, 122, 74, 0.12); color: var(--c-proporcional); }
.prop-proporcional strong { color: var(--c-proporcional); }
.prop-excesso { background: rgba(139, 58, 58, 0.12); color: var(--c-excesso); }
.prop-excesso strong { color: var(--c-excesso); }

.prop-card span { color: var(--text-muted); }

/* Principles */
.principles-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.principles-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.principles-list .num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

/* Personality page */
.personality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.personality-blocks { display: flex; flex-direction: column; gap: 1.5rem; }
.personality-block p { color: var(--text-muted); font-size: 0.9375rem; }

.personality-diagram {
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.personality-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--c-basico) 0deg 51deg,
    var(--c-sacral) 51deg 103deg,
    var(--c-plexo) 103deg 154deg,
    var(--c-cardiaco) 154deg 206deg,
    var(--c-laringeo) 206deg 257deg,
    var(--c-frontal) 257deg 309deg,
    var(--c-coronario) 309deg 360deg
  );
  opacity: 0.35;
  position: relative;
}

.personality-ring::after {
  content: '';
  position: absolute;
  inset: 25%;
  background: var(--bg);
  border-radius: 50%;
}

.personality-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 2rem;
  line-height: 1.3;
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.concept-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.concept-card .icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

/* Tools catalog */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-chip {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover, .filter-chip.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tool-card .tool-chakra {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tool-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.tool-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }

.tool-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Saber tool pages */
.tool-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .tool-layout { grid-template-columns: 1fr; }
}

.tool-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--bg);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
}

.checkbox-item input { width: auto; }

.tool-output {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  min-height: 200px;
}

.tool-output.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-warm);
}

.output-chakra {
  border-left: 3px solid var(--chakra-color, var(--accent));
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.output-chakra h4 { font-size: 1rem; margin-bottom: 0.5rem; }

.output-chakra p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.35rem; }

.output-reflection {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  font-style: italic;
  font-size: 0.9375rem;
}

.compat-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.compat-natural { background: rgba(61, 122, 74, 0.15); color: var(--c-proporcional); }
.compat-adaptavel { background: rgba(196, 154, 42, 0.15); color: var(--c-plexo); }
.compat-exigente { background: rgba(139, 58, 74, 0.15); color: var(--c-basico); }

.saber-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.saber-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.saber-question { font-style: italic; color: var(--accent); margin-bottom: 1.5rem; }

.saber-card ul { list-style: none; margin-bottom: 1.5rem; }

.saber-card li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.saber-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.matrix th, .matrix td {
  padding: 1rem 1.25rem;
  text-align: left;
  border: 1px solid var(--border);
}

.matrix th { background: var(--bg-warm); font-weight: 600; }
.matrix td { color: var(--text-muted); }

.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.journey-step { position: relative; padding-left: 3rem; }

.journey-num {
  position: absolute;
  left: 0; top: 0;
  width: 2rem; height: 2rem;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.journey-step p { color: var(--text-muted); font-size: 0.9375rem; }

.cta-final {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #6a4a8a 0%, #4a4a8a 50%, #3a6a9a 100%);
  color: white;
  margin: 0;
  max-width: none;
}

.cta-final h2 { color: white; max-width: 24ch; margin: 0 auto 1rem; }
.cta-final p { opacity: 0.9; max-width: 50ch; margin: 0 auto 2rem; }
.cta-final .hero-actions { justify-content: center; margin-bottom: 0; }
.cta-final .btn-secondary { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.3); }
.cta-final .btn-primary { background: white; color: var(--accent); }

footer {
  padding: 4rem 2rem 2rem;
  background: var(--text);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

footer h4 { color: white; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; }
footer a:hover { color: white; }

.footer-quote {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 2rem;
  color: rgba(255,255,255,0.4);
}

.sticky-nav {
  position: sticky;
  top: 5rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  z-index: 10;
}

.sticky-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
}

.sticky-nav a:hover { background: var(--bg-warm); color: var(--text); }

@media (max-width: 768px) {
  .personality-layout { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (min-width: 769px) {
  .mobile-menu-btn { display: none; }
}

/* ── Homepage v2: Personalidade primeiro ── */

.scope-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.hero-v2 {
  min-height: auto;
  padding: 8rem 2rem 5rem;
}

.hero-v2 h1 { max-width: 22ch; }

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

.section-transition {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.section-transition .scope-label { color: var(--accent); }

.section-transition h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.section-transition p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Frequency bars */
.freq-demo {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.freq-demo-title {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.freq-bars { display: flex; flex-direction: column; gap: 0.65rem; }

.freq-row {
  display: grid;
  grid-template-columns: 110px 1fr 72px;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .freq-row { grid-template-columns: 90px 1fr 60px; }
}

.freq-name { font-size: 0.8125rem; font-weight: 500; }

.freq-track {
  height: 8px;
  background: var(--bg-warm);
  border-radius: 999px;
  overflow: hidden;
}

.freq-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--chakra-color, var(--accent));
}

.freq-level {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: right;
}

.freq-level.alto { color: var(--c-proporcional); }
.freq-level.medio { color: var(--c-plexo); }
.freq-level.baixo { color: var(--text-muted); }

/* Profile cards */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.profile-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border-top: 3px solid var(--chakra-color);
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--chakra-color);
}

.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.35rem;
}

.profile-chakra {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--chakra-color);
  margin-bottom: 0.75rem;
}

.profile-motor {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-bias {
  font-size: 0.9375rem;
  font-style: italic;
  padding: 0.75rem 1rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.profile-bias-label {
  display: block;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.profile-polarity {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.profile-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

/* Combo cards */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.combo-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.combo-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.combo-card p { font-size: 0.875rem; color: var(--text-muted); }

/* 3x effect */
.effect-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .effect-compare { grid-template-columns: 1fr; }
}

.effect-box {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.effect-box.positive {
  background: rgba(61, 122, 74, 0.06);
  border-color: rgba(61, 122, 74, 0.2);
}

.effect-box.negative {
  background: rgba(139, 58, 58, 0.06);
  border-color: rgba(139, 58, 58, 0.15);
}

.effect-box h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.effect-box ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.effect-box li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.effect-box.positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-proporcional);
  font-weight: 600;
}

.effect-box.negative li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--c-basico);
  font-weight: 600;
}

/* Needs framework */
.framework-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .framework-steps { grid-template-columns: 1fr; }
}

.framework-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.framework-step-num {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.framework-step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.framework-step p { font-size: 0.9375rem; color: var(--text-muted); }

/* Need cards (chakras as needs) */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.need-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid var(--chakra-color);
}

.need-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.need-card-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.need-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--chakra-color);
}

.need-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
}

.need-theme {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--chakra-color);
  margin-bottom: 0.5rem;
}

.need-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.need-state {
  font-size: 0.8125rem;
  padding: 0.75rem 1rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
  color: var(--text-muted);
  line-height: 1.45;
}

.need-state strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.need-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

/* Forms table */
.forms-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.forms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 640px;
}

.forms-table th,
.forms-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
  vertical-align: top;
}

.forms-table th {
  background: var(--bg-warm);
  font-weight: 600;
  font-size: 0.75rem;
}

.forms-table td { color: var(--text-muted); }

.forms-table .freq-name-cell {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.insight-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(106, 74, 138, 0.08), rgba(74, 74, 138, 0.08));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.insight-box h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.insight-box p { color: var(--text-muted); font-size: 0.9375rem; }

/* Profile detail page */
.profile-hero {
  padding: 7rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  border-bottom: 3px solid var(--chakra-color);
}

.profile-hero .profile-chakra { font-size: 0.75rem; margin-bottom: 0.5rem; }
.profile-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-meta-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  background: var(--bg-warm);
  border-radius: 999px;
}

.profile-section { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }

.profile-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.profile-section p,
.profile-section li {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.profile-section ul { padding-left: 1.25rem; margin-top: 0.75rem; }

.profile-section li { margin-bottom: 0.35rem; }

.highlight-bias {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  padding: 1.5rem 2rem;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--chakra-color);
  margin: 1.5rem 0;
  line-height: 1.4;
}
