/* BTCnizando Portal — estilos principais */
@import url("foundations.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ink-100); color: var(--fg-1); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--btc-orange-deep); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ───────── TOP BAR ───────── */
.topbar { background: var(--ink-1000); color: var(--white); font-size: 12px; font-weight: 500; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar .links { display: flex; gap: 14px; opacity: 0.85; }
.topbar .links a:hover { color: var(--btc-yellow); }

/* ───────── TICKER ───────── */
.ticker { background: var(--btc-yellow); color: var(--ink-1000); border-bottom: 2px solid var(--ink-1000); overflow: hidden; position: relative; }
.ticker .strip { display: flex; gap: 36px; padding: 10px 0; white-space: nowrap; animation: tickerScroll 60s linear infinite; width: max-content; }
.ticker .tk { display: inline-flex; gap: 8px; align-items: baseline; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 13px; }
.ticker .sym { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.04em; }
.ticker .price { font-weight: 700; }
.ticker .up { color: #15803D; font-weight: 600; }
.ticker .down { color: #B91C1C; font-weight: 600; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───────── HEADER ───────── */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(12px); }
.header .container { display: flex; align-items: center; gap: 28px; padding: 14px 24px; }
.header .logo { display: flex; align-items: center; gap: 12px; }
.header .logo .mark { width: 44px; height: 44px; border-radius: 8px; background: var(--ink-1000); display: grid; place-items: center; color: var(--btc-yellow); font-family: var(--font-heading); font-weight: 900; font-size: 30px; line-height: 1; padding-bottom: 2px; flex-shrink: 0; }
.header .logo .wm { font-family: var(--font-display); font-size: 26px; color: var(--ink-1000); letter-spacing: 0.04em; line-height: 1; }
.header .logo .tag { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; color: var(--ink-500); margin-top: 3px; }
.nav { display: flex; gap: 18px; flex: 1; }
.nav a { font-weight: 700; font-size: 13px; letter-spacing: 0.02em; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a.current-menu-item, .nav a:hover { border-bottom-color: var(--btc-yellow); color: var(--ink-1000); }
.header .actions { display: flex; gap: 10px; align-items: center; }
.iconbtn { width: 38px; height: 38px; border-radius: 10px; background: var(--ink-100); border: 0; display: grid; place-items: center; cursor: pointer; color: var(--ink-1000); text-decoration: none; }
.iconbtn:hover { background: var(--ink-200); color: var(--ink-1000); }
.btn { font-family: var(--font-heading); font-weight: 700; font-size: 13px; padding: 10px 16px; border-radius: 10px; border: 0; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; text-decoration: none; }
.btn-primary { background: var(--btc-yellow); color: var(--ink-1000); box-shadow: 0 2px 0 var(--ink-1000); }
.btn-primary:hover { background: var(--btc-yellow-deep); color: var(--ink-1000); }
.btn-dark { background: var(--ink-1000); color: var(--white); }
.mobile-menu-toggle { display: none; }

/* ───────── BADGES ───────── */
.badge { font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--btc-yellow); color: var(--ink-1000); display: inline-block; white-space: nowrap; }
.badge.dark { background: var(--ink-1000); color: var(--btc-yellow); }
.badge.breaking { background: #DC2626; color: white; padding-left: 22px; position: relative; }
.badge.breaking::before { content:""; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); animation: pulse 1.5s ease-out infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(255,255,255,.25);} 50%{ box-shadow: 0 0 0 8px rgba(255,255,255,0);} }

/* ───────── HERO ───────── */
.hero { display: grid !important; grid-template-columns: 2fr 1fr !important; gap: 20px; padding: 28px 0; align-items: start; }
.hero-feature { display: block !important; position: relative; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden; background: #1f2937; box-shadow: var(--shadow-card); text-decoration: none; }
.hero-feature .img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-feature .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%); }
.hero-feature .content { position: absolute; left: 28px; right: 28px; bottom: 28px; color: #fff; display: flex; flex-direction: column; gap: 12px; }
.hero-feature h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.hero-feature h1 a { color: #fff; }
.hero-feature .meta { font-size: 12px; opacity: 0.8; display: flex; gap: 10px; align-items: center; color: #fff; }
.hero-side { display: flex; flex-direction: column; gap: 12px; }
.hero-side .item { background: #fff; border-radius: 14px; padding: 16px; display: flex; gap: 14px; box-shadow: var(--shadow-card); flex: 1; }
.hero-side .item .thumb { width: 90px; height: 90px; flex-shrink: 0; border-radius: 10px; background-color: #d4d4d4; overflow: hidden; }
.hero-side .item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-side .item .meta { font-size: 11px; color: var(--fg-3); margin-top: 4px; }
.hero-side .item h3 { font-family: var(--font-heading); font-weight: 800; font-size: 15px; line-height: 1.2; letter-spacing: -0.01em; margin: 6px 0 0; }
.hero-side .item h3 a { color: var(--ink-1000); }
.hero-side .item h3 a:hover { color: var(--btc-orange-deep); }

/* ───────── SECTION ───────── */
.section { padding: 32px 0; }
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-head .tag { background: var(--ink-1000); color: var(--btc-yellow); padding: 6px 12px; border-radius: 6px; font-family: var(--font-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.section-head h2 { font-family: var(--font-heading); font-weight: 900; font-size: 24px; letter-spacing: -0.015em; margin: 0; }
.section-head .more { margin-left: auto; font-size: 13px; font-weight: 700; color: var(--ink-1000); display: inline-flex; gap: 4px; align-items: center; }

/* ───────── NEWS GRID ───────── */
.feed { display: grid !important; grid-template-columns: 2fr 1fr !important; gap: 32px; align-items: start; }
.grid-3 { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
.grid-2 { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
.news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); text-decoration: none; color: inherit; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); color: inherit; }
.news-card .thumb { aspect-ratio: 16/10; background-color: #1f2937; position: relative; overflow: hidden; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.news-card:hover .thumb img { transform: scale(1.04); }
.news-card .badge { position: absolute; top: 12px; left: 12px; }
.news-card .body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 17px; line-height: 1.25; letter-spacing: -0.01em; margin: 0; text-wrap: balance; color: var(--ink-1000); }
.news-card .lede { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; margin: 0; }
.news-card .meta { font-size: 11.5px; color: var(--fg-3); display: flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 4px; }
.news-card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }
.news-card.row { flex-direction: row; align-items: stretch; gap: 0; }
.news-card.row .thumb { width: 200px; aspect-ratio: unset; min-height: 160px; flex-shrink: 0; }
.news-card.row .body { flex: 1; padding: 16px 18px; }

/* ───────── SIDEBAR ───────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget { background: #fff; border-radius: 14px; padding: 20px; box-shadow: var(--shadow-card); }
.widget h4 { font-family: var(--font-heading); font-weight: 900; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-1000); margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--ink-1000); }
.newsletter { background: var(--btc-yellow); color: var(--ink-1000); border: 2px solid var(--ink-1000); border-radius: 14px; padding: 22px; box-shadow: 4px 4px 0 var(--ink-1000); }
.newsletter h4 { font-family: var(--font-display); font-size: 28px; font-weight: 400; letter-spacing: 0.01em; line-height: 1; margin: 0 0 8px; border: 0; padding: 0; }
.newsletter p { font-size: 13.5px; margin: 0 0 14px; line-height: 1.45; }
.newsletter input { width: 100%; padding: 12px 14px; border-radius: 10px; border: 2px solid var(--ink-1000); background: #fff; font-family: var(--font-body); font-size: 14px; margin-bottom: 10px; }
.newsletter input:focus { outline: 2px solid var(--ink-1000); outline-offset: 2px; }
.newsletter button { width: 100%; padding: 12px; border-radius: 10px; border: 0; background: var(--ink-1000); color: var(--btc-yellow); font-family: var(--font-heading); font-weight: 800; font-size: 14px; cursor: pointer; letter-spacing: 0.02em; }
.newsletter button:hover { background: #1f1f1f; }
.popular { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.popular li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
.popular .n { font-family: var(--font-display); font-size: 28px; color: var(--btc-yellow); line-height: 0.9; }
.popular .t { font-family: var(--font-heading); font-weight: 700; font-size: 13.5px; line-height: 1.3; letter-spacing: -0.005em; }
.popular .t a { color: var(--ink-1000); }
.popular .t a:hover { color: var(--btc-orange-deep); }
.popular .m { font-size: 11px; color: var(--fg-3); margin-top: 2px; }

/* ───────── AD SLOT ───────── */
.adslot { border: 1.5px dashed var(--ink-300); border-radius: 12px; background: #fff; display: grid; place-items: center; color: var(--fg-3); font-family: var(--font-heading); font-weight: 600; font-size: 13px; position: relative; margin: 28px 0; }
.adslot::before { content: 'PUBLICIDADE'; position: absolute; top: -9px; left: 14px; background: var(--ink-100); padding: 0 8px; font-family: var(--font-heading); font-weight: 800; font-size: 9px; letter-spacing: 0.18em; color: var(--ink-500); }
.adslot.leaderboard { height: 100px; }
.adslot.rectangle { aspect-ratio: 1.2; }
.adslot.skyscraper { aspect-ratio: 0.5; }
.adslot ins { display: block; margin: 0 auto; }

/* ───────── FOOTER ───────── */
.footer { background: var(--ink-1000); color: #fff; padding: 56px 0 24px; margin-top: 56px; }
.footer .columns { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer h5 { font-family: var(--font-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--btc-yellow); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; opacity: 0.85; }
.footer ul a:hover { color: var(--btc-yellow); opacity: 1; }
.footer .about { font-size: 13.5px; line-height: 1.6; opacity: 0.85; max-width: 32ch; }
.footer .social { display: flex; gap: 10px; margin-top: 16px; }
.footer .social .iconbtn { background: rgba(255,255,255,0.08); color: #fff; width: 36px; height: 36px; }
.footer .social .iconbtn:hover { background: var(--btc-yellow); color: var(--ink-1000); }
.footer .legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; font-size: 12px; opacity: 0.6; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer .logo { margin-bottom: 16px; }
.footer .logo .mark { background: rgba(255,255,255,0.1); }
.footer .logo .wm { color: #fff; }
.footer .logo .tag { color: rgba(255,255,255,0.5); }

/* ───────── ARTICLE ───────── */
.article { background: #fff; padding: 40px 0 64px; }
.article .layout { display: grid; grid-template-columns: 64px 1fr 320px; gap: 40px; }
.article-head { max-width: 760px; margin: 0 auto 32px; display: flex; flex-direction: column; gap: 16px; }
.article-head h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.article-head .dek { font-size: 19px; color: var(--fg-2); font-weight: 500; line-height: 1.45; text-wrap: pretty; margin: 0; }
.article-head .byline { font-size: 13px; color: var(--fg-3); display: flex; gap: 14px; align-items: center; }
.article-head .author { display: flex; gap: 10px; align-items: center; }
.article-head .avatar { width: 36px; height: 36px; border-radius: 50%; background-color: var(--ink-300); overflow: hidden; flex-shrink: 0; }
.article-head .avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-cover { max-width: 760px; margin: 0 auto 32px; border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; background: var(--ink-200); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.share-rail { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 130px; align-self: start; }
.share-rail .iconbtn { background: #fff; border: 1px solid var(--border); }
.article-body { font-size: 17.5px; line-height: 1.7; color: var(--ink-900); max-width: 680px; }
.article-body > * + * { margin-top: 1.1em; }
.article-body h2 { font-family: var(--font-heading); font-weight: 800; font-size: 26px; letter-spacing: -0.015em; margin-top: 2em; line-height: 1.15; }
.article-body h3 { font-family: var(--font-heading); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; margin-top: 1.5em; }
.article-body blockquote { border-left: 4px solid var(--btc-yellow); padding: 4px 0 4px 20px; font-family: var(--font-heading); font-weight: 700; font-size: 22px; line-height: 1.35; color: var(--ink-1000); margin: 1.6em 0; }
.article-body a { color: var(--btc-orange-deep); border-bottom: 1px solid currentColor; }
.article-body img { width: 100%; border-radius: 10px; }
.article-body figcaption { font-size: 12.5px; color: var(--fg-3); margin-top: 8px; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 0.5em; }
.article-body p { margin: 0; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.tag { background: var(--ink-100); color: var(--ink-700); padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.tag:hover { background: var(--btc-yellow); color: var(--ink-1000); }

/* ───────── BREADCRUMB ───────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--fg-3); margin: 24px 0 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--fg-3); }
.breadcrumb a:hover { color: var(--btc-orange-deep); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--ink-1000); font-weight: 600; }

/* ───────── PAGE BANNER ───────── */
.page-banner { background: var(--ink-1000); color: #fff; padding: 48px 0 56px; margin-bottom: 32px; position: relative; overflow: hidden; }
.page-banner::after { content:""; position: absolute; right: -120px; top: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(252,213,53,0.18), transparent 65%); pointer-events: none; }
.page-banner .container { position: relative; z-index: 1; }
.page-banner .eyebrow { font-family: var(--font-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--btc-yellow); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px; }
.page-banner .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--btc-yellow); }
.page-banner h1 { font-family: var(--font-display); font-size: clamp(56px, 7vw, 96px); line-height: 0.95; letter-spacing: 0.005em; margin: 0; color: #fff; text-transform: uppercase; }
.page-banner .dek { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.7); margin-top: 16px; max-width: 56ch; text-wrap: pretty; }
.page-banner .stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.page-banner .stats .stat .v { font-family: var(--font-display); font-size: 28px; color: var(--btc-yellow); line-height: 1; }
.page-banner .stats .stat .l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.6; margin-top: 6px; }

/* ───────── PAGINATION ───────── */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 40px 0 16px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 14px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--ink-1000); background: #fff; border: 1px solid var(--border); }
.pagination a:hover { background: var(--btc-yellow); border-color: var(--ink-1000); color: var(--ink-1000); }
.pagination .current { background: var(--ink-1000); color: var(--btc-yellow); border-color: var(--ink-1000); }
.pagination .dots { background: transparent; border: 0; color: var(--fg-3); }

/* ───────── SEARCH ───────── */
.searchbar { background: #fff; border: 2px solid var(--ink-1000); border-radius: 14px; padding: 8px 8px 8px 20px; display: flex; gap: 12px; align-items: center; box-shadow: 4px 4px 0 var(--ink-1000); }
.searchbar input { flex: 1; border: 0; outline: 0; padding: 12px 0; font-size: 17px; font-family: var(--font-body); background: transparent; }
.searchbar button { background: var(--ink-1000); color: var(--btc-yellow); border: 0; border-radius: 10px; padding: 12px 22px; font-family: var(--font-heading); font-weight: 800; font-size: 14px; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; }
.searchbar button:hover { background: var(--ink-800); }
.hit { display: grid; grid-template-columns: 200px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; }
.hit:last-child { border-bottom: 0; }
.hit .thumb { width: 200px; height: 130px; border-radius: 10px; overflow: hidden; background: var(--ink-200); }
.hit .thumb img { width: 100%; height: 100%; object-fit: cover; }
.hit h3 { font-family: var(--font-heading); font-weight: 800; font-size: 20px; line-height: 1.25; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--ink-1000); }
.hit h3:hover { color: var(--btc-orange-deep); }
.hit .lede { color: var(--fg-2); font-size: 15px; line-height: 1.5; margin: 0 0 8px; }
.hit .meta { font-size: 12px; color: var(--fg-3); display: flex; gap: 8px; align-items: center; }
.hit .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }

/* ───────── 404 ───────── */
.glyph-row { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 32px; }
.glyph-row .num { font-family: var(--font-display); font-size: clamp(100px, 18vw, 240px); line-height: 1; color: var(--btc-yellow); -webkit-text-stroke: 4px var(--ink-1000); text-shadow: 8px 8px 0 var(--ink-1000); letter-spacing: 0.02em; }
.glyph-row .mark { width: clamp(80px, 14vw, 200px); height: clamp(80px, 14vw, 200px); border-radius: 18px; background: var(--ink-1000); display: grid; place-items: center; color: var(--btc-yellow); font-family: var(--font-heading); font-weight: 900; font-size: clamp(60px, 11vw, 160px); line-height: 1; padding-bottom: 8px; transform: rotate(-3deg); box-shadow: 12px 12px 0 var(--btc-yellow), 12px 12px 0 1px var(--ink-1000); }
.empty { text-align: center; padding: 80px 24px; }
.empty h2 { font-family: var(--font-heading); font-weight: 900; font-size: 36px; letter-spacing: -0.02em; margin: 0 0 12px; }
.empty p { font-size: 17px; color: var(--fg-2); max-width: 56ch; margin: 0 auto 28px; line-height: 1.55; }
.empty .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.recents { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); }
.recents h3 { font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-1000); margin: 0 0 16px; text-align: center; }

/* ───────── AUTHOR ───────── */
.author-hero { background: var(--ink-1000); color: #fff; padding: 48px 0 56px; margin-bottom: 32px; position: relative; overflow: hidden; }
.author-hero::after { content:""; position: absolute; right: -100px; top: -50px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(252,213,53,0.15), transparent 65%); pointer-events: none; }
.author-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 200px 1fr auto; gap: 32px; align-items: center; }
.author-hero .avatar { width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #FCD535, #F7931A 60%, #92400E); border: 4px solid var(--btc-yellow); overflow: hidden; }
.author-hero .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-hero .name { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); line-height: 0.95; color: #fff; letter-spacing: 0.01em; margin: 0; text-transform: uppercase; }
.author-hero .role { font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--btc-yellow); margin: 0 0 16px; }
.author-hero .bio { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.5; max-width: 60ch; margin: 12px 0; }
.author-hero .social { display: flex; gap: 10px; margin-top: 16px; }
.author-hero .social .iconbtn { background: rgba(255,255,255,0.08); color: #fff; }
.author-hero .social .iconbtn:hover { background: var(--btc-yellow); color: var(--ink-1000); }
.author-hero .stats-col { display: flex; flex-direction: column; gap: 16px; align-self: stretch; justify-content: center; min-width: 140px; padding: 0 0 0 32px; border-left: 1px solid rgba(255,255,255,0.1); }
.author-hero .stats-col .stat .v { font-family: var(--font-display); font-size: 36px; color: var(--btc-yellow); line-height: 1; }
.author-hero .stats-col .stat .l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.6; margin-top: 4px; }

/* ───────── ABOUT ───────── */
.about-hero { background: var(--btc-yellow); color: var(--ink-1000); padding: 80px 0; margin-bottom: 32px; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(64px, 9vw, 132px); line-height: 0.92; letter-spacing: 0.005em; margin: 0 0 16px; text-transform: uppercase; max-width: 14ch; }
.about-hero .dek { font-family: var(--font-heading); font-weight: 500; font-size: 22px; line-height: 1.45; max-width: 56ch; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0 56px; }
.pillar { background: #fff; padding: 24px; border-radius: 14px; box-shadow: var(--shadow-card); }
.pillar .num { font-family: var(--font-display); font-size: 56px; color: var(--btc-yellow); line-height: 1; -webkit-text-stroke: 2px var(--ink-1000); }
.pillar h3 { font-family: var(--font-heading); font-weight: 800; font-size: 17px; margin: 14px 0 6px; line-height: 1.2; }
.pillar p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0 56px; }
.team .member { text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; padding: 24px 16px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-card); }
.team .avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; }
.team .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team .name { font-family: var(--font-heading); font-weight: 800; font-size: 16px; margin: 8px 0 0; }
.team .role { font-size: 12px; color: var(--fg-3); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ───────── LEGAL / FORMS ───────── */
.legal-wrap { background: #fff; padding: 32px 0 64px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.legal-toc { position: sticky; top: 130px; align-self: start; }
.legal-toc h4 { font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-1000); margin: 0 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--ink-1000); }
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.legal-toc a { color: var(--fg-2); padding: 6px 10px; border-radius: 6px; display: block; }
.legal-toc a:hover { background: var(--ink-100); color: var(--ink-1000); }
.legal-prose { font-size: 16.5px; line-height: 1.7; color: var(--ink-900); max-width: 680px; }
.legal-prose h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal-prose .updated { font-size: 13px; color: var(--fg-3); margin: 0 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-prose h2 { font-family: var(--font-heading); font-weight: 800; font-size: 24px; letter-spacing: -0.015em; margin: 2em 0 0.6em; line-height: 1.15; scroll-margin-top: 130px; }
.legal-prose p { margin: 0 0 1em; }
.legal-prose ul, .legal-prose ol { padding-left: 22px; margin: 0 0 1em; }
.legal-prose li { margin-bottom: 0.5em; }
.legal-prose a { color: var(--btc-orange-deep); border-bottom: 1px solid currentColor; }
.legal-prose .callout { background: var(--btc-yellow-soft); border-left: 4px solid var(--btc-yellow); padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 1.5em 0; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--ink-1000); }
.form-field input, .form-field textarea, .form-field select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 15px; font-family: var(--font-body); background: #fff; }
.form-field input:focus, .form-field textarea:focus { outline: 0; border-color: var(--ink-1000); box-shadow: 0 0 0 3px rgba(252,213,53,0.4); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form .submit { align-self: flex-start; padding: 14px 28px; background: var(--btc-yellow); color: var(--ink-1000); border: 0; box-shadow: 0 2px 0 var(--ink-1000); border-radius: 12px; font-family: var(--font-heading); font-weight: 800; font-size: 15px; cursor: pointer; }
.form .submit:hover { background: var(--btc-yellow-deep); }

/* ───────── COOKIE BANNER ───────── */
.cookie-banner { position: fixed; left: 24px; right: 24px; bottom: 24px; max-width: 760px; margin: 0 auto; background: var(--ink-1000); color: #fff; padding: 22px 26px; border-radius: 14px; box-shadow: var(--shadow-strong); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; z-index: 100; }
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.5; }
.cookie-banner a { color: var(--btc-yellow); border-bottom: 1px solid currentColor; }
.cookie-banner .actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner .btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); padding: 10px 16px; border-radius: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 13px; cursor: pointer; }
.cookie-banner.hidden { display: none; }

/* ───────── BREADCRUMB ───────── */
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--fg-3); padding: 20px 0 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--fg-2); }
.breadcrumb a:hover { color: var(--btc-orange-deep); }
.breadcrumb .sep { color: var(--ink-300); }
.breadcrumb .current { color: var(--ink-1000); font-weight: 600; }

/* ───────── ABOUT — extras ───────── */
.about-main-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; margin-bottom: 56px; }
.principle { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.principle:last-child { border-bottom: 0; }
.principle .n { font-family: var(--font-display); font-size: 44px; color: var(--btc-yellow); line-height: 1; -webkit-text-stroke: 2px var(--ink-1000); }
.principle h3 { font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 6px; }
.principle p { font-size: 15.5px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.numbers-card { background: #fff; padding: 28px; border-radius: 14px; box-shadow: var(--shadow-card); }
.numbers-card h3 { font-family: var(--font-heading); font-weight: 900; font-size: 18px; margin: 0 0 16px; }
.numbers-list { display: flex; flex-direction: column; gap: 18px; }
.big-num { font-family: var(--font-display); font-size: 56px; color: var(--btc-yellow); line-height: 1; -webkit-text-stroke: 2px var(--ink-1000); }
.big-label { font-size: 13px; color: var(--fg-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.cta-band { background: var(--ink-1000); color: #fff; padding: 56px 0; margin-top: 0; text-align: center; }
.cta-band h2 { font-family: var(--font-heading); font-weight: 900; font-size: 40px; letter-spacing: -0.02em; margin: 0 0 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.7); margin: 0 0 24px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ───────── CONTACT ───────── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; padding: 48px 0 64px; }
.contact-title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(36px,5vw,56px); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 16px; }
.contact-dek { font-size: 18px; color: var(--fg-2); line-height: 1.55; margin: 0 0 32px; max-width: 56ch; }
.contact-success { background: var(--btc-yellow); border: 2px solid var(--ink-1000); box-shadow: 4px 4px 0 var(--ink-1000); border-radius: 14px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-success .success-icon { background: var(--ink-1000); color: var(--btc-yellow); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.contact-success h3 { font-family: var(--font-heading); font-weight: 900; font-size: 18px; margin: 0 0 4px; }
.contact-success p { margin: 0; font-size: 14px; line-height: 1.5; }
.contact-error { background: #FEF2F2; border-left: 4px solid #DC2626; padding: 12px 16px; border-radius: 0 8px 8px 0; color: #991B1B; font-size: 14px; margin-bottom: 20px; }
.channels-card { background: #fff; border-radius: 14px; padding: 24px; box-shadow: var(--shadow-card); }
.channels-title { font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 8px; padding-bottom: 12px; border-bottom: 2px solid var(--ink-1000); }
.channel { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.channel:last-child { border-bottom: 0; }
.channel .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--btc-yellow); display: grid; place-items: center; color: var(--ink-1000); flex-shrink: 0; }
.channel h3 { font-family: var(--font-heading); font-weight: 800; font-size: 15px; margin: 0 0 4px; }
.channel p { margin: 0; color: var(--fg-2); font-size: 14px; line-height: 1.5; }
.channel a { color: var(--btc-orange-deep); font-weight: 600; }
.form-field .hint { font-size: 12px; color: var(--fg-3); margin-top: 4px; }

/* ───────── COOKIES PAGE ───────── */
.cookie-table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: 14px; }
.cookie-table th, .cookie-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.cookie-table th { background: var(--ink-100); font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-1000); }
.cookie-table code { font-family: var(--font-mono); font-size: 12px; background: var(--ink-100); padding: 2px 6px; border-radius: 4px; }
.pref-panel { background: #fff; border: 2px solid var(--ink-1000); border-radius: 14px; padding: 4px; box-shadow: 4px 4px 0 var(--ink-1000); margin: 1.5em 0; }
.pref-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--border); align-items: center; }
.pref-row:last-child { border-bottom: 0; }
.pref-row h3 { font-family: var(--font-heading); font-weight: 800; font-size: 15px; margin: 0 0 4px; }
.pref-row p { font-size: 13px; color: var(--fg-2); margin: 0; line-height: 1.45; }
.badge-essential { display: inline-block; background: var(--ink-1000); color: var(--btc-yellow); padding: 4px 10px; border-radius: 999px; font-family: var(--font-heading); font-weight: 800; font-size: 10px; letter-spacing: 0.12em; margin-top: 6px; }
.switch { position: relative; display: inline-block; width: 52px; height: 30px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; cursor: pointer; inset: 0; background: var(--ink-300); border-radius: 999px; transition: 200ms; }
.switch .slider::before { content: ""; position: absolute; height: 22px; width: 22px; left: 4px; top: 4px; background: #fff; border-radius: 50%; transition: 200ms; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + .slider { background: var(--ink-1000); }
.switch input:checked + .slider::before { transform: translateX(22px); background: var(--btc-yellow); }
.switch input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }
.pref-actions { padding: 16px 20px; display: flex; gap: 8px; justify-content: flex-end; background: var(--ink-100); border-radius: 0 0 10px 10px; flex-wrap: wrap; }
.pref-actions button { font-family: var(--font-heading); font-weight: 700; font-size: 13px; padding: 10px 16px; border-radius: 10px; cursor: pointer; }
.btn-save { background: var(--btc-yellow); color: var(--ink-1000); border: 0; box-shadow: 0 2px 0 var(--ink-1000); }
.btn-reject { background: transparent; color: var(--ink-1000); border: 1.5px solid var(--ink-1000); }

/* ───────── PLACEHOLDER GRADIENTS ───────── */
.ph-1 { background: linear-gradient(135deg, #1F2937 0%, #374151 60%, #6B7280 100%); }
.ph-2 { background: linear-gradient(135deg, #7C2D12 0%, #C2410C 60%, #F97316 100%); }
.ph-3 { background: linear-gradient(135deg, #064E3B 0%, #047857 60%, #10B981 100%); }
.ph-4 { background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 60%, #3B82F6 100%); }
.ph-5 { background: linear-gradient(135deg, #581C87 0%, #7E22CE 60%, #A855F7 100%); }
.ph-btc { background: radial-gradient(circle at 30% 30%, #FCD535, #F7931A 60%, #92400E); }

/* ═══════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .hero-side .item { flex: 1; }
  .feed { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .article .layout { grid-template-columns: 1fr 280px; }
  .share-rail { display: none; }
  .footer .columns { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .author-hero .container { grid-template-columns: 160px 1fr; }
  .author-hero .stats-col { display: none; }
}

@media (max-width: 768px) {
  .topbar .links { display: none; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--ink-1000); z-index: 200; padding: 80px 32px 32px; gap: 8px; }
  .nav.open a { color: #fff; font-size: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .nav.open a:hover { color: var(--btc-yellow); }
  .mobile-menu-toggle { display: grid; }
  .mobile-menu-close { display: none; position: fixed; top: 20px; right: 20px; z-index: 300; background: rgba(255,255,255,0.1); color: #fff; }
  .nav.open ~ .mobile-menu-close { display: grid; }
  .header .actions .btn { display: none; }
  .hero-side { flex-direction: column; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .article .layout { grid-template-columns: 1fr; }
  .article .sidebar { display: none; }
  .hit { grid-template-columns: 120px 1fr; }
  .hit .thumb { width: 120px; height: 90px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .footer .columns { grid-template-columns: 1fr; }
  .author-hero .container { grid-template-columns: 1fr; text-align: center; }
  .author-hero .avatar { margin: 0 auto; }
  .author-hero .social { justify-content: center; }
  .cookie-banner { grid-template-columns: 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .news-card.row { flex-direction: column; }
  .news-card.row .thumb { width: 100%; height: 200px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-feature .content { left: 16px; right: 16px; bottom: 16px; }
  .glyph-row .num { font-size: 80px; }
  .glyph-row .mark { width: 70px; height: 70px; font-size: 50px; }
  .team { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   OVERRIDE ASTRA — neutraliza conflitos
   ═══════════════════════════════════════ */
html, body { width: 100% !important; max-width: none !important; overflow-x: hidden; }
body { background: var(--ink-100) !important; }
body .topbar, body .ticker, body .header, body .footer { max-width: none !important; width: 100% !important; }

/* Kill ALL Astra layout containers */
#page,
.site,
#content,
#primary,
#main,
.ast-container,
.ast-site-content-wrap,
.ast-site-content,
#ast-main-content,
.ast-page-builder-template,
.ast-flex-grow,
.site-content,
.page-content,
main.site-main,
.ast-separate-container #content,
.ast-separate-container #primary,
.ast-separate-container .ast-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  width: 100% !important;
}

/* Astra sidebar float hack */
#secondary { display: none !important; }

.entry-content p, .entry-content ul, .entry-content ol { max-width: none; }
.hero-side .item h3, .news-card h3, .article-head h1 { font-size: revert; line-height: revert; }
