*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:  #08090b;
      --black2: #0f1015;
      --ink:    #17181d;
      --amber:  #f5c842;
      --amber2: #ffda5e;
      --white:  #ffffff;
      --muted:  #8a8d99;
      --border: rgba(255,255,255,0.07);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      opacity: .022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ─── NAV ──────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      background: rgba(8,9,11,.9);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 1.2rem;
      color: var(--white); text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      cursor: pointer;
      background: transparent;
      border: none;
      outline: none;
      padding: 0;
    }
    .logo { font-size: 1.32rem; }
    .logo-text { font-weight: 800; letter-spacing: 1.5px; color: var(--white); }
    .logo-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
    .logo-accent { font-family: 'Fraunces', serif; font-style: italic; font-weight: 900; color: var(--amber); letter-spacing: 0; }
    .footer-brand .logo { font-size: 1.5rem; }

    /* Page switcher tabs */
    .nav-tabs {
      display: flex;
      background: rgba(255,255,255,.05);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 4px;
      gap: 2px;
    }
    .nav-tab {
      padding: 7px 22px;
      border-radius: 100px;
      font-size: .82rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--muted);
      transition: all .25s;
      border: none;
      background: transparent;
      font-family: 'Plus Jakarta Sans', sans-serif;
      white-space: nowrap;
    }
    .nav-tab:hover { color: var(--white); }
    .nav-tab.active {
      background: var(--white);
      color: var(--black);
    }

    .nav-right { display: flex; gap: 10px; }
    .pill-amber {
      padding: 9px 22px;
      border-radius: 100px;
      background: var(--amber);
      color: var(--black);
      font-size: .82rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: background .2s;
      border: none; font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .pill-amber:hover { background: var(--amber2); }

    /* ─── PAGE SYSTEM ───────────────────────── */
    .page { display: none; }
    .page.active { display: block; }

    /* ─── SHARED UTILITIES ──────────────────── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

    .label-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .72rem; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 20px;
    }
    .label-tag::before {
      content: ''; width: 20px; height: 1px; background: var(--amber);
    }

    .h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
    }
    .h2 em { font-style: italic; color: var(--amber); }

    .body-text {
      font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 500px;
    }

    .btn-big {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 32px; background: var(--amber); color: var(--black);
      border-radius: 100px; font-weight: 800; font-size: .95rem;
      text-decoration: none; transition: all .25s; cursor: pointer;
      border: none; font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .btn-big:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,200,66,.25); }
    .btn-big svg { transition: transform .25s; }
    .btn-big:hover svg { transform: translateX(4px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 32px;
      border: 1px solid var(--border);
      color: var(--muted); border-radius: 100px;
      font-weight: 600; font-size: .95rem;
      text-decoration: none; transition: all .25s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.2); color: var(--white); }

    .arrow-link {
      color: var(--muted); font-size: .9rem; font-weight: 500;
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: color .2s; cursor: pointer;
      border: none; background: none; font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .arrow-link:hover { color: var(--white); }

    /* ─── HERO (shared template) ────────────── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative; overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 140px 6% 100px 5%;
      position: relative; z-index: 2;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 10px; margin-bottom: 32px;
    }
    .hero-eyebrow-line { width: 32px; height: 1px; background: var(--amber); }
    .hero-eyebrow span {
      font-size: .75rem; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--amber);
    }
    .hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      font-weight: 900; line-height: 1.0;
      letter-spacing: -2px; margin-bottom: 28px;
    }
    .hero h1 em { font-style: italic; color: var(--amber); }
    .hero-desc {
      font-size: 1rem; color: var(--muted);
      line-height: 1.75; max-width: 420px; margin-bottom: 44px;
    }
    .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

    .hero-right { position: relative; }
    .hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-right::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to right, var(--black) 0%, transparent 35%),
                  linear-gradient(to top, var(--black) 0%, transparent 30%);
    }

    .hero-badge {
      position: absolute; z-index: 3;
      bottom: 100px; left: -36px;
      background: var(--ink);
      border: 1px solid rgba(245,200,66,.3);
      border-radius: 20px; padding: 24px 28px;
      display: flex; align-items: center; gap: 20px;
      box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(245,200,66,.1), inset 0 1px 0 rgba(255,255,255,.05);
    }
    .badge-icon {
      width: 52px; height: 52px; background: rgba(245,200,66,.15);
      border-radius: 14px; display: flex; align-items: center;
      justify-content: center; font-size: 1.6rem;
      border: 1px solid rgba(245,200,66,.2);
      flex-shrink: 0;
    }
    .badge-tag {
      font-size: .6rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber);
      background: rgba(245,200,66,.12);
      border: 1px solid rgba(245,200,66,.2);
      border-radius: 100px; padding: 3px 10px;
      display: inline-block; margin-bottom: 6px;
    }
    .badge-text .val {
      font-family: 'Fraunces', serif; font-size: 2.2rem;
      font-weight: 900; color: var(--white); line-height: 1;
      letter-spacing: -1px;
    }
    .badge-text .val span { color: var(--amber); }
    .badge-text .lbl { font-size: .78rem; color: var(--muted); margin-top: 4px; font-weight: 500; }

    /* Ticker */
    .hero-ticker {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      background: var(--amber); color: var(--black);
      padding: 10px 0; overflow: hidden; white-space: nowrap;
    }
    .ticker-track {
      display: inline-flex; animation: ticker 28s linear infinite;
    }
    .ticker-track span {
      display: inline-block; padding: 0 28px;
      font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    }
    .ticker-track .sep { color: rgba(0,0,0,.3); }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── MARQUEE BREAK ─────────────────────── */
    .marquee-break {
      padding: 56px 0; overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--black2);
    }
    .marquee-track {
      display: flex; width: max-content;
      animation: marquee 22s linear infinite;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 24px;
      padding: 0 36px;
      font-family: 'Fraunces', serif;
      font-size: 2.2rem; font-weight: 800;
      color: rgba(255,255,255,.06); white-space: nowrap;
    }
    .marquee-item.lit { color: rgba(255,255,255,.5); }
    .marquee-dot { width: 10px; height: 10px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ─── STEPS ─────────────────────────────── */
    .how-inner {
      display: grid; grid-template-columns: 360px 1fr;
      gap: 100px; align-items: start;
    }
    .how-sticky { position: sticky; top: 100px; }
    .steps { display: flex; flex-direction: column; }
    .step {
      display: grid; grid-template-columns: 52px 1fr;
      gap: 20px; padding: 32px 0;
      border-bottom: 1px solid var(--border);
      opacity: .4; transition: opacity .3s;
    }
    .step:first-child { border-top: 1px solid var(--border); }
    .step:hover { opacity: 1; }
    .step-num {
      font-family: 'Fraunces', serif; font-size: 1rem;
      font-weight: 800; color: var(--amber); padding-top: 4px;
    }
    .step-body h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
    .step-body p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

    /* ─── STAT CARDS ─────────────────────────── */
    .stat-card {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 24px; border: 1px solid var(--border);
      border-radius: 16px; background: var(--black2);
      transition: border-color .25s;
    }
    .stat-card:hover { border-color: rgba(245,200,66,.25); }
    .stat-num {
      font-family: 'Fraunces', serif; font-size: 2.6rem;
      font-weight: 900; color: var(--amber); line-height: 1;
      flex-shrink: 0; width: 80px;
    }
    .stat-info h4 { font-weight: 700; font-size: .95rem; margin-bottom: 6px; color: var(--amber); }
    .stat-info p { font-size: .83rem; color: var(--muted); line-height: 1.5; }

    /* ─── FEATURE CARDS (2-col grid) ───────────── */
    .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .feat-card {
      background: var(--ink); padding: 44px 40px; transition: background .25s;
    }
    .feat-card:hover { background: #1a1b20; }
    .feat-top {
      display: flex; justify-content: space-between; align-items: flex-start;
      margin-bottom: 24px;
    }
    .feat-icon {
      width: 52px; height: 52px; background: rgba(245,200,66,.1);
      border-radius: 14px; display: flex; align-items: center;
      justify-content: center; font-size: 1.4rem;
    }
    .feat-arrow {
      color: rgba(255,255,255,.15); font-size: 1.4rem;
      transition: color .2s, transform .2s;
    }
    .feat-card:hover .feat-arrow { color: var(--amber); transform: translate(4px, -4px); }
    .feat-card h3 {
      font-family: 'Fraunces', serif; font-size: 1.3rem;
      font-weight: 800; margin-bottom: 12px; letter-spacing: -.5px;
    }
    .feat-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ─── MANIFESTO ──────────────────────────── */
    .manifesto {
      background: var(--amber); padding: 100px 5%;
      overflow: hidden; position: relative;
    }
    .manifesto-bg {
      position: absolute; font-family: 'Fraunces', serif;
      font-size: 22vw; font-weight: 900;
      color: rgba(0,0,0,.06);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap; pointer-events: none;
      user-select: none; letter-spacing: -4px;
    }
    .manifesto-inner {
      position: relative; z-index: 1;
      max-width: 960px; margin: 0 auto; text-align: center;
    }
    .manifesto blockquote {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4.5vw, 4rem);
      font-weight: 900; color: var(--black);
      line-height: 1.1; letter-spacing: -2px;
    }
    .manifesto blockquote em { font-style: italic; }
    .manifesto-sub {
      margin-top: 32px; font-size: 1rem;
      color: rgba(8,9,11,.5); font-weight: 500;
    }

    /* ─── CTA SECTION ───────────────────────── */
    .cta-sec { padding: 120px 0; background: var(--black); text-align: center; }
    .cta-inner { max-width: 680px; margin: 0 auto; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
    .cta-mail { margin-top: 32px; font-size: .85rem; color: rgba(255,255,255,.2); }
    .cta-mail a { color: var(--muted); text-decoration: none; transition: color .2s; }
    .cta-mail a:hover { color: var(--amber); }

    /* ─── FOOTER ────────────────────────────── */
    footer {
      background: var(--black2); border-top: 1px solid var(--border);
      padding: 56px 5% 32px;
    }
    .footer-top {
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 60px;
      padding-bottom: 48px; border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .footer-brand { align-self: center; }
    .footer-brand p { font-size: .83rem; color: rgba(255,255,255,.25); max-width: 240px; line-height: 1.7; }
    .footer-col h5 {
      font-size: .72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { color: var(--muted); text-decoration: none; font-size: .87rem; transition: color .2s; }
    .footer-col a:hover { color: var(--white); }
    .footer-col button {
      background: none; border: none; color: var(--muted);
      font-size: .87rem; cursor: pointer; padding: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: color .2s; text-align: left;
    }
    .footer-col button:hover { color: var(--white); }
    .footer-col a.footer-whats-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 100px; margin-top: 2px;
      background: var(--amber); color: var(--black);
      font-size: .82rem; font-weight: 700;
      transition: background .2s;
    }
    .footer-col a.footer-whats-btn:hover { background: var(--amber2); color: var(--black); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px; font-size: .75rem;
      color: rgba(255,255,255,.18); flex-wrap: wrap; gap: 10px;
    }

    /* ─── THREE-CARD GRID (home page) ──────── */
    .three-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .three-card {
      background: var(--ink); padding: 48px 36px;
      position: relative; overflow: hidden;
      transition: background .3s; cursor: pointer;
    }
    .three-card:hover { background: #1d1e24; }
    .three-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--amber);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .three-card:hover::before { transform: scaleX(1); }
    .three-card-num {
      font-family: 'Fraunces', serif; font-size: 5rem;
      font-weight: 900; color: rgba(245,200,66,.06);
      position: absolute; top: 16px; right: 24px; line-height: 1;
    }
    .three-card-icon { font-size: 2.2rem; margin-bottom: 28px; }
    .three-card h3 {
      font-family: 'Fraunces', serif; font-size: 1.5rem;
      font-weight: 800; margin-bottom: 12px; letter-spacing: -.5px;
    }
    .three-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
    .three-card-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .85rem; font-weight: 700; color: var(--amber);
      transition: gap .2s;
    }
    .three-card:hover .three-card-cta { gap: 12px; }

    /* ─── ANUNCIANTE — COMPARISON TABLE ─────── */
    .comp-table { width: 100%; border-collapse: collapse; }
    .comp-table th {
      padding: 16px 24px; text-align: left;
      font-size: .75rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .comp-table th:last-child { color: var(--amber); }
    .comp-table td {
      padding: 18px 24px; font-size: .9rem;
      border-bottom: 1px solid var(--border);
      color: rgba(255,255,255,.6);
    }
    .comp-table td:first-child { color: var(--white); font-weight: 600; }
    .comp-table td:last-child { color: var(--white); }
    .comp-table tr:hover td { background: rgba(255,255,255,.02); }
    .check { color: var(--amber); font-size: 1.1rem; }
    .cross { color: rgba(255,255,255,.2); }

    /* ─── ANUNCIANTE — FORMAT CARDS ─────────── */
    .format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .format-card {
      border: 1px solid var(--border); border-radius: 16px;
      padding: 32px 28px; transition: border-color .25s, transform .25s;
      background: var(--black2);
    }
    .format-card:hover { border-color: rgba(245,200,66,.3); transform: translateY(-4px); }
    .format-preview {
      width: 100%; height: 120px; border-radius: 10px;
      background: var(--ink); margin-bottom: 24px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .format-preview-inner {
      width: 60%; height: 80%;
      background: rgba(245,200,66,.1);
      border: 1px solid rgba(245,200,66,.2);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: .65rem; color: var(--amber); font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
    }
    .format-card h4 {
      font-family: 'Fraunces', serif; font-size: 1.15rem;
      font-weight: 800; margin-bottom: 10px;
    }
    .format-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

    /* ─── ANUNCIANTE — TESTIMONIAL ───────────── */
    .testimonial-strip {
      background: var(--black2); padding: 80px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .testimonial-inner {
      max-width: 800px; margin: 0 auto; text-align: center; padding: 0 5%;
    }
    .testimonial-quote {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 700; line-height: 1.3;
      color: var(--white); margin-bottom: 28px;
    }
    .testimonial-quote em { color: var(--amber); font-style: italic; }
    .testimonial-author { font-size: .85rem; color: var(--muted); }
    .testimonial-author strong { color: var(--white); }

    /* ─── SCROLL ANIMATIONS ──────────────────── */
    [data-anim] {
      opacity: 0; transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
      will-change: opacity, transform;
    }

    /* Skip nav (acessibilidade) */
    .skip-nav {
      position: absolute; top: -100px; left: 5%; z-index: 9999;
      background: var(--amber); color: var(--black);
      padding: 10px 20px; border-radius: 8px;
      font-weight: 700; font-size: .9rem; text-decoration: none;
      transition: top .2s;
    }
    .skip-nav:focus { top: 10px; }

    /* Focus visible — navegação por teclado */
    :focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
    button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }
    [data-anim="left"]  { transform: translateX(-28px); }
    [data-anim="right"] { transform: translateX(28px); }
    [data-anim].in { opacity: 1; transform: translate(0); }

    /* ─── HAMBURGER & MOBILE MENU ─────────────── */
    .hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; width: 40px; height: 40px;
      background: transparent; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      width: 22px; height: 2px; background: var(--white);
      border-radius: 2px; transition: all .25s; display: block;
    }
    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: var(--black2);
      flex-direction: column; padding: 80px 6% 48px; gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu-close {
      position: absolute; top: 18px; right: 5%;
      background: none; border: none; color: var(--muted);
      font-size: 1.4rem; cursor: pointer; padding: 8px;
    }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
    .mobile-nav-links button {
      background: none; border: none; border-bottom: 1px solid var(--border);
      color: var(--white); font-size: 1.6rem;
      font-family: 'Fraunces', serif; font-weight: 800;
      padding: 24px 0; text-align: left; cursor: pointer;
      letter-spacing: -.5px; transition: color .2s;
    }
    .mobile-nav-links button:hover { color: var(--amber); }
    .mobile-cta {
      margin-top: 36px; display: flex; align-items: center; justify-content: center;
      padding: 18px 32px; background: var(--amber); color: var(--black);
      border-radius: 100px; font-weight: 800; font-size: 1rem;
      text-decoration: none; text-align: center;
    }

    /* ─── RESPONSIVE ─────────────────────────────────── */

    /* ── Tablet (≤ 1024px) ── */
    @media (max-width: 1024px) {
      .how-inner { grid-template-columns: 1fr; gap: 48px; }
      .how-sticky { position: static; }
      .hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
      .home-intro-inner { gap: 60px; }
      .anun-reach-inner { gap: 60px; }
      .three-cards { grid-template-columns: 1fr 1fr; }
      .format-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    }

    /* ── Mobile (≤ 768px) ── */
    @media (max-width: 768px) {
      html { overflow-x: hidden; }

      /* No mobile, transforms horizontais causam corte — usar apenas Y */
      [data-anim="left"], [data-anim="right"] {
        transform: translateY(20px);
      }

      nav { padding: 0 5%; height: 62px; }
      .nav-tabs { display: none; }
      .pill-amber { display: none; }
      .hamburger { display: flex; }

      /* Hero: imagem como fundo com overlay */
      .hero { display: block; position: relative; min-height: 100svh; }
      .hero-right {
        display: block; position: absolute; inset: 0; z-index: 0;
      }
      .hero-right::before {
        background: linear-gradient(to top, var(--black) 35%, rgba(8,9,11,.7) 65%, rgba(8,9,11,.45) 100%);
      }
      .hero-right img { height: 100%; object-fit: cover; }
      .hero-left {
        position: relative; z-index: 2;
        padding: 110px 5% 90px; background: none;
        min-height: 100svh;
        display: flex; flex-direction: column; justify-content: flex-end;
      }
      .hero h1 { font-size: clamp(2.5rem, 9vw, 3.4rem); letter-spacing: -2px; }
      .hero-desc { font-size: .9rem; max-width: 100%; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
      .btn-big { width: 100%; justify-content: center; }
      .arrow-link { justify-content: center; }
      .hero-badge { display: none; }
      .hero-ticker { padding: 9px 0; }
      .ticker-track span { font-size: .68rem; padding: 0 16px; }

      /* Omitir marquee no mobile */
      .marquee-break { display: none; }

      /* Sections */
      .home-intro { padding: 56px 0 64px; }
      .home-intro-inner {
        grid-template-columns: 1fr; gap: 28px; overflow: visible;
      }
      .intro-text  { grid-column: 1; grid-row: 1; }
      .intro-cards { grid-column: 1; grid-row: 2; }
      .intro-actions {
        grid-column: 1; grid-row: 3;
        flex-direction: column; align-items: stretch;
      }
      .home-intro-inner > div { width: 100%; min-width: 0; }
      .h2 { font-size: clamp(1.9rem, 6.5vw, 2.6rem); letter-spacing: -1px; }
      .body-text { font-size: .9rem; }

      /* Three cards: 1 col */
      .three-cards { grid-template-columns: 1fr; }
      .three-card { padding: 32px 24px; }
      .three-card-num { display: none; }

      /* Feat grid */
      .feat-grid { grid-template-columns: 1fr; }
      .feat-card { padding: 32px 24px; }

      /* Manifesto */
      .manifesto { padding: 60px 5%; }
      .manifesto blockquote { font-size: clamp(1.5rem, 5.5vw, 2.2rem); letter-spacing: -1px; }
      .manifesto-bg { display: none; }

      /* CTA */
      .cta-sec { padding: 68px 0; }
      .cta-btns { flex-direction: column; align-items: center; }
      .cta-btns .btn-big,
      .cta-btns .btn-ghost { width: 100%; max-width: 360px; justify-content: center; }

      /* Footer */
      footer { padding: 44px 5% 28px; }
      .footer-top { flex-direction: column; align-items: center; gap: 28px; padding-bottom: 28px; text-align: center; }
      .footer-brand { display: flex; flex-direction: column; align-items: center; }
      .footer-brand p { text-align: center; max-width: 280px; }
      .footer-brand .logo { justify-content: center; }
      .footer-col { text-align: center; }
      .footer-col ul { align-items: center; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 4px; font-size: .7rem; }

      /* Condo */
      .condo-benefits { padding: 56px 0; }
      .condo-split { grid-template-columns: 1fr; gap: 36px; }
      .condo-img img { height: 240px; border-radius: 16px; }
      .condo-img-badge { display: none; }
      .benefit-item { padding: 16px 18px; gap: 14px; }
      .benefit-item-icon { display: none; }

      /* How */
      .how-inner { grid-template-columns: 1fr; gap: 32px; }
      .how-sticky { position: static; }
      .step { padding: 20px 0; gap: 16px; }

      /* Anun reach */
      .anun-reach { padding: 56px 0; }
      .anun-reach-inner { grid-template-columns: 1fr; gap: 36px; }
      .reach-stat { padding: 16px 18px; }

      /* Tabela comparativa: scroll horizontal */
      .comp-wrapper { padding: 56px 0; }
      .comp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 5% 12px; }
      .comp-wrapper .container { padding: 0; }
      .comp-wrapper .container > div:first-child { padding: 0 5%; }
      .comp-table { min-width: 520px; }
      .comp-table th, .comp-table td { padding: 12px 14px; font-size: .8rem; }

      /* Formatos */
      .format-grid { grid-template-columns: 1fr; gap: 16px; }
      .format-card { padding: 24px 20px; }
      .format-preview { height: 96px; }

      /* Testimonial */
      .testimonial-strip { padding: 56px 0; }
      .testimonial-quote { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }

      /* Stat cards */
      .stat-card { padding: 18px; display: block; }
      .stat-info { width: 100%; }
    }

    /* ── Mobile pequeno (≤ 420px) ── */
    @media (max-width: 420px) {
      .hero h1 { font-size: 2.2rem; }
      .hero-left { padding: 96px 5% 72px; }
      .three-card { padding: 28px 20px; }
      .feat-card { padding: 28px 20px; }
      .manifesto { padding: 48px 5%; }
      .manifesto blockquote { font-size: 1.4rem; }
      .cta-sec { padding: 52px 0; }
    }

    /* ─── PAGE: GERAL — specific ─────────────── */
    .home-intro {
      padding: 100px 0; background: var(--black);
    }
    .home-intro-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      column-gap: 100px; row-gap: 36px;
      align-items: start;
    }
    .intro-text  { grid-column: 1; grid-row: 1; }
    .intro-cards { grid-column: 2; grid-row: 1 / 3; align-self: center; }
    .intro-actions {
      grid-column: 1; grid-row: 2;
      display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    }
    .home-numbers {
      padding: 80px 0; background: var(--amber);
    }
    .home-numbers-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 32px; text-align: center;
    }
    .home-num .big {
      font-family: 'Fraunces', serif; font-size: 3.2rem;
      font-weight: 900; color: var(--black); line-height: 1;
    }
    .home-num .desc {
      font-size: .82rem; font-weight: 700;
      color: rgba(8,9,11,.55); margin-top: 10px;
      text-transform: uppercase; letter-spacing: .5px;
    }

    /* ─── PAGE: CONDOMÍNIO — specific ───────── */
    .condo-benefits {
      padding: 100px 0; background: var(--black2);
    }
    .condo-split {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .condo-img {
      border-radius: 20px; overflow: hidden; position: relative;
    }
    .condo-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .condo-img-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--amber); color: var(--black);
      padding: 22px 28px; border-radius: 16px;
    }
    .condo-img-badge .nb { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
    .condo-img-badge .nl { font-size: .78rem; font-weight: 700; margin-top: 4px; }
    .benefit-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
    .benefit-item {
      display: flex; gap: 16px; padding: 20px 22px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
      border-left: 3px solid var(--amber);
      border-radius: 0 12px 12px 0;
      transition: background .25s;
    }
    .benefit-item:hover { background: rgba(245,200,66,.05); }
    .benefit-item-icon { font-size: 1.3rem; flex-shrink: 0; }
    .benefit-item-text h4 { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
    .benefit-item-text p { font-size: .83rem; color: var(--muted); line-height: 1.5; }

    /* ─── PAGE: ANUNCIANTE — specific ───────── */
    .anun-reach {
      padding: 100px 0; background: var(--black2);
    }
    .anun-reach-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 100px; align-items: center;
    }
    .anun-reach-stats { display: flex; flex-direction: column; gap: 20px; }
    .reach-stat {
      display: flex; align-items: center; gap: 20px;
      padding: 20px 24px; border: 1px solid var(--border);
      border-radius: 14px; background: var(--black);
      transition: border-color .25s;
    }
    .reach-stat:hover { border-color: rgba(245,200,66,.25); }
    .reach-stat-n {
      font-family: 'Fraunces', serif; font-size: 2.2rem;
      font-weight: 900; color: var(--amber); line-height: 1; flex-shrink: 0; width: 72px;
    }
    .reach-stat-info h5 { font-weight: 700; font-size: .9rem; margin-bottom: 4px; color: var(--amber); }
    .reach-stat-info p { font-size: .82rem; color: var(--muted); line-height: 1.4; }

    .comp-wrapper {
      padding: 100px 0; background: var(--black);
      overflow-x: auto;
    }

    /* ─── PROBLEM CARDS (3-col, sinal de erro) ────────────────── */
    .prob-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }
    .prob-card {
      background: var(--ink); padding: 40px 32px;
      position: relative; transition: background .25s;
      border-top: 2px solid rgba(255,255,255,.08);
    }
    .prob-card:hover { background: #1a1b20; }
    .prob-card .prob-sub {
      font-size: .72rem; color: var(--muted); font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
    }
    .prob-card h3 {
      font-family: 'Fraunces', serif; font-size: 1.25rem;
      font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px;
    }
    .prob-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ─── BIG STATS (8x / 100%) ────────────────────────── */
    .big-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px;
    }
    .big-stat {
      background: var(--ink); padding: 48px 44px; text-align: left;
      position: relative; overflow: hidden;
      border-top: 2px solid var(--amber);
      transition: background .25s;
    }
    .big-stat:hover { background: #1a1b20; }
    .big-stat-top {
      display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
    }
    .big-stat-tag {
      font-size: .7rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
    }
    .big-stat-num {
      font-family: 'Fraunces', serif;
      font-size: clamp(4rem, 9vw, 7rem);
      font-weight: 900; line-height: .9; color: var(--amber);
      letter-spacing: -3px;
    }
    .big-stat-label {
      font-size: .82rem; font-weight: 800; letter-spacing: 1px;
      color: var(--white); margin-top: 18px; margin-bottom: 8px;
    }
    .big-stat-desc { font-size: .9rem; color: var(--muted); line-height: 1.55; max-width: 360px; }

    /* ─── TIMELINE HORÁRIOS (5 col) ─────────────────────── */
    .timeline-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px;
    }
    .timeline-col {
      background: var(--ink); padding: 32px 24px;
      border-top: 2px solid var(--amber);
      transition: background .25s;
    }
    .timeline-col:hover { background: #1a1b20; }
    .timeline-hour {
      font-family: 'Fraunces', serif; font-size: .9rem;
      font-weight: 800; color: var(--amber);
      letter-spacing: .5px; margin-bottom: 8px;
    }
    .timeline-period {
      font-weight: 700; font-size: 1.05rem;
      margin-bottom: 14px; color: var(--white);
    }
    .timeline-col p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

    /* ─── JORNADA (3 fluxos comparados) ───────────── */
    .journey-row {
      display: grid; grid-template-columns: 180px 1fr;
      gap: 32px; align-items: center;
      padding: 24px 0; border-bottom: 1px solid var(--border);
    }
    .journey-row:last-child { border-bottom: none; }
    .journey-row.highlight {
      background: rgba(245,200,66,.04);
      margin: 8px -28px 0; padding: 28px;
      border-radius: 14px; border: 1px solid rgba(245,200,66,.18);
    }
    .journey-label { font-weight: 700; font-size: .92rem; color: var(--white); }
    .journey-row.highlight .journey-label { color: var(--amber); }
    .journey-flow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .journey-step {
      padding: 8px 14px; border-radius: 100px;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      font-size: .8rem; color: var(--muted); font-weight: 500;
    }
    .journey-row.highlight .journey-step {
      background: rgba(245,200,66,.1); color: var(--white);
      border-color: rgba(245,200,66,.25);
    }
    .journey-arrow { color: var(--muted); font-size: .9rem; }
    .journey-row.highlight .journey-arrow { color: var(--amber); }

    /* ─── PILAR CARDS (3-col) ─────────────────────── */
    .pilar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .pilar-card { background: var(--ink); padding: 40px 32px; transition: background .25s; }
    .pilar-card:hover { background: #1a1b20; }
    .pilar-card .pilar-num {
      font-family: 'Fraunces', serif; font-size: .85rem;
      font-weight: 800; color: var(--amber); letter-spacing: 2px;
      margin-bottom: 18px;
    }
    .pilar-card h4 {
      font-family: 'Fraunces', serif; font-size: 1.2rem;
      font-weight: 800; margin-bottom: 12px; letter-spacing: -.5px;
    }
    .pilar-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ─── CATEGORIAS (6 cards 3x2) ─────────────── */
    .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .cat-card {
      background: var(--ink); padding: 36px 28px;
      transition: background .25s; min-height: 220px;
    }
    .cat-card:hover { background: #1a1b20; }
    .cat-icon { font-size: 1.8rem; margin-bottom: 18px; }
    .cat-card h4 {
      font-family: 'Fraunces', serif; font-size: 1rem;
      font-weight: 800; margin-bottom: 10px;
      text-transform: uppercase; letter-spacing: 1px;
      color: var(--amber);
    }
    .cat-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

    /* ─── STAGE CARDS (3 perfis) ────────────── */
    .stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .stage-card {
      border: 1px solid var(--border); border-radius: 16px;
      padding: 32px 28px; background: var(--black2);
      transition: border-color .25s, transform .25s;
    }
    .stage-card:hover { border-color: rgba(245,200,66,.3); transform: translateY(-4px); }
    .stage-tag {
      font-size: .65rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber);
      background: rgba(245,200,66,.08);
      border: 1px solid rgba(245,200,66,.2);
      border-radius: 100px; padding: 4px 12px;
      display: inline-block; margin-bottom: 18px;
    }
    .stage-card h4 {
      font-family: 'Fraunces', serif; font-size: 1.15rem;
      font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px;
    }
    .stage-card p { font-size: .87rem; color: var(--muted); line-height: 1.6; }

    /* ─── OBJETIVOS (3 cards) ─────────────────── */
    .obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .obj-card { background: var(--ink); padding: 36px 32px; transition: background .25s; }
    .obj-card:hover { background: #1a1b20; }
    .obj-card h4 {
      font-family: 'Fraunces', serif; font-size: 1.15rem;
      font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px;
      color: var(--white);
    }
    .obj-card .obj-sub {
      font-size: .85rem; color: var(--muted);
      margin-bottom: 24px; line-height: 1.5;
    }
    .obj-block {
      padding: 14px 18px; background: rgba(0,0,0,.3);
      border-left: 2px solid var(--amber); border-radius: 0 8px 8px 0;
      margin-bottom: 12px;
    }
    .obj-block-label {
      font-size: .65rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
    }
    .obj-block p { font-size: .87rem; color: var(--white); line-height: 1.5; font-style: italic; }

    /* ─── IMPLANTAÇÃO SEGURA (3 etapas + badge) ─────────── */
    .imp-wrap { position: relative; padding: 32px 0; }
    .imp-badge {
      position: absolute; top: -16px; left: 50%;
      transform: translateX(-50%);
      background: var(--amber); color: var(--black);
      padding: 8px 24px; border-radius: 100px;
      font-size: .7rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; z-index: 2;
      box-shadow: 0 4px 20px rgba(245,200,66,.3);
    }
    .imp-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      border: 1px solid rgba(245,200,66,.18);
      border-radius: 16px; overflow: hidden;
      background: rgba(245,200,66,.04); padding: 8px;
    }
    .imp-step { background: var(--ink); padding: 36px 28px; border-radius: 10px; }
    .imp-step-tag {
      font-size: .65rem; font-weight: 800; letter-spacing: 2px;
      color: var(--amber); margin-bottom: 14px;
    }
    .imp-step h4 {
      font-family: 'Fraunces', serif; font-size: 1.15rem;
      font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px;
    }
    .imp-step p { font-size: .85rem; color: var(--muted); line-height: 1.55; }
    .imp-meta {
      text-align: center; margin-top: 24px;
      font-size: .78rem; color: var(--muted); letter-spacing: 1px;
    }
    .imp-meta strong { color: var(--amber); font-weight: 800; }

    /* ─── MODELO COMERCIAL ────────────────────── */
    .price-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; margin-bottom: 32px;
    }
    .price-card { background: var(--ink); padding: 56px 44px; position: relative; }
    .price-card.featured {
      background: linear-gradient(135deg, rgba(245,200,66,.08) 0%, rgba(245,200,66,.02) 100%);
      border-left: 2px solid var(--amber);
    }
    .price-period {
      font-size: .72rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
    }
    .price-val {
      font-family: 'Fraunces', serif;
      font-size: 4.5rem; font-weight: 900;
      color: var(--white); line-height: 1; letter-spacing: -3px;
    }
    .price-val .currency { font-size: 1.6rem; vertical-align: top; color: var(--amber); margin-right: 4px; font-weight: 800; }
    .price-unit { font-size: .9rem; color: var(--muted); margin-top: 12px; font-weight: 500; }
    .price-details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
    .price-detail { background: var(--ink); padding: 26px 22px; }
    .price-detail-tag {
      font-size: .65rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
    }
    .price-detail p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

    /* ─── CATÁLOGO DE CAMPANHAS ───────────── */
    .cat-camp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .cat-camp-col { background: var(--ink); padding: 36px 32px; }
    .cat-camp-tag {
      font-size: .68rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
    }
    .cat-camp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .cat-camp-list li {
      font-size: .87rem; color: var(--muted);
      padding-left: 18px; position: relative; line-height: 1.5;
    }
    .cat-camp-list li::before {
      content: '›'; position: absolute; left: 0; top: 0;
      color: var(--amber); font-weight: 800;
    }

    /* ─── GEOGRAFIA (split com ilustração) ─────────────── */
    .geo-split {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .geo-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
    .geo-list li {
      display: flex; gap: 14px; align-items: flex-start;
      font-size: .92rem; color: var(--white); line-height: 1.6;
    }
    .geo-list li::before {
      content: '✓'; flex-shrink: 0;
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(245,200,66,.12);
      color: var(--amber); font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; margin-top: 2px;
    }
    .geo-viz {
      aspect-ratio: 1; border-radius: 20px;
      background: radial-gradient(circle at center,
        rgba(245,200,66,.15) 0%,
        rgba(245,200,66,.05) 40%, transparent 70%);
      position: relative; overflow: hidden;
      border: 1px solid var(--border);
    }
    .geo-viz::before {
      content: ''; position: absolute; top: 50%; left: 50%;
      width: 60%; height: 60%; border-radius: 50%;
      border: 1px dashed rgba(245,200,66,.4);
      transform: translate(-50%, -50%);
    }
    .geo-viz::after {
      content: ''; position: absolute; top: 50%; left: 50%;
      width: 30%; height: 30%; border-radius: 50%;
      border: 1px dashed rgba(245,200,66,.6);
      transform: translate(-50%, -50%);
    }
    .geo-pin {
      position: absolute; width: 12px; height: 12px;
      background: var(--amber); border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(245,200,66,.2);
      transform: translate(-50%, -50%);
    }
    .geo-pin.center {
      width: 18px; height: 18px; top: 50%; left: 50%;
      background: var(--white);
      box-shadow: 0 0 0 8px rgba(245,200,66,.4), 0 0 30px rgba(245,200,66,.6);
    }

    /* ─── PROPOSTA (split 4 pontos) ─────────── */
    .prop-split {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 80px; align-items: start;
    }
    .prop-list { display: flex; flex-direction: column; }
    .prop-item {
      padding: 24px 0; border-bottom: 1px solid var(--border);
      display: grid; grid-template-columns: 28px 1fr;
      gap: 18px; align-items: start;
    }
    .prop-item:first-child { border-top: 1px solid var(--border); }
    .prop-item-arrow {
      color: var(--amber); font-size: 1.4rem;
      font-weight: 800; line-height: 1;
    }
    .prop-item p {
      font-size: .95rem; color: var(--white); line-height: 1.55;
      font-weight: 500;
    }

    /* ─── COMUNICAÇÃO & GOVERNANÇA ─────────── */
    .gov-list {
      list-style: none; display: grid;
      grid-template-columns: 1fr 1fr; gap: 4px 32px; margin-top: 32px;
    }
    .gov-list li {
      display: flex; gap: 14px; align-items: flex-start;
      font-size: .92rem; color: var(--white); line-height: 1.55;
      padding: 16px 0; border-bottom: 1px solid var(--border);
    }
    .gov-list li::before {
      content: ''; flex-shrink: 0; margin-top: 8px;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--amber);
    }

    /* ─── RESUMO BLOCK ─────────────── */
    .resume-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; margin-top: 48px;
    }
    .resume-item {
      display: flex; gap: 14px; align-items: center;
      padding: 18px 22px; background: rgba(255,255,255,.03);
      border: 1px solid var(--border); border-radius: 12px;
      font-size: .92rem; color: var(--white); font-weight: 600;
    }
    .resume-item::before {
      content: '✓'; flex-shrink: 0;
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(245,200,66,.15); color: var(--amber);
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem; font-weight: 800;
    }

    /* ─── SOROCABA / CITY BADGE ─────────── */
    .city-badge {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 18px;
      background: rgba(245,200,66,.08);
      border: 1px solid rgba(245,200,66,.2);
      border-radius: 100px;
      font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--amber);
      margin-bottom: 24px;
    }
    .city-badge::before { content: '◉'; font-size: .8rem; }

    /* ─── ÍCONE DE LINHA (outline) ─────────────── */
    .icon-line {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(245,200,66,.08);
      border: 1px solid rgba(245,200,66,.18);
      margin-bottom: 22px;
    }
    .icon-line svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.6; }

    /* ─── CARD UPGRADE: NUMBERED LINE CARD ─────── */
    .lcard {
      background: var(--ink); padding: 40px 32px;
      position: relative; overflow: hidden;
      border-top: 2px solid rgba(255,255,255,.06);
      transition: background .25s, border-color .25s, transform .25s;
    }
    .lcard:hover { background: #1a1b20; border-top-color: var(--amber); transform: translateY(-3px); }
    .lcard-idx {
      position: absolute; top: 18px; right: 26px;
      font-family: 'Fraunces', serif; font-size: 3.4rem;
      font-weight: 900; color: rgba(245,200,66,.07); line-height: 1;
      pointer-events: none;
    }
    .lcard h4 {
      font-family: 'Fraunces', serif; font-size: 1.15rem;
      font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px;
      position: relative; z-index: 1;
    }
    .lcard .lcard-sub {
      font-size: .72rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
    }
    .lcard p { font-size: .87rem; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }

    /* ─── FLUXOGRAMA HÍBRIDO (horizontal + zigue-zague) ─────────── */
    .flow {
      position: relative; margin-top: 64px;
      display: grid; grid-template-columns: repeat(6, 1fr);
      gap: 0; min-height: 400px;
    }
    /* linha central conectora */
    .flow::before {
      content: ''; position: absolute;
      top: 50%; left: 7%; right: 7%; height: 2px;
      background: linear-gradient(to right,
        rgba(245,200,66,.18), rgba(245,200,66,.55), rgba(245,200,66,.18));
      transform: translateY(-50%); z-index: 0;
    }
    .flow-node { position: relative; z-index: 1; }
    /* bolinha numerada fixa no eixo central */
    .flow-dot {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 54px; height: 54px; border-radius: 50%;
      background: var(--black); border: 2px solid var(--amber);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.1rem;
      color: var(--amber); z-index: 3;
      transition: background .25s, color .25s, transform .25s;
    }
    .flow-node:hover .flow-dot { background: var(--amber); color: var(--black); transform: translate(-50%, -50%) scale(1.1); }
    /* card do passo, posicionado acima/abaixo do eixo */
    .flow-card {
      position: absolute; left: 50%; transform: translateX(-50%);
      width: 92%;
      background: var(--ink); border: 1px solid var(--border);
      border-radius: 14px; padding: 16px 15px;
      transition: border-color .25s, background .25s; z-index: 2;
    }
    .flow-node:hover .flow-card { border-color: rgba(245,200,66,.3); background: #1a1b20; }
    .flow-card h4 { font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: var(--white); }
    .flow-card p { font-size: .75rem; color: var(--muted); line-height: 1.5; }
    /* haste conectando card ao eixo */
    .flow-stem {
      position: absolute; left: 50%; transform: translateX(-50%);
      width: 2px; height: 22px; background: rgba(245,200,66,.45); z-index: 1;
    }
    /* nós ímpares: card em cima / nós pares: card embaixo (zigue-zague) */
    .flow-node:nth-child(odd) .flow-card  { bottom: calc(50% + 46px); }
    .flow-node:nth-child(odd) .flow-stem  { bottom: calc(50% + 24px); }
    .flow-node:nth-child(even) .flow-card { top: calc(50% + 46px); }
    .flow-node:nth-child(even) .flow-stem { top: calc(50% + 24px); }

    /* ─── GRID 4 COLUNAS (utilitário) ───────── */
    .grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

    /* ─── GERAL: STATEMENT DE POSICIONAMENTO ───────── */
    .statement {
      padding: 110px 0; background: var(--black2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .statement-inner { max-width: 980px; margin: 0 auto; text-align: center; padding: 0 5%; }
    .statement blockquote {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.7rem, 3.6vw, 3rem);
      font-weight: 800; line-height: 1.22; letter-spacing: -1px;
      color: var(--white);
    }
    .statement blockquote em { font-style: italic; color: var(--amber); }

    /* ─── GERAL: POR QUE O ELEVADOR ───────── */
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }

    /* ─── GERAL: BIFURCAÇÃO 2 CAMINHOS ───────── */
    .fork-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    .fork-card {
      position: relative; overflow: hidden;
      background: var(--ink); border: 1px solid var(--border);
      border-radius: 20px; padding: 48px 44px;
      display: flex; flex-direction: column;
      transition: border-color .3s, transform .3s, background .3s;
    }
    .fork-card:hover { border-color: rgba(245,200,66,.35); transform: translateY(-4px); background: #1a1b20; }
    .fork-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--amber);
      transform: scaleX(0); transform-origin: left; transition: transform .4s;
    }
    .fork-card:hover::before { transform: scaleX(1); }
    .fork-tag {
      font-size: .72rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
    }
    .fork-card h3 {
      font-family: 'Fraunces', serif; font-size: 1.7rem;
      font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px;
    }
    .fork-card > p { font-size: .92rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
    .fork-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
    .fork-list li {
      display: flex; gap: 12px; align-items: flex-start;
      font-size: .9rem; color: var(--white); line-height: 1.5;
    }
    .fork-list li::before {
      content: '✓'; flex-shrink: 0;
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(245,200,66,.12); color: var(--amber);
      display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 800; margin-top: 1px;
    }
    .fork-cta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 28px; background: var(--amber); color: var(--black);
      border-radius: 100px; font-weight: 800; font-size: .9rem;
      border: none; cursor: pointer; align-self: flex-start;
      font-family: 'Plus Jakarta Sans', sans-serif; transition: background .2s, gap .2s;
    }
    .fork-cta:hover { background: var(--amber2); gap: 14px; }

    /* ─── GERAL: FAIXA OPERAÇÃO COMPLETA ───────── */
    .opstrip {
      padding: 64px 0; background: var(--black);
      border-top: 1px solid var(--border);
    }
    .opstrip-inner {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 14px 28px; text-align: center;
    }
    .opstrip-label {
      font-size: .72rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      width: 100%; margin-bottom: 8px;
    }
    .opstrip-step {
      font-family: 'Fraunces', serif; font-size: 1.15rem;
      font-weight: 800; color: var(--white);
    }
    .opstrip-sep { color: var(--amber); font-size: 1rem; }

    /* ─── RESPONSIVE NOVOS COMPONENTES ─────── */
    @media (max-width: 1024px) {
      .prob-grid, .pilar-grid, .cat-grid, .stage-grid, .obj-grid,
      .imp-grid, .cat-camp-grid, .why-grid, .grid4 { grid-template-columns: 1fr 1fr; }
      .timeline-grid { grid-template-columns: repeat(2, 1fr); }
      .big-stats { grid-template-columns: 1fr; }
      .geo-split, .prop-split { grid-template-columns: 1fr; gap: 48px; }
      .price-wrap { grid-template-columns: 1fr; }
      .price-details-grid { grid-template-columns: 1fr 1fr; }
      .gov-list { grid-template-columns: 1fr; gap: 0; }
      .fork-grid { grid-template-columns: 1fr; gap: 16px; }

      /* fluxograma vira timeline vertical conectada */
      .flow { display: flex; flex-direction: column; gap: 0; margin-top: 32px; min-height: 0; }
      .flow::before {
        top: 0; bottom: 0; left: 26px; right: auto;
        width: 2px; height: auto;
        background: linear-gradient(to bottom,
          rgba(245,200,66,.18), rgba(245,200,66,.55), rgba(245,200,66,.18));
        transform: none;
      }
      .flow-node { display: flex; align-items: flex-start; gap: 20px; padding: 0 0 22px 0; }
      .flow-stem { display: none; }
      .flow-dot {
        position: static; transform: none;
        width: 52px; height: 52px; flex-shrink: 0;
      }
      .flow-node:hover .flow-dot { transform: scale(1.06); }
      .flow-card,
      .flow-node:nth-child(odd) .flow-card,
      .flow-node:nth-child(even) .flow-card {
        position: static; transform: none;
        width: auto; flex: 1; top: auto; bottom: auto;
      }
    }
    @media (max-width: 768px) {
      .prob-grid, .pilar-grid, .cat-grid, .stage-grid, .obj-grid,
      .imp-grid, .cat-camp-grid, .timeline-grid, .why-grid, .grid4 { grid-template-columns: 1fr; }
      .resume-grid, .price-details-grid { grid-template-columns: 1fr; }
      .prob-card, .pilar-card, .cat-card, .obj-card,
      .imp-step, .cat-camp-col, .lcard { padding: 28px 22px; }
      .price-card { padding: 36px 28px; }
      .price-val { font-size: 3.2rem; }
      .journey-row { grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
      .journey-row.highlight { margin: 0 0 8px; padding: 18px 16px; }
      .journey-flow { gap: 8px; }
      .journey-step { padding: 6px 12px; font-size: .75rem; }
      .big-stat { padding: 32px 24px; }
      .big-stat-num { font-size: 4rem; }
      .imp-wrap { padding-top: 28px; }
      .timeline-col { padding: 24px 22px; }
      .fork-card { padding: 36px 28px; }
      .statement { padding: 72px 0; }
      .opstrip { padding: 48px 0; }
    }

    /* ─── PRINT ──────────────────────────── */
    @media print {
      nav, footer, .hero-ticker, .marquee-break,
      .cta-sec, .hamburger, .mobile-menu { display: none !important; }
      body { background: #fff; color: #000; }
      .page { display: block !important; }
      .hero { min-height: auto; }
      a { color: #000; text-decoration: underline; }
    }

/* — shim multi-página: nav tabs e mobile como links — */
a.nav-tab { text-decoration:none; display:inline-flex; align-items:center; }
.mobile-nav-links a:not(.mobile-cta){
  background:none; border:none; border-bottom:1px solid var(--border);
  color:var(--white); font-size:1.6rem; font-family:'Fraunces',serif; font-weight:800;
  padding:24px 0; text-align:left; cursor:pointer; letter-spacing:-.5px; transition:color .2s; text-decoration:none; display:block;
}
.mobile-nav-links a:not(.mobile-cta):hover { color:var(--amber); }

/* ═══════════════════════════════════════════════════════════════
   BLOG — índice, artigo, categoria, autor
   ═══════════════════════════════════════════════════════════════ */

/* — Cabeçalho do blog — */
.blog-hero {
  padding: 140px 5% 60px; background: var(--black);
  border-bottom: 1px solid var(--border); text-align: left;
}
.blog-hero .container { max-width: 1280px; margin: 0 auto; padding: 0; }
.blog-hero h1 {
  font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px;
}
.blog-hero h1 em { font-style: italic; color: var(--amber); }
.blog-hero p { font-size: 1.05rem; color: var(--muted); max-width: 640px; line-height: 1.7; }

/* — Filtros e busca — */
.blog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 24px 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 68px; background: var(--black); z-index: 50;
}
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-cat {
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: all .2s;
}
.blog-cat:hover { color: var(--white); border-color: rgba(255,255,255,.18); }
.blog-cat.active { background: var(--amber); color: var(--black); border-color: var(--amber); }
.blog-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px 6px 16px; min-width: 240px;
}
.blog-search svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; }
.blog-search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); font: 500 .88rem 'Plus Jakarta Sans', sans-serif;
  padding: 8px 0;
}
.blog-search input::placeholder { color: rgba(255,255,255,.35); }

/* — Grid de artigos — */
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding: 56px 0 100px;
}
.post-card {
  background: var(--ink); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s;
  text-decoration: none; color: inherit;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(245,200,66,.3); }
.post-cover {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(245,200,66,.15), rgba(245,200,66,.02));
  display: flex; align-items: center; justify-content: center;
}
.post-cover.has-image { background: var(--ink); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-cover-fallback {
  font-family: 'Fraunces', serif; font-weight: 900; color: rgba(245,200,66,.5);
  font-size: 3.5rem; letter-spacing: -2px; line-height: 1;
  padding: 18px; text-align: center;
}
.post-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.post-cat {
  font-size: .68rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
}
.post-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  font-weight: 800; line-height: 1.25; letter-spacing: -.5px;
  margin-bottom: 12px; color: var(--white);
}
.post-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: .76rem; color: rgba(255,255,255,.35); margin-top: auto;
}
.post-meta .dot { width: 3px; height: 3px; background: rgba(255,255,255,.35); border-radius: 50%; }

.empty-state {
  padding: 80px 0; text-align: center; color: var(--muted);
  font-size: .95rem;
}

/* — Página de artigo — */
.article-wrap { padding: 110px 0 60px; }
.article-head { max-width: 760px; margin: 0 auto; padding: 0 5%; }
.article-breadcrumbs {
  font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 24px;
}
.article-breadcrumbs a { color: var(--muted); text-decoration: none; }
.article-breadcrumbs a:hover { color: var(--amber); }
.article-cat {
  font-size: .72rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 16px;
}
.article-title {
  font-family: 'Fraunces', serif; font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 22px;
}
.article-title em { font-style: italic; color: var(--amber); }
.article-excerpt { font-size: 1.1rem; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.byline-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #d4a017);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.1rem;
  color: var(--black); flex-shrink: 0;
}
.byline-info { display: flex; flex-direction: column; gap: 2px; }
.byline-name { font-weight: 700; font-size: .92rem; color: var(--white); }
.byline-name a { color: inherit; text-decoration: none; }
.byline-name a:hover { color: var(--amber); }
.byline-meta { font-size: .78rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.byline-meta .dot { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; }

.article-cover {
  max-width: 920px; margin: 0 auto 48px; padding: 0 5%;
}
.article-cover-inner {
  aspect-ratio: 16/8; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, rgba(245,200,66,.15), rgba(245,200,66,.02));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.article-cover-inner img { width: 100%; height: 100%; object-fit: cover; }
.article-cover-fallback {
  font-family: 'Fraunces', serif; font-weight: 900; color: rgba(245,200,66,.45);
  font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -3px; padding: 32px; text-align: center;
}

.article-body {
  max-width: 720px; margin: 0 auto; padding: 0 5%;
  font-size: 1.05rem; line-height: 1.78; color: rgba(255,255,255,.85);
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  font-family: 'Fraunces', serif; font-size: 1.7rem;
  font-weight: 800; letter-spacing: -.6px; line-height: 1.2;
  margin: 48px 0 18px; color: var(--white);
}
.article-body h3 {
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  font-weight: 800; letter-spacing: -.3px;
  margin: 36px 0 14px; color: var(--white);
}
.article-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--amber2); }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body em { color: var(--white); font-style: italic; }
.article-body ul, .article-body ol { margin: 0 0 22px 0; padding-left: 22px; }
.article-body ul li, .article-body ol li { margin-bottom: 10px; }
.article-body blockquote {
  margin: 28px 0; padding: 20px 24px;
  background: rgba(245,200,66,.06); border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0;
  font-size: 1rem; color: var(--white); line-height: 1.6;
}
.article-body blockquote.data-callout {
  background: rgba(245,200,66,.08); padding: 22px 26px;
}
.article-body blockquote.data-callout strong:first-child { color: var(--amber); font-weight: 800; letter-spacing: 1px; font-size: .72rem; text-transform: uppercase; display: block; margin-bottom: 6px; }
.article-body code {
  background: rgba(255,255,255,.06); padding: 2px 7px; border-radius: 6px;
  font-family: ui-monospace, Menlo, monospace; font-size: .92em; color: var(--amber);
}
.article-body hr { border: none; height: 1px; background: var(--border); margin: 40px 0; }

/* — FAQ — */
.article-faq { max-width: 720px; margin: 56px auto 0; padding: 0 5%; }
.article-faq h2 {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -.5px; margin-bottom: 22px; color: var(--white);
}
.faq-item {
  border-top: 1px solid var(--border); padding: 18px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-weight: 700; font-size: 1.02rem; color: var(--white);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--amber); font-size: 1.4rem; font-weight: 700; transition: transform .2s; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { font-size: .96rem; color: var(--muted); line-height: 1.7; padding-top: 12px; }

/* — CTA dentro do artigo — */
.article-cta-box {
  max-width: 720px; margin: 56px auto 0; padding: 0 5%;
}
.article-cta-inner {
  background: linear-gradient(135deg, rgba(245,200,66,.08), rgba(245,200,66,.02));
  border: 1px solid rgba(245,200,66,.2); border-radius: 16px;
  padding: 32px 36px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.article-cta-inner h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; color: var(--white); }
.article-cta-inner p { font-size: .92rem; color: var(--muted); }

/* — Newsletter — */
.newsletter-block {
  max-width: 720px; margin: 64px auto 0; padding: 0 5%;
}
.newsletter-inner {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 36px;
}
.newsletter-tag { font-size: .68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.newsletter-inner h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; color: var(--white); }
.newsletter-inner p { font-size: .92rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input[type=email] {
  flex: 1; min-width: 220px;
  background: var(--black); border: 1px solid var(--border); border-radius: 100px;
  padding: 14px 22px; color: var(--white); font: 500 .92rem 'Plus Jakarta Sans', sans-serif;
}
.newsletter-form input[type=email]:focus { outline: none; border-color: var(--amber); }
.newsletter-form button {
  padding: 14px 26px; background: var(--amber); color: var(--black);
  border: none; border-radius: 100px; font: 800 .9rem 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: background .2s;
}
.newsletter-form button:hover { background: var(--amber2); }
.newsletter-privacy { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: 12px; }

/* — Prev/Next — */
.article-nav {
  max-width: 720px; margin: 56px auto 0; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.article-nav a {
  padding: 22px 24px; background: var(--ink); border: 1px solid var(--border);
  border-radius: 14px; text-decoration: none; color: var(--white);
  transition: border-color .2s, transform .2s;
}
.article-nav a:hover { border-color: rgba(245,200,66,.3); transform: translateY(-2px); }
.article-nav .nav-dir { font-size: .7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.article-nav .nav-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 800; line-height: 1.3; }
.article-nav a.next { text-align: right; }

/* — Related — */
.article-related { padding: 80px 5% 60px; background: var(--black2); border-top: 1px solid var(--border); }
.article-related .container { max-width: 1280px; margin: 0 auto; padding: 0; }
.article-related .label-tag { margin-bottom: 24px; }
.article-related h2 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 36px; color: var(--white); }
.article-related .posts-grid { padding: 0; }

/* — Página de autor — */
.author-hero {
  padding: 140px 5% 60px; background: var(--black);
  border-bottom: 1px solid var(--border);
}
.author-hero .container { max-width: 760px; margin: 0 auto; padding: 0; text-align: center; }
.author-hero .byline-avatar { width: 80px; height: 80px; font-size: 1.8rem; margin: 0 auto 20px; }
.author-hero h1 { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
.author-role { font-size: .9rem; color: var(--amber); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.author-bio { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto 18px; }
.author-links { display: flex; justify-content: center; gap: 14px; font-size: .85rem; }
.author-links a { color: var(--amber); text-decoration: none; }
.author-links a:hover { text-decoration: underline; }

/* — Responsive — */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .article-nav { grid-template-columns: 1fr; }
  .article-cta-inner { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 96px 5% 40px; }
  .blog-toolbar { position: static; padding: 16px 0; }
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { width: 100%; }
  .article-wrap { padding: 90px 0 40px; }
  .article-body { font-size: 1rem; }
  .article-body h2 { font-size: 1.4rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .article-cta-inner { padding: 24px; }
}

    /* ─── PÁGINA LEGAL / POLÍTICA ───────────── */
    .table-scroll { overflow-x: auto; margin: 24px 0; }
    .table-scroll table { min-width: 560px; }
    .article-body table { width: 100%; border-collapse: collapse; font-size: .92rem; line-height: 1.55; }
    .article-body th, .article-body td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; vertical-align: top; }
    .article-body th { background: rgba(255,255,255,.04); color: var(--white); font-weight: 700; }
    .article-body td { color: rgba(255,255,255,.75); }
    .legal-footnote { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: .85rem; }
    .footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
    .footer-bottom a:hover { color: var(--white); }
