/* ANAP — hoja principal */
:root {
  --ink: #0d1420;
  --ink-2: #182334;
  --slate: #4b5869;
  --muted: #6f7b8a;
  --line: #dfe4ea;
  --paper: #f7f6f2;
  --white: #ffffff;
  --gold: #b89b4f;
  --gold-dark: #8d7437;
  --gold-pale: #eee5cd;
  --success: #18794e;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(13,20,32,.08);
  --shadow-lg: 0 24px 70px rgba(13,20,32,.16);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.65; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.15rem; }
h1,h2,h3,h4 { margin: 0 0 .85rem; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.3rem; }
ul { padding-left: 1.2rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--compact { padding: 68px 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: var(--white); }
.section__head { max-width: 780px; margin-bottom: 42px; }
.section__head p { color: var(--slate); font-size: 1.08rem; }
.section--dark .section__head p { color: #bac4d1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--gold-dark); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #d7bc73; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--slate); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border: 1px solid var(--gold); border-radius: 8px; background: var(--gold); color: var(--ink); font-weight: 800; line-height: 1.2; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); background: #c9ad61; border-color: #c9ad61; }
.button--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--ink-2); border-color: var(--ink-2); }
.button--ghost { background: transparent; border-color: #b9c0c9; color: var(--ink); }
.button--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button--ghost-light { background: transparent; border-color: rgba(255,255,255,.42); color: var(--white); }
.button--ghost-light:hover { background: var(--white); color: var(--ink); }
.button--small { min-height: 42px; padding: 10px 16px; font-size: .93rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-dark); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 10px 14px; background: var(--white); border: 2px solid var(--gold); }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.topbar { background: #080d14; color: #c8d0da; font-size: .78rem; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--white); }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(13,20,32,.08); backdrop-filter: blur(14px); }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(13,20,32,.08); }
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font-size: 1.35rem; letter-spacing: .18em; }
.brand__text small { max-width: 210px; margin-top: 5px; color: var(--slate); font-size: .68rem; line-height: 1.25; letter-spacing: .025em; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .93rem; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; padding: 28px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--gold); transition: right .2s ease; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }
.hero { position: relative; overflow: hidden; min-height: 715px; display: grid; align-items: center; color: var(--white); background: radial-gradient(circle at 78% 25%, rgba(184,155,79,.28), transparent 26%), linear-gradient(125deg,#0d1420 0%,#121d2b 58%,#202d3c 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 72px 72px; transform: perspective(600px) rotateX(60deg) scale(1.6) translateY(10%); transform-origin: center bottom; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -140px; bottom: -180px; border: 1px solid rgba(215,188,115,.35); border-radius: 50%; box-shadow: 0 0 0 65px rgba(215,188,115,.06),0 0 0 130px rgba(215,188,115,.04); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(310px,.75fr); gap: 72px; align-items: center; padding: 88px 0 100px; }
.hero h1 { max-width: 880px; }
.hero h1 em { color: #d9bd72; font-style: normal; }
.hero__copy > p { max-width: 760px; color: #c8d0da; font-size: 1.2rem; }
.hero__actions { margin-top: 30px; }
.hero__panel { position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(8,13,20,.6); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.hero__panel::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(184,155,79,.28); border-radius: 12px; pointer-events: none; }
.hero__panel h2 { font-size: 1.55rem; }
.hero__panel p { color: #bac4d1; font-size: .96rem; }
.hero__list { display: grid; gap: 14px; margin-top: 22px; }
.hero__list span { display: flex; gap: 12px; align-items: flex-start; }
.hero__list span::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; margin-top: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(184,155,79,.12); }
.trust-bar { position: relative; z-index: 3; margin-top: -42px; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-lg); }
.trust-item { padding: 26px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 4px; font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.service-card { position: relative; min-height: 300px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #cab675; box-shadow: var(--shadow-sm); }
.service-card__number { color: var(--gold-dark); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-top: 48px; font-size: 1.45rem; }
.service-card p { color: var(--slate); font-size: .96rem; }
.service-card::after { content: ""; position: absolute; right: -50px; top: -50px; width: 140px; height: 140px; border: 1px solid var(--gold-pale); border-radius: 50%; box-shadow: 0 0 0 24px rgba(238,229,205,.36); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split__visual { position: relative; min-height: 500px; overflow: hidden; border-radius: 22px; background: linear-gradient(145deg,#101926,#243448); box-shadow: var(--shadow-lg); }
.split__visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(115deg, transparent 0 28%, rgba(184,155,79,.26) 28% 29%, transparent 29% 48%, rgba(255,255,255,.08) 48% 49%, transparent 49%), linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px); background-size: auto,100% 64px; }
.split__visual::after { content: "ANAP"; position: absolute; right: -12px; bottom: -38px; color: rgba(255,255,255,.06); font-size: 10rem; font-weight: 900; letter-spacing: .05em; }
.visual-card { position: absolute; left: 38px; right: 38px; bottom: 38px; padding: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(8,13,20,.72); color: var(--white); backdrop-filter: blur(10px); }
.visual-card img { width: 86px; height: 86px; margin-bottom: 28px; }
.visual-card p { color: #c7d0db; }
.check-list { display: grid; gap: 15px; margin: 26px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-dark); font-size: .76rem; font-weight: 900; }
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process__item { counter-increment: step; padding: 28px; border-top: 2px solid var(--gold); background: rgba(255,255,255,.04); }
.process__item::before { content: "0" counter(step); display: block; margin-bottom: 40px; color: #d7bc73; font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.process__item p { color: #b8c3d0; font-size: .93rem; }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.feature { padding: 24px; border-left: 3px solid var(--gold); background: var(--paper); }
.feature p { margin: 0; color: var(--slate); font-size: .94rem; }
.quote { padding: 38px; border-radius: var(--radius); background: var(--gold-pale); }
.quote p { margin: 0; font-size: 1.2rem; font-weight: 650; }
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.faq summary { position: relative; padding: 20px 54px 20px 22px; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 15px; color: var(--gold-dark); font-size: 1.6rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 20px; color: var(--slate); }
.page-hero { position: relative; overflow: hidden; padding: 88px 0 82px; color: var(--white); background: linear-gradient(120deg,#0d1420,#1e2a3a); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(90deg,transparent 0 49.8%,rgba(255,255,255,.2) 50%,transparent 50.2%),linear-gradient(transparent 0 49.8%,rgba(255,255,255,.12) 50%,transparent 50.2%); background-size: 90px 90px; transform: rotate(-12deg) scale(1.2); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem,5vw,4.5rem); }
.page-hero p { max-width: 790px; color: #c2ccd8; font-size: 1.14rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: #aeb9c6; font-size: .82rem; }
.breadcrumbs span { color: #d7bc73; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 64px; align-items: start; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.5rem; font-size: 2rem; }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: #3f4b5a; }
.prose .lead { color: var(--ink); }
.sidebar-card { position: sticky; top: 112px; padding: 28px; border-radius: 14px; background: var(--paper); }
.sidebar-card h2 { font-size: 1.35rem; }
.sidebar-card ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.sidebar-card a { color: var(--slate); font-size: .94rem; }
.sidebar-card a:hover { color: var(--gold-dark); }
.sidebar-card .button { width: 100%; margin-top: 15px; }
.service-detail-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 24px 0; padding: 0; list-style: none; }
.service-detail-list li { padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.form-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 52px; align-items: start; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .9rem; font-weight: 800; }
.form-field small { color: var(--muted); font-size: .78rem; }
input, select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bcc5cf; border-radius: 8px; background: var(--white); color: var(--ink); font: inherit; font-size: .96rem; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(184,155,79,.22); border-color: var(--gold-dark); }
.checkbox { display: flex; gap: 11px; align-items: flex-start; }
.checkbox input { flex: 0 0 auto; width: 18px; min-height: 18px; margin-top: 4px; }
.file-box { padding: 18px; border: 1px dashed #a9b4c0; border-radius: 10px; background: var(--paper); }
.file-list { margin-top: 8px; color: var(--slate); font-size: .82rem; }
.alert { margin-bottom: 24px; padding: 15px 18px; border-radius: 8px; }
.alert--error { border: 1px solid #f2b8b5; background: #fff1f0; color: var(--danger); }
.alert--success { border: 1px solid #a8d8c2; background: #edf9f3; color: var(--success); }
.contact-card { padding: 28px; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.contact-card h2 { font-size: 1.45rem; }
.contact-card p, .contact-card address { color: #bdc7d3; }
.contact-card a:not(.button) { display: block; margin: 12px 0; color: #e6d29a; font-weight: 750; }
.prefooter { padding: 68px 0; color: var(--white); background: linear-gradient(120deg,#182334,#0d1420); }
.prefooter__inner { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 50px; align-items: center; }
.prefooter h2 { max-width: 820px; font-size: clamp(1.8rem,3vw,2.7rem); }
.prefooter p { max-width: 780px; color: #bdc7d3; }
.prefooter__actions { display: grid; gap: 12px; min-width: 220px; }
.site-footer { padding: 72px 0 20px; background: #080d14; color: #d0d7e1; }
.footer__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 46px; }
.footer__grid h3 { margin-bottom: 20px; color: var(--white); font-size: .98rem; letter-spacing: .04em; }
.footer__grid > div > a { display: block; margin: 9px 0; color: #aeb9c6; font-size: .88rem; }
.footer__grid > div > a:hover { color: var(--white); }
.footer__brand p { max-width: 340px; margin-top: 22px; color: #9eabba; font-size: .9rem; }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text small { color: #aeb9c6; }
.footer__contact address { margin: 15px 0; color: #9eabba; font-style: normal; font-size: .88rem; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8794a4; font-size: .78rem; }
.footer__bottom div { display: flex; gap: 18px; }
.whatsapp-fab { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #1fa855; color: var(--white); box-shadow: 0 12px 32px rgba(13,20,32,.24); }
.whatsapp-fab svg { width: 30px; fill: currentColor; }
.not-found { min-height: 64vh; display: grid; place-items: center; text-align: center; }
.not-found strong { display: block; color: var(--gold); font-size: 7rem; line-height: 1; }
@media (max-width: 1050px) {
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 118px 20px auto; display: none; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-lg); }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button) { padding: 10px 4px; }
  .main-nav > a:not(.button)::after { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__panel { max-width: 650px; }
  .trust-bar__inner { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .process { grid-template-columns: repeat(2,1fr); }
  .content-grid, .form-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .topbar__links { width: 100%; justify-content: space-between; gap: 10px; font-size: .72rem; }
  .header__inner { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand__text strong { font-size: 1.08rem; }
  .brand__text small { max-width: 160px; font-size: .58rem; }
  .main-nav { inset: 108px 14px auto; }
  .hero { min-height: auto; }
  .hero__inner { padding: 66px 0 88px; }
  .hero__copy > p { font-size: 1.04rem; }
  .hero__panel { padding: 24px; }
  .trust-bar { margin-top: -28px; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-item { padding: 20px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .grid-3,.grid-2,.feature-list,.service-detail-list { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .split__visual { min-height: 420px; }
  .process { grid-template-columns: 1fr; }
  .page-hero { padding: 68px 0 62px; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .prefooter__inner { grid-template-columns: 1fr; }
  .prefooter__actions { min-width: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto!important; transition: none!important; }
}

/* Avalúos — respaldo RAA y categorías del Decreto 556 de 2014 */
.raa-highlight { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 28px; margin: 42px 0 54px; padding: 32px; border: 1px solid #d7c89e; border-radius: var(--radius); background: linear-gradient(135deg,var(--gold-pale),#faf8f2 58%,var(--white)); box-shadow: var(--shadow-sm); }
.raa-highlight__mark { display: grid; place-items: center; width: 96px; height: 96px; border: 1px solid var(--gold); border-radius: 50%; background: var(--ink); color: #e5cf91; font-size: 1.42rem; font-weight: 900; letter-spacing: .12em; box-shadow: 0 0 0 8px rgba(184,155,79,.13); }
.raa-highlight h2 { margin-top: 0; font-size: clamp(1.65rem,3vw,2.35rem); }
.raa-highlight p:last-of-type { margin-bottom: 0; }
.legal-links { margin-top: 22px; gap: 24px; }
.valuation-categories { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin: 30px 0 50px; }
.valuation-category { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 16px; align-items: start; min-height: 186px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 5px 16px rgba(13,20,32,.04); }
.valuation-category:hover { border-color: #c8b475; box-shadow: var(--shadow-sm); }
.valuation-category__number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-dark); font-size: .78rem; font-weight: 900; letter-spacing: .05em; }
.valuation-category h3 { margin: 2px 0 9px; color: var(--ink); font-size: 1.08rem; line-height: 1.25; }
.valuation-category p { margin: 0; color: var(--slate); font-size: .9rem; line-height: 1.55; }
.valuation-category--featured { border-color: #c9b36f; background: linear-gradient(145deg,#fff,var(--gold-pale)); }
.sidebar-card__tag { display: inline-flex; margin-bottom: 14px; padding: 7px 10px; border-radius: 999px; background: var(--gold-pale); color: var(--gold-dark); font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 850px) {
  .valuation-categories { grid-template-columns: 1fr; }
  .valuation-category { min-height: auto; }
}
@media (max-width: 560px) {
  .raa-highlight { grid-template-columns: 1fr; padding: 24px 20px; }
  .raa-highlight__mark { width: 82px; height: 82px; }
  .valuation-category { grid-template-columns: 40px minmax(0,1fr); gap: 12px; padding: 19px 17px; }
  .valuation-category__number { width: 36px; height: 36px; }
}

/* Auditoría integral 2026 — conversión, recursos y páginas de intención específica */
.main-nav { gap: 18px; font-size: .88rem; }
.main-nav > a:not(.button) { white-space: nowrap; }
.service-fab { position: fixed; z-index: 79; right: 20px; bottom: 90px; display: inline-flex; align-items: center; gap: 14px; min-height: 48px; padding: 11px 16px 11px 18px; border: 1px solid #d7bc73; border-radius: 999px; background: var(--ink); color: var(--white); box-shadow: 0 12px 32px rgba(13,20,32,.24); font-size: .86rem; font-weight: 850; letter-spacing: .01em; }
.service-fab strong { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--gold); color: var(--ink); }
.service-fab:hover { transform: translateY(-2px); background: var(--ink-2); }

.intent-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin: 30px 0 46px; }
.intent-card { display: flex; flex-direction: column; min-height: 235px; padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 6px 20px rgba(13,20,32,.04); }
.intent-card:hover { border-color: #c8b475; box-shadow: var(--shadow-sm); }
.intent-card__tag { display: inline-flex; align-self: flex-start; margin-bottom: 24px; padding: 6px 10px; border-radius: 999px; background: var(--gold-pale); color: var(--gold-dark); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.intent-card h3 { font-size: 1.3rem; }
.intent-card p { color: var(--slate); font-size: .94rem; }
.intent-card .text-link { margin-top: auto; }

.resource-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.resource-card { display: flex; flex-direction: column; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.resource-card:hover { transform: translateY(-4px); border-color: #c8b475; box-shadow: var(--shadow-sm); }
.resource-card__meta { margin-bottom: 28px; color: var(--gold-dark); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.resource-card h3 { font-size: 1.42rem; }
.resource-card p { color: var(--slate); font-size: .95rem; }
.resource-card .text-link { margin-top: auto; }
.article-header { max-width: 860px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 24px 0 0; color: #b9c5d3; font-size: .82rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.article-body { max-width: 820px; }
.article-body h2 { margin-top: 3rem; }
.article-body h3 { margin-top: 2rem; }
.article-body blockquote { margin: 30px 0; padding: 24px 28px; border-left: 4px solid var(--gold); background: var(--paper); color: var(--ink); font-size: 1.08rem; }
.article-callout { margin: 34px 0; padding: 24px 28px; border: 1px solid #d8c99f; border-radius: 12px; background: linear-gradient(145deg,#fff,var(--gold-pale)); }
.article-callout h3 { margin-top: 0; }
.article-disclaimer { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.article-toc { margin: 28px 0 40px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.article-toc strong { display: block; margin-bottom: 10px; }
.article-toc ol { margin: 0; }
.article-toc a { color: var(--gold-dark); font-weight: 750; }

.keyword-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 36px; }
.keyword-strip span { padding: 7px 11px; border: 1px solid #d8c99f; border-radius: 999px; background: #faf8f2; color: var(--gold-dark); font-size: .76rem; font-weight: 800; }
.method-steps { counter-reset: method; display: grid; gap: 18px; margin: 26px 0 44px; padding: 0; list-style: none; }
.method-steps li { counter-increment: method; position: relative; padding: 22px 24px 22px 74px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.method-steps li::before { content: counter(method, decimal-leading-zero); position: absolute; left: 22px; top: 22px; color: var(--gold-dark); font-size: .82rem; font-weight: 900; letter-spacing: .08em; }
.method-steps strong { display: block; margin-bottom: 5px; color: var(--ink); }
.method-steps p { margin: 0; }

.cookie-consent { position: fixed; z-index: 120; left: 20px; right: 20px; bottom: 20px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: center; max-width: 1120px; margin-inline: auto; padding: 22px 24px; border: 1px solid #d4c17f; border-radius: 14px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); }
.cookie-consent[hidden] { display: none; }
.cookie-consent strong { display: block; margin-bottom: 4px; }
.cookie-consent p { max-width: 720px; margin: 0; color: var(--slate); font-size: .86rem; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.cookie-consent__actions > a { padding: 8px; color: var(--gold-dark); font-size: .78rem; font-weight: 800; }

@media (max-width: 1180px) {
  .main-nav { gap: 14px; font-size: .84rem; }
  .main-nav .button { padding-inline: 13px; }
}
@media (max-width: 1050px) {
  .main-nav { font-size: .93rem; }
  .resource-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cookie-consent { grid-template-columns: 1fr; }
  .cookie-consent__actions { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .intent-grid,.resource-grid { grid-template-columns: 1fr; }
  .service-fab { right: 14px; bottom: 82px; min-height: 44px; padding: 9px 12px 9px 15px; }
  .service-fab span { font-size: .78rem; }
  .whatsapp-fab { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-consent__actions { display: grid; }
  .article-meta { display: grid; gap: 6px; }
}
