/* Extracted from notaria.html by scripts/extract-inline-styles.cjs (Phase D.5, 2026-05-29). */
/* Verbatim relocation — cascade preserved. Lets the CSP drop 'unsafe-inline' from style-src. */
:root {
  --bg: #0c0b09;
  --surface: #161513;
  --surface2: #201e1b;
  --surface3: #2a2724;
  --amber: #c9a84c;
  --amber-light: #f2efe8;
  --gold: #c9a84c;
  --text: #f2efe8;
  --text-dim: #8a8478;
  --green: #7ac07a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 11, 9, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface3);
}
nav .container { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; }
.nav-brand { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--amber); text-decoration: none; }
.nav-cta {
  background: var(--gold); color: #000;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* Hero — quiet, expert-to-expert. */
.hero { padding: 72px 0 24px; text-align: center; }
.hero .badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12); color: var(--amber);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 auto 18px;
  color: var(--amber-light);
  max-width: 780px;
}
.hero .sub {
  font-size: 1.15rem; color: var(--text-dim);
  max-width: 640px; margin: 0 auto 28px;
}
.hero .meta {
  font-size: 0.88rem; color: var(--text-dim);
  margin-top: 12px;
}
.hero .meta a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* Section base */
section { padding: 56px 0; }
/* D.5 inline-style migration (2026-05-29) — section padding overrides */
section.sec-pt-24 { padding-top: 24px; }
section.sec-pt-16 { padding-top: 16px; }
section.sec-pt-8 { padding-top: 8px; }
section.sec-pt-8-pb-24 { padding-top: 8px; padding-bottom: 24px; }
section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 12px;
  text-align: center;
}
section .lede {
  text-align: center; color: var(--text-dim);
  max-width: 660px; margin: 0 auto 36px;
  font-size: 1rem;
}

/* Pain-point lead block — distinct visual treatment from features. */
.pain-block {
  background: var(--surface);
  border: 1px solid var(--surface3);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 auto 32px;
  max-width: 780px;
}
.pain-block p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 8px;
}
.pain-block p:last-child { margin-bottom: 0; color: var(--text-dim); font-size: 0.94rem; }
.pain-block strong { color: var(--amber-light); font-weight: 600; }

/* Feature grid — 6 blocks. Same shape as landing.html. */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--surface3);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
}
.feature .icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 8px;
  color: var(--amber-light);
}
.feature p { font-size: 0.94rem; color: var(--text-dim); }

/* Use case story block — 3 paragraphs, italic to signal narrative. */
.story-block {
  background: var(--surface2);
  border: 1px solid var(--surface3);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 8px 0 16px;
}
.story-block .tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(201, 168, 76, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.story-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--amber-light);
  margin-bottom: 18px;
}
.story-block p {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 14px;
  font-style: italic;
}
.story-block p:last-child { margin-bottom: 0; }
.story-block .footnote {
  font-style: normal;
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* Pricing strip — single tier, no urgency. */
.pricing-strip {
  background: var(--surface2);
  border: 1px solid var(--amber);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 24px 0;
  text-align: center;
}
.pricing-strip .price-num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1.1;
}
.pricing-strip .price-num small {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}
.pricing-strip .price-line {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 10px 0 16px;
}
.pricing-strip .price-meta {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 8px auto 0;
}

/* Charter promise block — same shape as /precios + /pro. */
.charter {
  background: var(--surface);
  border: 1px solid var(--amber);
  border-radius: 16px;
  padding: 32px;
  margin: 16px 0 32px;
}
.charter h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--amber-light);
  margin-bottom: 16px;
  text-align: left;
}
.charter p { font-size: 0.95rem; color: var(--text); margin-bottom: 12px; }
.charter ul { list-style: none; padding: 0; margin: 8px 0 14px; }
.charter ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: 1px solid var(--surface3);
  font-size: 0.96rem;
  color: var(--text);
}
.charter ul li:first-child { border-top: none; }
.charter ul li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 4px;
  font-weight: 700;
}
.charter a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* FAQ accordion — visible companion to the FAQPage JSON-LD above. */
.faq { margin: 16px 0 32px; }
.faq h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--amber-light);
  margin-bottom: 16px;
  text-align: left;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--surface3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq details[open] { border-color: var(--amber); }
.faq summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-light);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -2px;
  color: var(--amber);
  font-weight: 600;
  font-size: 1.3rem;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 10px;
  color: var(--text);
  font-size: 0.94rem;
}
.faq details p a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* Primary action — symmetry budget = 1. */
.primary-action-row {
  display: flex;
  justify-content: center;
  margin: 16px 0 8px;
}
.primary-action {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  min-width: 260px;
  text-align: center;
}
.primary-action:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.2);
}
.primary-sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 8px 0 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.primary-sub a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

.secondaries {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 8px;
}
.secondary-action {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.secondary-action:hover { background: rgba(201, 168, 76, 0.08); }

/* Footer */
footer {
  border-top: 1px solid var(--surface3);
  padding: 32px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}
footer .links { margin-bottom: 12px; }
footer .links a { color: var(--amber); text-decoration: none; }
footer .links a:hover { text-decoration: underline; text-underline-offset: 2px; }
footer .credit a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
