/* Shared nav / footer / reset CSS extracted from page templates. */

    :root {
      --primary: #0d1b3e;
      --primary-light: #1a3a6b;
      --accent: #c9a84c;
      --accent-glow: rgba(201,168,76,0.15);
      --white: #ffffff;
      --off-white: #f8f7f4;
      --text-dark: #111827;
      --text-mid: #374151;
      --text-light: #6b7280;
      --border: #e5e7eb;
      --accent-dark: #856d2e;
    }


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

    .nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; }

    .nav-logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: #fff; }

    .nav-logo-sub { font-size: .64rem; color: rgba(201,168,76,.75); letter-spacing: .15em; text-transform: uppercase; }

    .nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }

    .nav-links a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .82rem; padding: .4rem .75rem; border-radius: 4px; transition: color .2s, background .2s; }

    .nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }

    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

    .hamburger.open span:nth-child(2) { opacity: 0; }

    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,27,62,.97); backdrop-filter: blur(20px); padding: 1.5rem 2rem 2rem; z-index: 999; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }

    .mobile-menu.open { display: flex; }

    .mobile-menu a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 1rem; padding: .75rem .5rem; border-bottom: 1px solid rgba(255,255,255,.07); }

    .mobile-menu .btn-mobile { margin-top: 1rem; background: var(--accent); color: var(--primary); text-align: center; padding: .85rem; border-radius: 8px; font-weight: 600; border-bottom: none; }

    .footer-inner { max-width: 1100px; margin: 0 auto; }

    .footer-top { display: grid; grid-template-columns: 260px 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 2rem; }

    .footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; font-weight: 600; margin-bottom: 3px; }

    .footer-logo-sub { font-size: .68rem; color: rgba(201,168,76,.5); letter-spacing: .12em; text-transform: uppercase; font-weight: 300; margin-bottom: 1rem; }

    .footer-about-text { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.7; font-weight: 300; }

    .footer-col-title { font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1.1rem; }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }

    .footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none; font-weight: 300; transition: color .2s; }

    .footer-links a:hover { color: rgba(255,255,255,.85); }

    .footer-bottom { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1rem; }

    .footer-legal { font-size: .75rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 520px; font-weight: 300; }

    .footer-oab { font-size: .75rem; color: rgba(255,255,255,.55); text-align: right; font-weight: 300; line-height: 1.7; }

    .footer-contact-label { font-size: .62rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }

    .footer-contact-value { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 300; margin-bottom: .75rem; }

    .wa-float svg { width: 30px; height: 30px; }

    /* ── READING PROGRESS BAR (content pages) ── */
    .progress-bar {
      position: fixed; top: 0; left: 0;
      width: 0%; height: 2px;
      background: linear-gradient(to right, var(--accent), #e8c96a);
      z-index: 9999; pointer-events: none;
      transition: width 0.05s linear;
    }

    /* ── FADE-UP SCROLL REVEAL (content pages) ── */
    /* Escondido apenas sob html.js (classe adicionada por shared.js): sem JS o conteúdo nasce visível. */
    html.js .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    html.js .fade-up.visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      html.js .fade-up { opacity: 1; transform: none; transition: none; }
    }

    /* ── T-24: ACESSIBILIDADE ── */
    .skip-link {
      position: absolute; top: -48px; left: 0; z-index: 10000;
      background: var(--accent); color: var(--primary);
      padding: .75rem 1.25rem; font-weight: 600; font-size: .85rem;
      text-decoration: none; border-radius: 0 0 6px 0;
      transition: top .2s;
    }
    .skip-link:focus { top: 0; }

    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid var(--accent); outline-offset: 2px;
    }


/* ── T-23: article/hub template CSS extracted from per-page inline <style> (shared across 143 article/hub pages) ── */

    .breadcrumb a:hover { color: var(--accent); }


        .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 58px; height: 58px; background: #25d366; border: 3px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.35); }


        .nav-separator { width: 1px; height: 32px; background: rgba(255,255,255,.18); margin: 0 1rem; }


        .footer-legal p + p { margin-top: .4rem; }

    .disclaimer p { font-size: .78rem; color: var(--text-light); line-height: 1.6; margin: 0; }

    .cta-inline a:hover { background: #d9b85c; }


        .btn-nav { background: var(--accent) !important; color: var(--primary) !important; border-radius: 6px; padding: .45rem 1.1rem !important; font-weight: 600 !important; margin-left: .5rem; }

    .breadcrumb-sep { color: rgba(255,255,255,.25); }

    .breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }

    .breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; flex-wrap: wrap; }

    .article-header-inner { max-width: 820px; margin: 0 auto; }

    .article-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }

    .article-cat { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); background: var(--accent); padding: .2rem .7rem; border-radius: 4px; margin-bottom: 1rem; }

    .article-meta span { display: flex; align-items: center; gap: .35rem; }

    .article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 600; color: var(--text-dark); margin: 2.5rem 0 1rem; line-height: 1.25; }

    .article-body a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

    .toc-list a:hover { color: var(--accent-dark); }

    .toc-list a::before { content: '→'; color: var(--accent); font-size: .78rem; margin-top: 2px; flex-shrink: 0; }

    .toc-list a { font-size: .85rem; color: var(--text-mid); text-decoration: none; display: flex; align-items: flex-start; gap: .5rem; line-height: 1.5; transition: color .2s; font-weight: 300; }

    .toc-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }

    .sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.65; font-weight: 300; margin-bottom: 1.25rem; }

    .sidebar-cta a:hover { background: #d9b85c; }

    .sidebar-cta a { display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--accent); color: var(--primary); text-decoration: none; font-weight: 600; font-size: .88rem; padding: .8rem; border-radius: 8px; transition: background .2s; }

    .sidebar-cta .sidebar-card-title { color: #fff; }

    .sidebar-cta { background: linear-gradient(135deg, var(--primary) 0%, #163060 100%); border: none; }

    .sidebar-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }

    .sidebar-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }

    .related-list a:hover { color: var(--accent-dark); }

    .related-list a { font-size: .85rem; color: var(--text-mid); text-decoration: none; display: flex; align-items: flex-start; gap: .5rem; line-height: 1.5; transition: color .2s; font-weight: 300; }

    .related-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }

    .law-box-note { font-size: .78rem; color: var(--text-light); margin-top: .5rem; font-style: normal; }

    .law-box-label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: .5rem; }

    .law-box p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin: 0; font-style: italic; }

    .cta-inline p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 1.25rem; font-weight: 300; }

    .cta-inline h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: .65rem; }

    .cta-inline a { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: var(--primary); text-decoration: none; font-weight: 600; font-size: .9rem; padding: .75rem 1.5rem; border-radius: 8px; transition: background .2s; }

    .article-meta { display: flex; align-items: center; gap: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.65); flex-wrap: wrap; }

    .article-body ul, .article-body ol { margin: .75rem 0 1.4rem 1.5rem; }

    .article-body strong { color: var(--text-dark); font-weight: 600; }

    .article-body p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; font-weight: 300; margin-bottom: 1.4rem; }

    .article-body li { font-size: .97rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: .4rem; }

    .article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin: 1.75rem 0 .75rem; }

    .article-body { min-width: 0; }

    .steps-list li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; background: var(--primary); color: #fff; font-family: 'Playfair Display', serif; font-size: .85rem; font-weight: 600; border-radius: 50%; margin-top: 2px; }

    .steps-list li span { font-size: .97rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

    .steps-list li { counter-increment: steps; display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }


        .article-header { background: linear-gradient(145deg, #040d1a 0%, #081a0e 40%, #0d2b4a 100%); padding: 7rem 2rem 4rem; }

    .highlight-box-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: .75rem; }

    .highlight-box p { font-size: .92rem; color: var(--text-mid); line-height: 1.7; margin: 0; font-weight: 300; }


    .sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.25rem; }


    .law-box { background: var(--off-white); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }


    .disclaimer { background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; margin: 2.5rem 0 0; }


    .cta-inline { background: linear-gradient(135deg, var(--primary) 0%, #0d2b4a 100%); border-radius: 12px; padding: 2rem; margin: 2.5rem 0; color: #fff; }


    .article-layout { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }


    .steps-list { counter-reset: steps; list-style: none; margin: .75rem 0 1.4rem 0; }


    .highlight-box { background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.25); border-radius: 10px; padding: 1.5rem; margin: 1.75rem 0; }

    .law-box p + p { margin-top: .75rem; }

    .hub-section-intro { font-size: .95rem; color: var(--text-light); margin-bottom: 2rem; max-width: 640px; line-height: 1.7; font-weight: 300; }

    .hub-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; }


    .hub-section { max-width: 1000px; margin: 0 auto; padding: 4rem 2rem; }


    .hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 3rem; }

    .hub-card:hover { border-color: var(--accent); transform: translateY(-2px); }

    .hub-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; }

    .hub-card-tag { font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: .5rem; display: block; }

    .hub-card-desc { font-size: .85rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }

    .hub-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-decoration: none; transition: border-color .2s, transform .2s; display: block; }

    .article-header p { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.7; font-weight: 300; max-width: 640px; }
.article-faq-label::before{content:'';display:block;width:20px;height:1px;background:var(--accent);}
.article-faq-label{font-size:.72rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem;}
.article-faq-inner{max-width:780px;margin:0 auto;}
.article-faq h2{font-family:'Playfair Display',serif;font-size:1.55rem;font-weight:600;color:var(--text-dark);margin-bottom:1.75rem;}
.article-faq .faq-question:hover{color:var(--accent);}
.article-faq .faq-question{width:100%;text-align:left;background:none;border:none;cursor:pointer;padding:1.15rem 1.35rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;font-family:'DM Sans',sans-serif;font-size:.92rem;font-weight:500;color:var(--text-dark);line-height:1.4;}
.article-faq .faq-list{display:flex;flex-direction:column;gap:.75rem;}
.article-faq .faq-item.open .faq-question{color:var(--accent);}
.article-faq .faq-item.open .faq-chevron{transform:rotate(180deg);color:var(--accent);}
.article-faq .faq-item.open{border-color:rgba(201,168,76,.25);border-left-color:var(--accent);}
.article-faq .faq-item{background:var(--white);border:1px solid var(--border);border-radius:10px;overflow:hidden;border-left:3px solid transparent;transition:border-color .25s;}
.article-faq .faq-chevron{flex-shrink:0;width:18px;height:18px;color:var(--text-light);transition:transform .3s,color .2s;}
.article-faq .faq-answer-inner{padding:0 1.35rem 1.15rem;font-size:.88rem;color:var(--text-mid);line-height:1.75;font-weight:300;border-top:1px solid var(--border);padding-top:.9rem;}
.article-faq .faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease;}

    .related{background:var(--off-white);padding:4rem 2rem;}

    .faq-question:hover { color: var(--accent); }

    .faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.1rem 1.35rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 500; color: var(--text-dark); line-height: 1.4; }


    .faq-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 3rem; }

    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

    .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; border-left: 3px solid transparent; transition: border-color .25s; }

    .faq-chevron { flex-shrink: 0; width: 18px; height: 18px; color: var(--text-light); transition: transform .3s, color .2s; }

    .faq-answer-inner { padding: 0 1.35rem 1.1rem; font-size: .88rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; border-top: 1px solid var(--border); padding-top: .9rem; }

    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }

    .article-wrap{max-width:780px;margin:0 auto;padding:3.5rem 2rem 5rem;}

    .article-hero{background:linear-gradient(145deg,#080f1e 0%,var(--primary) 60%,#1a3a6b 100%);padding:4rem 2rem 3.5rem;}

    .article-faq{background:var(--off-white);padding:4rem 2rem;}

    .article-divider{height:1px;background:var(--border);margin:2.5rem 0;}

    .article-cta{background:linear-gradient(145deg,#080f1e 0%,var(--primary) 60%,#1a3a6b 100%);padding:4rem 2rem;}

    .alert-box{background:rgba(201,168,76,.08);border:1px solid rgba(201,168,76,.3);border-radius:8px;padding:1.25rem 1.5rem;margin:1.75rem 0;}
.wa-float:hover::before{opacity:1;}

    .step-list{list-style:none;margin-left:0!important;counter-reset:steps;}
.related-label::before{content:'';display:block;width:20px;height:1px;background:var(--accent);}
.related-label{font-size:.72rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);margin-bottom:1.5rem;display:flex;align-items:center;gap:.5rem;}
.related-inner{max-width:780px;margin:0 auto;}
.related-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;}
.related-card:hover{box-shadow:0 8px 28px rgba(13,27,62,.1);transform:translateY(-3px);border-color:rgba(201,168,76,.3);}
.related-card-title{font-family:'Playfair Display',serif;font-size:.95rem;font-weight:600;color:var(--text-dark);line-height:1.35;}
.related-card-tag{font-size:.68rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--accent-dark);margin-bottom:.5rem;}
.related-card{background:var(--white);border:1px solid var(--border);border-radius:10px;padding:1.25rem;text-decoration:none;transition:box-shadow .2s,transform .2s,border-color .2s;}
.btn-cta:hover{background:#d9b85c;transform:translateY(-2px);}
.btn-cta{display:inline-flex;align-items:center;gap:.5rem;background:var(--accent);color:var(--primary);text-decoration:none;font-weight:600;font-size:.95rem;padding:.9rem 2rem;border-radius:8px;box-shadow:0 4px 20px rgba(201,168,76,.35);transition:background .2s,transform .15s;}
.breadcrumb-inner{max-width:780px;margin:0 auto;}
.breadcrumb li:not(:last-child)::after{content:'/';margin-left:.4rem;}
.breadcrumb li:last-child{color:var(--text-mid);font-weight:500;}
.article-hero-inner{max-width:780px;margin:0 auto;}
.article-hero h1{font-family:'Playfair Display',serif;font-size:clamp(1.9rem,4vw,2.8rem);font-weight:600;color:#fff;line-height:1.2;margin-bottom:1.25rem;}
.article-cta-inner{max-width:780px;margin:0 auto;text-align:center;}
.article-cta p{color:rgba(255,255,255,.65);font-size:1rem;font-weight:300;margin-bottom:2rem;line-height:1.7;}
.article-cta h2{font-family:'Playfair Display',serif;font-size:1.9rem;font-weight:600;color:#fff;margin-bottom:.75rem;}
.article-category::before{content:'';display:block;width:20px;height:1px;background:var(--accent);}
.article-category{display:inline-flex;align-items:center;gap:.5rem;font-size:.72rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);margin-bottom:1.25rem;}
.article-body ul,.article-body ol{margin:0 0 1.25rem 1.5rem;}
.alert-box p{font-size:.92rem;color:var(--text-mid);line-height:1.7;margin:0;}
.article-toc-list li::before{content:counter(toc) '. ';color:var(--accent-dark);font-weight:600;}
.article-toc-list li{counter-increment:toc;font-size:.88rem;line-height:1.5;}
.article-toc-list a:hover{color:var(--accent-dark);text-decoration:underline;}
.article-toc-list a{color:var(--text-mid);text-decoration:none;transition:color .2s;}
.article-toc-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem 1.5rem;counter-reset:toc;}
.article-toc-label{font-size:.7rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--accent-dark);margin-bottom:.85rem;}

    .article-toc{background:var(--off-white);border:1px solid var(--border);border-left:4px solid var(--accent);border-radius:8px;padding:1.5rem 1.75rem;margin:0 0 2.5rem;}
.article-body h2[id]{scroll-margin-top:90px;}

    .checklist{list-style:none;margin-left:0!important;}
.checklist li::before{content:'✓';position:absolute;left:0;color:var(--accent);font-weight:700;}
.checklist li{padding-left:1.75rem;position:relative;}
.step-list li::before{content:counter(steps);position:absolute;left:0;top:0;width:26px;height:26px;background:var(--primary);color:#fff;border-radius:50%;font-size:.8rem;font-weight:600;display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;}
.step-list li{padding-left:2.5rem;position:relative;margin-bottom:1rem!important;counter-increment:steps;}

    .faq-item.open { border-color: rgba(201,168,76,.25); border-left-color: var(--accent); }
.alert-box-label{font-size:.7rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--accent-dark);margin-bottom:.5rem;}

    .wa-float::before{content:'Fale Conosco';position:absolute;right:68px;background:rgba(13,27,62,.92);color:#fff;font-size:.78rem;font-weight:500;padding:.4rem .75rem;border-radius:6px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s;font-family:'DM Sans',sans-serif;}

    .breadcrumb-bar{background:var(--off-white);border-bottom:1px solid var(--border);padding:.65rem 2rem;margin-top:72px;}


    .compare-table-wrap { overflow-x: auto; margin: 1.5rem 0; }

    .compare-table thead th { background: var(--off-white); font-family: 'Playfair Display', serif; font-weight: 600; color: var(--text-dark); font-size: .8rem; }

    .compare-table th, .compare-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }

    .compare-table tbody tr:last-child td { border-bottom: none; }

    .compare-table tbody td { color: var(--text-mid); font-weight: 300; line-height: 1.65; }

    .compare-table { width: 100%; border-collapse: collapse; font-size: .87rem; }

    #cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000; background: var(--primary); color: var(--white); padding: 14px 20px; font-size: .85rem; font-family: 'DM Sans', sans-serif; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; box-shadow: 0 -2px 16px rgba(0,0,0,.3); }
    #cookie-banner a { color: var(--accent); text-decoration: underline; }
    #cookie-banner button { border: none; border-radius: 4px; padding: .5rem 1.1rem; font-size: .82rem; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; }
    #cookie-banner button[data-consent="granted"] { background: var(--accent); color: var(--primary); }
    #cookie-banner button[data-consent="denied"] { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); }
    #cookie-banner button[data-consent="denied"]:hover { border-color: var(--white); }
