:root{
    --orange:#FE5D05;
    --black:#050505;
    --ink:#111111;
    --ink-2:#252525;
    --muted:#696969;
    --muted-2:#8A8A8A;
    --line:#E7E7E4;
    --line-dark:rgba(255,255,255,.12);
    --surface:#F5F5F2;
    --surface-2:#ECECE7;
    --white:#FFFFFF;
    --max:1320px;
    --radius-xl:28px;
    --radius-lg:20px;
    --radius-md:14px;
    --shadow-soft:0 24px 65px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{
    scroll-behavior:smooth;
    text-rendering:optimizeLegibility;
    background:var(--black)
}
body{
    margin:0;
    color:var(--ink);
    background:var(--white);
    font-family:var(--font-body,"Plus Jakarta Sans",sans-serif);
    font-size:18px;
    line-height:1.65;
    -webkit-font-smoothing:antialiased
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-underline-offset:3px}
button,input,select,textarea{font-family:inherit}
.container{width:min(var(--max),calc(100% - 64px));margin:0 auto}

/* top utility */
.utility-bar{
    background:#000;
    color:#BEBEBE;
    border-bottom:1px solid rgba(255,255,255,.08)
}
.utility-inner{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px
}
.utility-copy{
    font-size:12px;
    font-weight:600;
    letter-spacing:.04em
}
.utility-socials{display:flex;align-items:center;gap:7px}

/* header */
.site-header{
    position:sticky;
    top:0;
    z-index:60;
    color:#FFF;
    background:rgba(5,5,5,.97);
    border-bottom:1px solid var(--line-dark);
    backdrop-filter:blur(14px)
}
.header-inner{
    min-height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px
}
.brand-wrap{
    min-width:0;
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none
}
.brand-logo{
    width:126px;
    height:auto;
    flex:0 0 auto
}
.portal-name{
    padding-left:16px;
    border-left:1px solid rgba(255,255,255,.18);
    color:#E5E5E5;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:14px;
    font-weight:700;
    letter-spacing:-.01em;
    white-space:nowrap
}
.desktop-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:22px
}
.desktop-nav a{
    position:relative;
    color:#EFEFEF;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap
}
.desktop-nav a:after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:-8px;
    height:2px;
    background:var(--orange);
    transition:right .2s ease
}
.desktop-nav a:hover:after{right:0}
.desktop-nav a:hover{color:#FFF}
.header-tools{display:flex;align-items:center;gap:12px}
.header-socials{display:flex;align-items:center;gap:7px}
.social-icon{
    width:36px;
    height:36px;
    display:inline-grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    color:#FFF;
    text-decoration:none;
    transition:.2s ease
}
.social-icon:hover{
    border-color:var(--orange);
    background:var(--orange)
}
.social-icon svg{width:15px;height:15px;fill:currentColor}
.search-top{
    color:#FFF;
    font-size:14px;
    font-weight:700;
    text-decoration:none
}
.search-top:hover{color:var(--orange)}
.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    padding:0;
    border:1px solid rgba(255,255,255,.16);
    border-radius:12px;
    background:#111;
    color:#FFF;
    font-size:24px;
    cursor:pointer
}
.mobile-nav{display:none;padding:0 0 18px}
.mobile-nav a{
    display:block;
    padding:14px 0;
    border-top:1px solid rgba(255,255,255,.1);
    color:#FFF;
    font-size:16px;
    font-weight:600;
    text-decoration:none
}

/* hero */
.hero-slider{
    position:relative;
    overflow:hidden;
    color:#FFF;
    background:#050505
}
.hero-track{position:relative;min-height:625px}
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .55s ease,visibility .55s ease
}
.hero-slide.is-active{
    position:relative;
    opacity:1;
    visibility:visible
}
.hero-slide-inner{
    position:relative;
    min-height:625px;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(460px,.95fr);
    isolation:isolate
}
.hero-copy{
    position:relative;
    z-index:4;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px 82px 92px max(32px,calc((100vw - var(--max))/2))
}
.hero-copy:before{
    content:"";
    position:absolute;
    top:72px;
    left:max(32px,calc((100vw - var(--max))/2));
    width:58px;
    height:3px;
    background:var(--orange)
}
.hero-kicker{
    margin:18px 0 18px;
    color:#BDBDBD;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:13px;
    font-weight:800;
    letter-spacing:.15em;
    text-transform:uppercase
}
.hero-copy h1,
.hero-copy h2{
    max-width:830px;
    margin:0 0 24px;
    color:#FFF;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(40px,4.4vw,60px);
    line-height:1.03;
    letter-spacing:-.052em;
    font-weight:700
}
.hero-copy p{
    max-width:700px;
    margin:0;
    color:#C7C7C7;
    font-size:18px;
    line-height:1.72
}
.hero-button{
    align-self:flex-start;
    margin-top:30px;
    padding:15px 22px;
    border-radius:10px;
    color:#FFF;
    background:var(--orange);
    box-shadow:0 14px 34px rgba(254,93,5,.22);
    font-size:14px;
    font-weight:700;
    text-decoration:none
}
.hero-media{
    position:relative;
    min-height:625px;
    overflow:hidden;
    background:#111
}
.hero-media img{
    width:100%;
    height:100%;
    min-height:625px;
    object-fit:cover
}
.hero-media:before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:
        linear-gradient(90deg,#050505 0%,rgba(5,5,5,.55) 18%,rgba(5,5,5,.08) 53%,rgba(5,5,5,.08) 100%),
        linear-gradient(180deg,rgba(0,0,0,0) 64%,rgba(0,0,0,.45) 100%)
}
.hero-fallback{
    min-height:625px;
    display:grid;
    place-items:center;
    padding:50px;
    color:#D8D8D8;
    background:
        radial-gradient(circle at 40% 35%,rgba(254,93,5,.26),transparent 28%),
        linear-gradient(145deg,#202020,#080808);
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:20px;
    font-weight:700;
    text-align:center
}
.hero-controls{
    position:absolute;
    left:50%;
    bottom:28px;
    z-index:8;
    display:flex;
    gap:10px;
    transform:translateX(-50%);
    padding:10px 14px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;
    background:rgba(7,7,7,.46);
    backdrop-filter:blur(12px)
}
.hero-dot{
    width:38px;
    height:4px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.22);
    cursor:pointer;
    transition:all .25s ease
}
.hero-dot:hover{background:rgba(255,255,255,.5)}
.hero-dot.is-active{background:var(--orange);box-shadow:0 0 0 1px rgba(254,93,5,.18),0 0 18px rgba(254,93,5,.25)}
.hero-arrow{
    position:absolute;
    bottom:25px;
    top:auto;
    z-index:8;
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    color:#FFF;
    background:rgba(7,7,7,.5);
    backdrop-filter:blur(12px);
    box-shadow:0 20px 60px rgba(0,0,0,.22);
    cursor:pointer;
    transition:all .25s ease
}
.hero-arrow svg{width:18px;height:18px;stroke:currentColor;stroke-width:2.2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.hero-arrow:hover{border-color:rgba(254,93,5,.5);color:var(--orange);transform:translateY(-2px)}
.hero-prev{left:24px}
.hero-next{right:24px}

/* editorial lead */
.editorial-intro{
    padding:76px 0;
    border-bottom:1px solid var(--line);
    background:#FFF
}
.editorial-intro-grid{
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:96px;
    align-items:start
}
.eyebrow{
    color:var(--orange);
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:12px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase
}
.editorial-intro h2,
.section-head h2{
    margin:10px 0 0;
    color:#050505;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(29px,3vw,40px);
    line-height:1.1;
    letter-spacing:-.042em;
    font-weight:700
}
.editorial-intro p{
    margin:0;
    color:var(--muted);
    font-size:18px;
    line-height:1.8
}

/* sections */
.section{padding:88px 0}
.section-muted{background:var(--surface)}
.section-dark{
    color:#FFF;
    background:#070707
}
.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:38px
}
.section-head p{
    max-width:620px;
    margin:0;
    color:var(--muted);
    font-size:16px;
    line-height:1.7
}
.section-dark .section-head h2{color:#FFF}
.section-dark .section-head p{color:#9D9D9D}

/* topics */
.category-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px
}
.category-card{
    position:relative;
    min-height:230px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
    padding:24px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:18px;
    color:#FFF;
    background:
        radial-gradient(circle at 100% 0%,rgba(254,93,5,.09),transparent 32%),
        #0C0C0C;
    text-decoration:none;
    transition:.22s ease
}
.category-card:hover{
    transform:translateY(-3px);
    border-color:rgba(254,93,5,.55);
    box-shadow:0 24px 50px rgba(0,0,0,.18)
}
.category-icon{
    width:43px;
    height:43px;
    display:grid;
    place-items:center;
    border:1px solid rgba(254,93,5,.45);
    border-radius:12px;
    color:var(--orange)
}
.category-icon svg{
    width:23px;
    height:23px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round
}
.category-card .number{
    margin-top:18px;
    color:#7F7F7F;
    font-size:12px;
    font-weight:700
}
.category-card h3{
    margin:26px 0 8px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:20px;
    line-height:1.2;
    letter-spacing:-.025em
}
.category-card p{
    margin:0;
    color:#A7A7A7;
    font-size:14px;
    line-height:1.6
}
.category-link{
    margin-top:20px;
    color:var(--orange);
    font-size:13px;
    font-weight:700
}

/* article cards */
.article-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px
}
.article-card{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:20px;
    background:#FFF;
    box-shadow:0 1px 0 rgba(0,0,0,.02);
    transition:.2s ease
}
.article-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-soft)
}
.article-card-media{
    display:block;
    aspect-ratio:16/9;
    overflow:hidden;
    background:#EAEAEA
}
.article-card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .3s ease
}
.article-card:hover .article-card-media img{transform:scale(1.025)}
.article-card-placeholder{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    color:#CFCFCF;
    background:#0C0C0C;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:15px;
    font-weight:700
}
.article-card-body{padding:24px}
.kicker{
    color:var(--orange);
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase
}
.article-card h3{
    margin:11px 0 12px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:22px;
    line-height:1.22;
    letter-spacing:-.03em
}
.article-card p{
    margin:0 0 18px;
    color:var(--muted);
    font-size:15px;
    line-height:1.65
}
.primary-link{
    color:#111;
    font-size:14px;
    font-weight:700
}
.primary-link:hover{color:var(--orange)}

/* premium credibility split */
.section-head-dark h2,
.section-head-dark p{color:#FFF}
.section-head-dark p{color:#A7A7A7}
.credibility{
    padding:100px 0;
    color:#FFF;
    background:
        radial-gradient(circle at 85% 10%,rgba(254,93,5,.10),transparent 22%),
        linear-gradient(180deg,#050505 0%,#030303 100%)
}
.credibility .section-head{margin-bottom:36px}
.credibility-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:34px;
    align-items:stretch
}
.credibility-panel{
    min-height:470px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:46px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    border-radius:30px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0) 30%),
        radial-gradient(circle at 88% 12%,rgba(254,93,5,.22),transparent 30%),
        linear-gradient(145deg,#151515,#080808);
    box-shadow:0 28px 80px rgba(0,0,0,.34)
}
.credibility-panel h2{
    max-width:650px;
    margin:10px 0 18px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(34px,3vw,44px);
    line-height:1.04;
    letter-spacing:-.045em
}
.credibility-panel p{
    max-width:620px;
    margin:0;
    color:#BABABA;
    font-size:18px;
    line-height:1.78
}
.credibility-panel-metrics{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px
}
.metric-chip{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:999px;
    color:#F0F0F0;
    background:rgba(255,255,255,.03)
}
.metric-chip strong{font-size:13px;font-weight:800;letter-spacing:.01em}
.metric-icon,.credibility-card-icon{
    width:42px;height:42px;display:grid;place-items:center;
    border:1px solid rgba(254,93,5,.24);
    border-radius:14px;
    color:var(--orange);
    background:rgba(254,93,5,.06)
}
.metric-icon svg,.credibility-card-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.credibility-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px
}
.credibility-card{
    padding:26px 24px 24px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
    box-shadow:0 18px 50px rgba(0,0,0,.22)
}
.credibility-card h3{
    margin:18px 0 10px;
    color:#FFF;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:22px;
    line-height:1.15;
    letter-spacing:-.03em
}
.credibility-card p{
    margin:0;
    color:#A8A8A8;
    font-size:15px;
    line-height:1.7
}

/* CTA */
.editorial-cta{
    padding:84px 0;
    background:var(--orange);
    color:#FFF
}
.editorial-cta-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center
}
.editorial-cta h2{
    max-width:800px;
    margin:0;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(30px,3.4vw,44px);
    line-height:1.1;
    letter-spacing:-.04em
}
.editorial-cta p{
    margin:12px 0 0;
    color:rgba(255,255,255,.85);
    font-size:17px
}
.cta-actions{
    display:flex;
    justify-content:flex-end;
    gap:11px;
    flex-wrap:wrap
}
.cta-dark,
.cta-light{
    display:inline-flex;
    min-height:50px;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:10px;
    font-size:14px;
    font-weight:700;
    text-decoration:none
}
.cta-dark{background:#050505;color:#FFF}
.cta-light{border:1px solid rgba(255,255,255,.6);color:#FFF}

/* inner pages */
.category-hero,
.page-hero,
.search-hero{
    padding:64px 0 50px;
    border-bottom:1px solid var(--line);
    background:#F8F8F5
}
.category-hero h1,
.page-hero h1,
.search-hero h1{
    max-width:900px;
    margin:10px 0 17px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(34px,4vw,50px);
    line-height:1.08;
    letter-spacing:-.045em
}
.category-hero p,
.page-hero p,
.search-hero p{
    max-width:800px;
    margin:0;
    color:var(--muted);
    font-size:18px;
    line-height:1.7
}
.page-content{
    width:min(900px,calc(100% - 48px));
    margin:0 auto;
    padding:58px 0 76px;
    font-size:18px;
    line-height:1.8
}
.page-content h2{
    margin:44px 0 16px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:29px;
    line-height:1.18;
    letter-spacing:-.025em
}
.page-content p{margin:0 0 23px}
.contact-grid{
    display:grid;
    grid-template-columns:1fr .82fr;
    gap:40px;
    align-items:start
}
.contact-card{
    padding:30px;
    border:1px solid var(--line);
    border-radius:20px;
    background:var(--surface)
}
.contact-card strong{
    display:block;
    margin-bottom:7px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:18px
}
.contact-card p{
    margin:0 0 19px;
    color:var(--muted);
    font-size:16px
}
.contact-card a{color:var(--orange);font-weight:700}

/* article */
.article-wrap{
    width:min(900px,calc(100% - 48px));
    margin:0 auto
}
.article-header{padding:62px 0 36px}
.breadcrumb{
    margin-bottom:20px;
    color:var(--muted);
    font-size:14px
}
.breadcrumb a{color:var(--orange);font-weight:700}
.article-header h1{
    max-width:900px;
    margin:11px 0 22px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(36px,4.3vw,54px);
    line-height:1.07;
    letter-spacing:-.047em
}
.article-summary{
    margin:0;
    color:var(--muted);
    font-size:19px;
    line-height:1.7
}
.article-meta{
    margin-top:23px;
    color:#7E7E7E;
    font-size:14px
}
.article-cover{
    width:min(1120px,calc(100% - 48px));
    margin:0 auto 34px;
    overflow:hidden;
    border-radius:22px;
    background:#EAEAEA
}
.article-cover img{
    width:100%;
    max-height:650px;
    object-fit:cover
}
.article-content{
    padding:11px 0 74px;
    font-size:18px;
    line-height:1.82
}
.article-content p{margin:0 0 24px}
.article-content h2{
    margin:48px 0 16px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:30px;
    line-height:1.2;
    letter-spacing:-.03em
}
.article-content h3{
    margin:36px 0 13px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:25px;
    line-height:1.24;
    letter-spacing:-.02em
}
.article-content ul,
.article-content ol{
    margin:0 0 26px;
    padding-left:28px
}
.article-content li{margin-bottom:8px}
.article-content blockquote{
    margin:38px 0;
    padding:8px 0 8px 24px;
    border-left:4px solid var(--orange);
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:20px;
    line-height:1.6
}
.article-content a{
    color:var(--orange);
    font-weight:700
}
.related{
    padding:62px 0;
    border-top:1px solid var(--line);
    background:var(--surface)
}

/* search */
.search-form{
    display:flex;
    gap:10px;
    max-width:760px;
    margin-top:26px
}
.search-form input{
    flex:1;
    min-width:0;
    height:54px;
    padding:0 16px;
    border:1px solid #CFCFCF;
    border-radius:10px;
    font-size:16px
}
.search-form button{
    height:54px;
    padding:0 22px;
    border:0;
    border-radius:10px;
    color:#FFF;
    background:var(--orange);
    font-size:14px;
    font-weight:700;
    cursor:pointer
}
.empty{
    padding:38px 0;
    color:var(--muted);
    font-size:17px
}

/* whatsapp */
.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:24px;
    z-index:50;
    min-height:60px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 16px 8px 9px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:999px;
    color:#FFF;
    background:#080808;
    box-shadow:0 18px 45px rgba(0,0,0,.28),0 0 0 4px rgba(254,93,5,.12);
    text-decoration:none
}
.whatsapp-float:hover{
    box-shadow:0 20px 52px rgba(0,0,0,.34),0 0 0 5px rgba(254,93,5,.22)
}
.whatsapp-icon{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#FFF;
    background:var(--orange)
}
.whatsapp-icon svg{width:23px;height:23px;fill:currentColor}
.whatsapp-label{
    font-size:14px;
    font-weight:700
}

/* footer */
.footer{
    padding:62px 0 28px;
    color:#FFF;
    background:#050505
}
.footer-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px
}
.footer-brand{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:17px
}
.footer-logo{
    width:124px;
    height:auto
}
.footer-brand strong{
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:16px
}
.footer p{
    max-width:620px;
    margin:0;
    color:#A9A9A9;
    font-size:15px;
    line-height:1.7
}
.footer-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:22px
}
.footer-links{
    display:flex;
    justify-content:flex-end;
    gap:18px;
    flex-wrap:wrap
}
.footer-links a{
    color:#EAEAEA;
    font-size:14px;
    font-weight:600
}
.footer-links a:hover{color:var(--orange)}
.footer-socials{
    display:flex;
    gap:8px
}
.footer-bottom{
    margin-top:40px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px
}
.footer-bottom span,
.footer-bottom a{
    color:#949494;
    font-size:13px
}
.footer-bottom a:hover{color:var(--orange)}

@media(max-width:1180px){
    .header-socials{display:none}
    .desktop-nav{gap:16px}
    .category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:980px){
    .utility-bar{display:none}
    .desktop-nav{display:none}
    .menu-toggle{display:inline-grid;place-items:center}
    .mobile-nav.is-open{display:block}

    .hero-track{min-height:auto}
    .hero-slide-inner{
        min-height:0;
        grid-template-columns:1fr
    }
    .hero-copy{
        min-height:460px;
        padding:70px max(32px,calc((100vw - var(--max))/2)) 76px
    }
    .hero-copy:before{
        left:max(32px,calc((100vw - var(--max))/2));
        top:62px
    }
    .hero-media,
    .hero-media img,
    .hero-fallback{
        min-height:390px
    }
    .hero-media:before{
        background:linear-gradient(180deg,#050505 0%,rgba(5,5,5,.08) 24%,rgba(5,5,5,.15) 100%)
    }
    .editorial-intro-grid,
    .credibility-grid,
    .editorial-cta-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:38px
    }
    .article-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .cta-actions{justify-content:flex-start}
}
@media(max-width:660px){
    body{font-size:17px}
    .container,
    .article-wrap,
    .article-cover,
    .page-content{
        width:min(100% - 30px,var(--max))
    }
    .header-inner{min-height:72px}
    .portal-name{display:none}
    .brand-logo{width:112px}
    .hero-copy{
        min-height:430px;
        padding:58px 22px 66px
    }
    .hero-copy:before{
        top:49px;
        left:22px;
        width:46px
    }
    .hero-copy h1,
    .hero-copy h2{
        font-size:clamp(34px,10vw,44px)
    }
    .hero-copy p{font-size:17px}
    .hero-media,
    .hero-media img,
    .hero-fallback{
        min-height:280px
    }
        .hero-controls{
        bottom:18px;
        padding:8px 10px;
        gap:8px
    }
    .hero-dot{width:28px}
    .hero-arrow{display:none}
    .section{padding:58px 0}
    .editorial-intro{padding:56px 0}
    .editorial-intro h2,
    .section-head h2{
        font-size:28px
    }
    .editorial-intro p{font-size:17px}
    .section-head{
        align-items:flex-start;
        flex-direction:column;
        gap:18px
    }
    .category-grid,
    .article-grid{
        grid-template-columns:1fr
    }
    .category-card{min-height:205px}
    .credibility{padding:64px 0}
    .credibility-panel{
        min-height:340px;
        padding:28px
    }
    .credibility-panel h2{font-size:29px}
    .editorial-cta{padding:62px 0}
    .category-hero,
    .page-hero,
    .search-hero{
        padding:49px 0 38px
    }
    .category-hero h1,
    .page-hero h1,
    .search-hero h1{
        font-size:clamp(32px,9.5vw,42px)
    }
    .article-header{padding:48px 0 28px}
    .article-header h1{
        font-size:clamp(34px,10vw,45px)
    }
    .article-summary{font-size:17px}
    .article-content{
        font-size:17px;
        line-height:1.78
    }
    .article-content h2{font-size:27px}
    .article-content h3{font-size:23px}
    .search-form{flex-direction:column}
    .search-form button{width:100%}
    .whatsapp-float{
        right:15px;
        bottom:18px;
        padding:7px
    }
    .whatsapp-label{display:none}
    .footer-grid{grid-template-columns:1fr;gap:30px}
    .footer-right{align-items:flex-start}
    .footer-links{justify-content:flex-start}
    .footer-bottom{
        align-items:flex-start;
        flex-direction:column
    }
}


/* =========================================================
   V1.6 PREMIUM REFINEMENT
   ========================================================= */

:root{
    --max:1360px;
}

/* Barra institucional superior, agora com respiro real */
.utility-bar{
    background:#000;
    border-bottom:1px solid rgba(255,255,255,.075)
}
.utility-inner{
    min-height:48px;
    padding:7px 0;
}
.utility-copy{
    display:flex;
    align-items:center;
    gap:10px;
    color:#BDBDBD;
    font-size:14px;
    font-weight:600;
    letter-spacing:.01em
}
.utility-copy:before{
    content:"";
    width:7px;
    height:7px;
    flex:0 0 auto;
    border-radius:50%;
    background:var(--orange);
    box-shadow:0 0 0 4px rgba(254,93,5,.11)
}
.utility-socials{
    display:flex;
    align-items:center;
    gap:9px
}
.utility-social-label{
    margin-right:4px;
    color:#858585;
    font-size:13px;
    font-weight:600
}
.utility-socials .social-icon{
    width:30px;
    height:30px;
    border-color:rgba(255,255,255,.11);
    background:rgba(255,255,255,.025)
}
.utility-socials .social-icon svg{
    width:13px;
    height:13px
}

/* Navegação principal independente da utility bar */
.header-inner{
    min-height:88px
}
.brand-logo{
    width:132px
}
.portal-name{
    font-size:15px
}
.desktop-nav{
    gap:24px
}
.desktop-nav a{
    font-size:15px
}
.search-top{
    padding:10px 13px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:9px
}
.search-top:hover{
    border-color:rgba(254,93,5,.75)
}

/* Internas com padrão editorial mais forte */
.category-hero,
.page-hero,
.search-hero{
    position:relative;
    overflow:hidden;
    padding:88px 0 78px;
    color:#FFF;
    border-bottom:1px solid rgba(255,255,255,.08);
    background-color:#060606;
    background-image:
        linear-gradient(90deg,rgba(5,5,5,.9) 0%,rgba(5,5,5,.78) 42%,rgba(5,5,5,.68) 100%),
        radial-gradient(circle at 88% 14%,rgba(254,93,5,.28),transparent 26%),
        var(--hero-bg-image, linear-gradient(145deg,#0B0B0B 0%,#050505 70%));
    background-size:cover,cover,cover;
    background-position:center center,center center,center center
}
.category-hero:before,
.page-hero:before,
.search-hero:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(120deg,rgba(255,255,255,.04) 0%,rgba(255,255,255,0) 28%),
        radial-gradient(circle at 15% 20%,rgba(254,93,5,.14),transparent 24%)
}
.category-hero:after,
.page-hero:after,
.search-hero:after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.14;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
    background-size:54px 54px
}
.category-hero > .container,
.page-hero > .container,
.search-hero > .container{
    position:relative;
    z-index:2
}
.category-hero h1,
.page-hero h1,
.search-hero h1{
    color:#FFF;
    max-width:760px;
    margin-bottom:18px;
    text-wrap:balance
}
.category-hero p,
.page-hero p,
.search-hero p{
    color:#D2D2D2;
    max-width:760px;
    font-size:19px;
    line-height:1.75
}
.category-hero .eyebrow,
.page-hero .eyebrow,
.search-hero .eyebrow{
    color:var(--orange)
}

.category-hero-grid{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) 220px;
    gap:32px;
    align-items:center
}
.category-hero-icon{
    width:74px;
    height:74px;
    display:grid;
    place-items:center;
    border:1px solid rgba(254,93,5,.42);
    border-radius:20px;
    color:var(--orange);
    background:rgba(254,93,5,.055)
}
.category-hero-icon svg{
    width:34px;
    height:34px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round
}
.category-stat{
    padding-left:28px;
    border-left:1px solid rgba(255,255,255,.13)
}
.category-stat strong{
    display:block;
    color:#FFF;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:36px;
    line-height:1
}
.category-stat span{
    display:block;
    margin-top:8px;
    color:#8F8F8F;
    font-size:14px;
    line-height:1.45
}

/* About */
.about-layout{
    width:min(var(--max),calc(100% - 64px));
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
    gap:74px;
    padding:72px 0 86px
}
.about-copy{
    max-width:820px;
    font-size:18px;
    line-height:1.82
}
.about-copy p{
    margin:0 0 24px
}
.about-copy h2{
    margin:45px 0 17px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:30px;
    letter-spacing:-.03em
}
.about-principles{
    display:grid;
    gap:12px;
    align-self:start;
    position:sticky;
    top:128px
}
.principle-card{
    padding:23px;
    border:1px solid var(--line);
    border-radius:18px;
    background:var(--surface)
}
.principle-card .index{
    color:var(--orange);
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:12px;
    font-weight:800
}
.principle-card strong{
    display:block;
    margin:13px 0 7px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:18px
}
.principle-card p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.65
}

/* Contact */
.contact-premium{
    width:min(var(--max),calc(100% - 64px));
    margin:0 auto;
    padding:72px 0 88px
}
.contact-intro-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(320px,.72fr);
    gap:66px;
    align-items:start
}
.contact-intro-grid h2{
    margin:9px 0 16px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:31px;
    letter-spacing:-.035em
}
.contact-intro-grid p{
    max-width:700px;
    margin:0;
    color:var(--muted);
    font-size:17px;
    line-height:1.75
}
.contact-methods{
    display:grid;
    gap:12px
}
.contact-method{
    padding:23px 24px;
    border:1px solid var(--line);
    border-radius:17px;
    background:#FFF
}
.contact-method small{
    display:block;
    margin-bottom:7px;
    color:var(--orange);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.1em
}
.contact-method strong,
.contact-method a{
    color:#111;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:17px;
    font-weight:700;
    text-decoration:none
}
.contact-method a:hover{
    color:var(--orange)
}

/* Article premium */
.article-header{
    position:relative;
    padding:72px 0 42px;
    background:#F8F8F5;
    border-bottom:1px solid var(--line)
}
.article-header h1{
    max-width:840px
}
.article-meta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center
}
.article-meta-chip{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:6px 11px;
    border:1px solid #DFDFDB;
    border-radius:999px;
    background:#FFF;
    color:#606060;
    font-size:13px
}
.article-cover{
    margin-top:36px;
    box-shadow:0 26px 75px rgba(0,0,0,.09)
}
.article-content{
    padding-top:38px
}

/* Search */
.search-form input{
    border:0;
    box-shadow:0 0 0 1px rgba(255,255,255,.18);
    background:#111;
    color:#FFF
}
.search-form input::placeholder{
    color:#777
}

/* Admin parity */
@media(max-width:980px){
    .category-hero-grid{
        grid-template-columns:auto minmax(0,1fr)
    }
    .category-stat{
        grid-column:1 / -1;
        padding:22px 0 0;
        border-left:0;
        border-top:1px solid rgba(255,255,255,.13)
    }
    .about-layout,
    .contact-intro-grid{
        grid-template-columns:1fr
    }
    .about-principles{
        position:static
    }
}
@media(max-width:660px){
    .utility-bar{
        display:none
    }
    .header-inner{
        min-height:76px
    }
    .category-hero,
    .page-hero,
    .search-hero{
        padding:52px 0 42px
    }
    .category-hero-grid{
        grid-template-columns:1fr;
        gap:20px
    }
    .category-hero-icon{
        width:58px;
        height:58px;
        border-radius:16px
    }
    .category-hero-icon svg{
        width:28px;
        height:28px
    }
    .category-stat{
        grid-column:auto
    }
    .about-layout,
    .contact-premium{
        width:min(100% - 30px,var(--max));
        padding:54px 0 66px
    }
    .article-meta{
        gap:8px
    }
}


/* =========================================================
   V1.7 AUTHORITY ENGINE
   ========================================================= */

/* V2.6.2 fail-safe: conteúdo editorial nunca depende de JavaScript para ficar visível. */
[data-reveal]{
    opacity:1;
    transform:none
}
[data-reveal].is-revealed{
    opacity:1;
    transform:none
}
@media(prefers-reduced-motion:reduce){
    *,*:before,*:after{
        scroll-behavior:auto!important;
        transition-duration:.01ms!important;
        animation-duration:.01ms!important;
        animation-iteration-count:1!important
    }
    [data-reveal]{opacity:1;transform:none}
}

/* About premium image story */
.about-story{
    width:min(var(--max),calc(100% - 64px));
    margin:0 auto;
    padding:78px 0 92px
}
.about-feature{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
    gap:74px;
    align-items:center
}
.about-visual{
    position:relative;
    overflow:hidden;
    min-height:520px;
    border-radius:28px;
    background:#0C0C0C;
    box-shadow:0 34px 90px rgba(0,0,0,.13)
}
.about-visual img{
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover
}
.about-visual:after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(0,0,0,0) 55%,rgba(0,0,0,.4) 100%)
}
.about-copy-premium{
    font-size:18px;
    line-height:1.82
}
.about-copy-premium h2{
    margin:10px 0 22px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:34px;
    line-height:1.13;
    letter-spacing:-.04em
}
.about-copy-premium p{
    margin:0 0 23px;
    color:#575757
}
.about-pillars{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    margin-top:54px
}
.about-pillar{
    padding:25px;
    border:1px solid var(--line);
    border-radius:19px;
    background:var(--surface)
}
.premium-icon-box{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border:1px solid rgba(254,93,5,.25);
    border-radius:13px;
    color:var(--orange);
    background:rgba(254,93,5,.045)
}
.premium-icon-box svg{
    width:23px;
    height:23px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.65;
    stroke-linecap:round;
    stroke-linejoin:round
}
.about-pillar strong{
    display:block;
    margin:21px 0 8px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:18px
}
.about-pillar p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.68
}

/* Contact premium */
.contact-stage{
    width:min(var(--max),calc(100% - 64px));
    margin:0 auto;
    padding:76px 0 94px
}
.contact-stage-grid{
    display:grid;
    grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr);
    gap:56px;
    align-items:start
}
.contact-side{
    display:grid;
    gap:18px
}
.contact-image{
    position:relative;
    overflow:hidden;
    min-height:340px;
    border-radius:25px;
    background:#0C0C0C;
    box-shadow:0 26px 70px rgba(0,0,0,.1)
}
.contact-image img{
    width:100%;
    height:100%;
    min-height:340px;
    object-fit:cover
}
.contact-image:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.4))
}
.contact-data-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px
}
.contact-data-card{
    min-height:145px;
    padding:21px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#FFF;
    transition:.2s ease
}
.contact-data-card:hover{
    transform:translateY(-2px);
    border-color:#D1D1CC;
    box-shadow:0 18px 38px rgba(0,0,0,.055)
}
.contact-data-card small{
    display:block;
    margin:15px 0 5px;
    color:#8A8A8A;
    font-size:11px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase
}
.contact-data-card strong,
.contact-data-card a{
    color:#111;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:15px;
    line-height:1.45;
    font-weight:700;
    text-decoration:none;
    word-break:break-word
}
.contact-data-card a:hover{color:var(--orange)}

.contact-form-card{
    padding:34px;
    border:1px solid var(--line);
    border-radius:24px;
    background:#F8F8F5
}
.contact-form-card h2{
    margin:9px 0 10px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:31px;
    line-height:1.13;
    letter-spacing:-.035em
}
.contact-form-card > p{
    margin:0 0 25px;
    color:var(--muted);
    font-size:16px;
    line-height:1.7
}
.public-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px
}
.public-form-grid .full{grid-column:1/-1}
.public-form label{
    display:block;
    margin-bottom:7px;
    color:#303030;
    font-size:13px;
    font-weight:700
}
.public-form input,
.public-form textarea,
.public-form select{
    width:100%;
    min-height:52px;
    padding:12px 14px;
    border:1px solid #D2D2CD;
    border-radius:11px;
    color:#111;
    background:#FFF;
    font:inherit;
    font-size:16px
}
.public-form textarea{
    min-height:150px;
    resize:vertical
}
.public-form input:focus,
.public-form textarea:focus,
.public-form select:focus{
    border-color:var(--orange);
    outline:3px solid rgba(254,93,5,.1)
}
.public-submit{
    min-height:52px;
    padding:12px 19px;
    border:0;
    border-radius:10px;
    color:#FFF;
    background:#050505;
    font-size:14px;
    font-weight:750;
    cursor:pointer
}
.public-submit:hover{background:var(--orange)}
.form-success,
.form-error{
    margin-bottom:18px;
    padding:14px 16px;
    border-radius:11px;
    font-size:15px
}
.form-success{color:#176536;background:#ECFDF3}
.form-error{color:#A11D15;background:#FFF0EF}
.hp-field{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important
}

/* Search intelligence */
.search-insights{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:22px
}
.search-chip{
    display:inline-flex;
    min-height:38px;
    align-items:center;
    padding:8px 13px;
    border:1px solid rgba(255,255,255,.17);
    border-radius:999px;
    color:#D9D9D9;
    background:rgba(255,255,255,.025);
    font-size:13px;
    font-weight:650;
    text-decoration:none
}
.search-chip:hover{
    border-color:var(--orange);
    color:#FFF
}
.search-categories{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-bottom:30px
}
.search-category-link{
    display:inline-flex;
    min-height:40px;
    align-items:center;
    padding:8px 13px;
    border:1px solid var(--line);
    border-radius:999px;
    background:#FFF;
    font-size:13px;
    font-weight:700;
    text-decoration:none
}
.search-category-link:hover{
    color:var(--orange);
    border-color:#D1D1CC
}

/* Article share / virality */
.article-share{
    width:min(900px,calc(100% - 48px));
    margin:0 auto 34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:15px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line)
}
.article-share-label{
    color:#777;
    font-size:13px;
    font-weight:700
}
.share-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px
}
.share-button{
    min-height:38px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 11px;
    border:1px solid var(--line);
    border-radius:999px;
    color:#333;
    background:#FFF;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    cursor:pointer
}
.share-button:hover{
    color:var(--orange);
    border-color:#D0D0CB
}
.share-button svg{
    width:15px;
    height:15px;
    fill:currentColor
}

/* Empty categories intentional */
.empty-premium{
    padding:48px;
    border:1px solid var(--line);
    border-radius:20px;
    background:var(--surface);
    text-align:center
}
.empty-premium strong{
    display:block;
    margin:0 0 8px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:21px
}
.empty-premium p{
    max-width:620px;
    margin:0 auto;
    color:var(--muted);
    font-size:16px
}

@media(max-width:980px){
    .about-feature,
    .contact-stage-grid{
        grid-template-columns:1fr
    }
    .about-visual{
        min-height:430px
    }
}
@media(max-width:720px){
    .about-pillars{
        grid-template-columns:1fr
    }
    .contact-data-grid,
    .public-form-grid{
        grid-template-columns:1fr
    }
    .public-form-grid .full{grid-column:auto}
    .article-share{
        align-items:flex-start;
        flex-direction:column
    }
}
@media(max-width:660px){
    .about-story,
    .contact-stage{
        width:min(100% - 30px,var(--max));
        padding:54px 0 66px
    }
    .about-visual,
    .about-visual img{
        min-height:300px
    }
    .contact-image,
    .contact-image img{
        min-height:260px
    }
    .contact-form-card{
        padding:25px 19px
    }
}


/* =========================================================
   V1.9 SMART SEARCH EXPERIENCE
   ========================================================= */
.search-form-premium{
    width:min(100%,900px);
    max-width:900px;
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:12px;
    margin-top:30px
}
.search-input-wrap{
    position:relative;
    min-width:0
}
.search-form-premium .search-input-wrap input{
    width:100%;
    height:62px;
    padding:0 52px 0 52px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:15px;
    color:#FFF;
    background:rgba(12,12,12,.78);
    box-shadow:0 18px 48px rgba(0,0,0,.18);
    backdrop-filter:blur(12px);
    font-size:17px;
    outline:none;
    transition:border-color .2s ease,box-shadow .2s ease,background .2s ease
}
.search-form-premium .search-input-wrap input:focus{
    border-color:rgba(254,93,5,.7);
    background:rgba(8,8,8,.92);
    box-shadow:0 0 0 4px rgba(254,93,5,.1),0 22px 55px rgba(0,0,0,.24)
}
.search-input-icon{
    position:absolute;
    left:18px;
    top:50%;
    z-index:2;
    width:21px;
    height:21px;
    display:grid;
    place-items:center;
    color:#A9A9A9;
    transform:translateY(-50%);
    pointer-events:none
}
.search-input-icon svg{
    width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round
}
.search-clear{
    position:absolute;
    right:13px;
    top:50%;
    z-index:3;
    width:34px;
    height:34px;
    min-height:0;
    padding:0;
    border:0;
    border-radius:50%;
    color:#AAA;
    background:rgba(255,255,255,.07);
    font-size:21px;
    line-height:1;
    transform:translateY(-50%);
    cursor:pointer
}
.search-clear:hover{color:#FFF;background:rgba(255,255,255,.12)}
.search-submit{
    height:62px;
    min-width:142px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:0 22px;
    border:0;
    border-radius:15px;
    color:#FFF;
    background:var(--orange);
    box-shadow:0 18px 38px rgba(254,93,5,.18);
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    cursor:pointer
}
.search-submit svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.search-submit:hover{transform:translateY(-1px);box-shadow:0 22px 44px rgba(254,93,5,.26)}
.search-helper{
    margin-top:10px;
    color:#858585;
    font-size:12px;
    font-weight:600
}
.search-suggestions{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 8px);
    z-index:45;
    max-height:390px;
    overflow:auto;
    padding:8px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:16px;
    background:rgba(8,8,8,.97);
    box-shadow:0 28px 75px rgba(0,0,0,.42);
    backdrop-filter:blur(18px)
}
.search-suggestion-item{
    display:grid;
    grid-template-columns:38px minmax(0,1fr);
    gap:12px;
    align-items:center;
    padding:11px 12px;
    border-radius:11px;
    color:#FFF;
    text-decoration:none
}
.search-suggestion-item:hover,
.search-suggestion-item.is-active{
    background:rgba(255,255,255,.075)
}
.search-suggestion-icon{
    width:36px;height:36px;display:grid;place-items:center;
    border:1px solid rgba(254,93,5,.28);
    border-radius:10px;
    color:var(--orange);
    background:rgba(254,93,5,.055);
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:11px;
    font-weight:800
}
.search-suggestion-copy{min-width:0}
.search-suggestion-copy strong{
    display:block;
    overflow:hidden;
    color:#F4F4F4;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:14px;
    line-height:1.35;
    text-overflow:ellipsis;
    white-space:nowrap
}
.search-suggestion-copy small{
    display:block;
    margin-top:4px;
    color:#888;
    font-size:12px
}

@media(max-width:660px){
    .search-hero .container{width:calc(100% - 28px)}
    .search-form-premium{
        width:100%;
        max-width:none;
        grid-template-columns:1fr;
        gap:10px;
        margin-top:24px
    }
    .search-form-premium .search-input-wrap,
    .search-form-premium .search-input-wrap input{
        width:100%;
        min-width:0
    }
    .search-form-premium .search-input-wrap input{
        height:64px;
        padding-left:50px;
        padding-right:48px;
        font-size:16px;
        border-radius:14px
    }
    .search-submit{
        width:100%;
        height:56px;
        min-width:0;
        border-radius:14px
    }
    .search-helper{display:none}
    .search-suggestions{
        max-height:330px;
        border-radius:14px
    }
}


.footer-cta-note{color:rgba(255,255,255,.82)}

@media(max-width:980px){
    .credibility-grid{grid-template-columns:1fr;gap:20px}
    .credibility-cards{grid-template-columns:1fr 1fr}
    .credibility-panel{min-height:unset}
}
@media(max-width:660px){
    .credibility{padding:72px 0}
    .credibility .section-head{margin-bottom:24px}
    .credibility-cards{grid-template-columns:1fr}
    .credibility-card{padding:22px 20px;border-radius:20px}
    .credibility-panel{padding:28px 22px;border-radius:24px}
    .credibility-panel h2{font-size:31px}
    .credibility-panel p{font-size:16px;line-height:1.72}
    .metric-chip{width:100%;justify-content:flex-start}
    .search-hero .container{width:calc(100% - 22px)}
    .search-form-premium{gap:12px}
    .search-form-premium .search-input-wrap input{height:66px;font-size:17px;padding-left:48px;padding-right:48px}
    .search-submit{height:58px;font-size:14px}
}


/* =========================================================
   V2.2 DYNAMIC BLOG + RESPONSIVE MEDIA
   ========================================================= */
.article-card-media{aspect-ratio:1/1}
.article-card-media picture,.article-card-media picture img{display:block;width:100%;height:100%}
.article-card-media picture img{object-fit:cover}
.article-cover-square{width:min(860px,calc(100% - 48px));aspect-ratio:1/1;max-height:none}
.article-cover-square picture,.article-cover-square img{display:block;width:100%;height:100%}
.article-cover-square img{max-height:none;object-fit:cover}
.pagination{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;margin:42px 0 0}
.pagination a,.pagination span{min-width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;padding:0 12px;border:1px solid var(--line);border-radius:11px;background:#FFF;color:#333;font-size:14px;font-weight:700;text-decoration:none}
.pagination .is-current{border-color:#111;background:#111;color:#FFF}
.pagination a:hover{border-color:var(--orange);color:var(--orange)}
.pagination .pagination-arrow{min-width:auto}
.responsive-hero-bg{background-image:linear-gradient(90deg,rgba(5,5,5,.9) 0%,rgba(5,5,5,.78) 42%,rgba(5,5,5,.68) 100%),radial-gradient(circle at 88% 14%,rgba(254,93,5,.28),transparent 26%),var(--hero-bg-image)!important}
/* Remove o botão/cancelamento nativo que alguns navegadores mobile pintam sobre a busca */
.search-form-premium input[type="search"]{-webkit-appearance:none;appearance:none;background-clip:padding-box}
.search-form-premium input[type="search"]::-webkit-search-decoration,
.search-form-premium input[type="search"]::-webkit-search-cancel-button,
.search-form-premium input[type="search"]::-webkit-search-results-button,
.search-form-premium input[type="search"]::-webkit-search-results-decoration{display:none;-webkit-appearance:none}
.search-form-premium input:-webkit-autofill,
.search-form-premium input:-webkit-autofill:hover,
.search-form-premium input:-webkit-autofill:focus{-webkit-text-fill-color:#FFF;-webkit-box-shadow:0 0 0 1000px #0B0B0B inset!important;transition:background-color 9999s ease-out 0s}
@media(max-width:760px){
    .responsive-hero-bg{background-image:linear-gradient(180deg,rgba(5,5,5,.82) 0%,rgba(5,5,5,.72) 100%),var(--hero-bg-mobile)!important;background-position:center center!important}
    .article-cover-square{width:calc(100% - 30px)}
    .pagination{gap:6px;margin-top:30px}.pagination a,.pagination span{min-width:38px;height:38px;padding:0 10px}.pagination .pagination-arrow{width:100%;margin-top:3px}
    .search-clear{right:10px;width:32px;height:32px;background:rgba(255,255,255,.06);color:#D9D9D9}
}


/* =========================================================
   V2.4 NATIONAL EDITORIAL EXPERIENCE
   ========================================================= */
.article-grid-4{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.article-card-compact{border-radius:16px;box-shadow:0 1px 0 rgba(0,0,0,.025);min-width:0}
.article-card-compact .article-card-body{padding:18px 18px 20px}
.article-card-compact .kicker{font-size:10px;letter-spacing:.11em}
.article-card-compact h3{margin:9px 0 10px;font-size:18px;line-height:1.24;letter-spacing:-.025em}
.article-card-compact p{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;margin-bottom:14px;font-size:14px;line-height:1.55}
.article-card-compact .primary-link{font-size:13px}

.blog-hero{padding:78px 0 66px}
.blog-hero h1{max-width:800px}
.blog-hero-metrics{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.blog-hero-metrics span{display:inline-flex;align-items:center;gap:6px;min-height:40px;padding:9px 13px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:#CFCFCF;background:rgba(5,5,5,.35);font-size:13px;backdrop-filter:blur(8px)}
.blog-hero-metrics strong{color:#FFF;font-family:var(--font-title,"Manrope",sans-serif)}
.blog-featured{padding-bottom:72px}
.blog-featured-grid .article-card-media{aspect-ratio:1/1}
.blog-categories-index,.home-editorial-hub{background:#FFF}
.editorial-hub-heading{padding-top:78px;margin-bottom:28px}
.category-shelf{padding:44px 0;border-top:1px solid var(--line)}
.category-shelf:nth-of-type(even){background:#FAFAFA}
.category-shelf-head{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:20px}
.category-shelf-title{display:flex;align-items:center;gap:14px;min-width:0}
.category-shelf-icon{width:48px;height:48px;display:grid;place-items:center;flex:0 0 auto;border:1px solid rgba(254,93,5,.16);border-radius:15px;color:var(--orange);background:rgba(254,93,5,.055)}
.category-shelf-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.shelf-label{display:block;margin-bottom:4px;color:#8B8B8B;font-size:11px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.category-shelf-title h3{margin:0;font-family:var(--font-title,"Manrope",sans-serif);font-size:25px;line-height:1.08;letter-spacing:-.035em}
.shelf-all{display:inline-flex;align-items:center;gap:9px;flex:0 0 auto;color:#191919;font-size:13px;font-weight:800;text-decoration:none}
.shelf-all span{color:var(--orange);font-size:18px;transition:transform .2s ease}
.shelf-all:hover{color:var(--orange)}.shelf-all:hover span{transform:translateX(3px)}
.category-shelf-grid .article-card-media{aspect-ratio:1/1}
.blog-all{padding-top:82px;background:#F7F7F7}
.blog-category-chips{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:7px;max-width:680px}
.blog-category-chips a{display:inline-flex;align-items:center;min-height:36px;padding:7px 11px;border:1px solid #E1E1E1;border-radius:999px;color:#575757;background:#FFF;font-size:12px;font-weight:700;text-decoration:none}
.blog-category-chips a:hover{border-color:rgba(254,93,5,.45);color:var(--orange)}
.home-editorial-hub{padding-bottom:0}

@media(max-width:1180px){
  .article-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){
  .blog-hero{padding:62px 0 52px}
  .blog-hero-metrics{gap:7px;margin-top:20px}.blog-hero-metrics span{font-size:12px;min-height:36px;padding:7px 10px}
  .article-grid-4{grid-template-columns:1fr;gap:12px}
  .article-grid-4 .article-card-compact{display:grid;grid-template-columns:112px minmax(0,1fr);min-height:112px;border-radius:15px}
  .article-grid-4 .article-card-compact .article-card-media{width:112px;height:100%;min-height:112px;aspect-ratio:auto}
  .article-grid-4 .article-card-compact .article-card-body{padding:13px 14px}
  .article-grid-4 .article-card-compact h3{font-size:16px;line-height:1.25;margin:6px 0 8px}
  .article-grid-4 .article-card-compact p{display:none}
  .article-grid-4 .article-card-compact .primary-link{font-size:12px}
  .category-shelf{padding:34px 0}
  .category-shelf-head{align-items:flex-start;margin-bottom:16px}
  .category-shelf-icon{width:42px;height:42px;border-radius:13px}
  .category-shelf-title{gap:11px}.category-shelf-title h3{font-size:21px}
  .shelf-all{font-size:12px;white-space:nowrap}
  .editorial-hub-heading{padding-top:60px}
  .blog-category-chips{justify-content:flex-start;max-width:none}
  .blog-all{padding-top:60px}
}

/* =========================================================
   V2.5 NATIONAL EDITORIAL UX
   ========================================================= */

/* Correção definitiva da busca mobile: o botão de limpar não herda o botão laranja do formulário. */
.search-form-premium button.search-clear,
.sidebar-search-form button.search-clear{
    position:absolute!important;
    right:12px!important;
    top:50%!important;
    z-index:6!important;
    width:34px!important;
    min-width:34px!important;
    height:34px!important;
    min-height:34px!important;
    padding:0!important;
    border:0!important;
    border-radius:50%!important;
    color:#D4D4D4!important;
    background:rgba(255,255,255,.08)!important;
    box-shadow:none!important;
    font-size:20px!important;
    line-height:34px!important;
    text-align:center!important;
    transform:translateY(-50%)!important;
    cursor:pointer
}
.search-form-premium button.search-clear[hidden],
.sidebar-search-form button.search-clear[hidden]{display:none!important}
.search-form-premium button.search-clear:hover,
.sidebar-search-form button.search-clear:hover{color:#FFF!important;background:rgba(255,255,255,.14)!important}
.search-form-premium input[type="text"]{-webkit-appearance:none;appearance:none;background-clip:padding-box}
.search-form-premium input:-webkit-autofill,
.search-form-premium input:-webkit-autofill:hover,
.search-form-premium input:-webkit-autofill:focus{-webkit-text-fill-color:#FFF;-webkit-box-shadow:0 0 0 1000px #0B0B0B inset!important;transition:background-color 9999s ease-out 0s}

/* Carrossel editorial logo após o hero */
.latest-carousel-section{
    padding:34px 0 38px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:#FFF
}
.latest-carousel-head{
    display:flex;align-items:end;justify-content:space-between;gap:28px;
    margin-bottom:18px
}
.latest-carousel-head h2{
    margin:5px 0 0;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:clamp(23px,2.2vw,31px);
    line-height:1.1;letter-spacing:-.035em
}
.latest-carousel-actions{display:flex;align-items:center;gap:8px}
.latest-carousel-actions .primary-link{margin-right:6px;white-space:nowrap}
.latest-carousel-actions button{
    width:44px;height:44px;display:grid;place-items:center;padding:0;
    border:1px solid #DEDEDA;border-radius:12px;background:#FFF;color:#181818;cursor:pointer
}
.latest-carousel-actions button:hover{border-color:#C8C8C2;background:#F7F7F4}
.latest-carousel-actions svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.latest-carousel-viewport{overflow:hidden;touch-action:pan-y}
.latest-carousel-track{
    display:flex;gap:14px;
    transform:translate3d(0,0,0);
    transition:transform .5s cubic-bezier(.22,.72,.25,1);
    will-change:transform
}
.latest-carousel-card{
    flex:0 0 calc((100% - 56px)/5);
    min-width:0;
    overflow:hidden;
    border:1px solid #E2E2DE;
    border-radius:15px;
    background:#FFF
}
.latest-carousel-media{display:block;aspect-ratio:1/1;overflow:hidden;background:#111;text-decoration:none}
.latest-carousel-media picture,.latest-carousel-media img{display:block;width:100%;height:100%}
.latest-carousel-media img{object-fit:cover;transition:transform .35s ease}
.latest-carousel-card:hover .latest-carousel-media img{transform:scale(1.025)}
.latest-carousel-copy{padding:13px 14px 15px}
.latest-carousel-copy .kicker{font-size:9px;letter-spacing:.1em}
.latest-carousel-copy h3{margin:7px 0 11px;font-family:var(--font-title,"Manrope",sans-serif);font-size:15px;line-height:1.25;letter-spacing:-.02em}
.latest-carousel-copy h3 a{color:#111;text-decoration:none}
.latest-carousel-copy .primary-link{font-size:12.5px}
.latest-carousel-progress{height:2px;margin-top:18px;overflow:hidden;border-radius:999px;background:#EAEAE6}
.latest-carousel-progress span{display:block;width:20%;height:100%;border-radius:inherit;background:var(--orange);transform-origin:left center;transition:width .35s ease}

/* Página individual com coluna editorial lateral */
.article-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(310px,350px);
    gap:54px;
    align-items:start;
    padding-top:38px;
    padding-bottom:70px
}
.article-main-column{min-width:0}
.article-layout .article-cover-square{
    width:100%;
    max-width:none;
    margin:0 0 28px;
    border-radius:18px;
    box-shadow:0 24px 70px rgba(0,0,0,.08)
}
.article-layout .article-share{
    width:100%;max-width:none;
    margin:0 0 24px
}
.article-layout .article-content{
    width:100%;max-width:none;
    padding:14px 0 0;
    font-size:18px;
    line-height:1.82
}
.article-layout .article-content > :first-child{margin-top:0}
.article-layout .article-content h2{margin-top:48px}
.article-sidebar{min-width:0}
.article-sidebar-sticky{position:sticky;top:118px;display:grid;gap:18px}
.sidebar-search-card,
.sidebar-related{
    border:1px solid #E1E1DD;
    border-radius:18px;
    background:#FFF;
    box-shadow:0 16px 45px rgba(0,0,0,.035)
}
.sidebar-search-card{padding:22px}
.sidebar-search-card h2,
.sidebar-related h2{
    margin:6px 0 15px;
    font-family:var(--font-title,"Manrope",sans-serif);
    font-size:21px;line-height:1.15;letter-spacing:-.03em
}
.sidebar-search-form{display:grid;gap:9px;margin:0}
.sidebar-search-form .search-input-wrap{position:relative;min-width:0}
.sidebar-search-form input{
    width:100%;height:52px;padding:0 48px 0 14px;
    border:1px solid #D9D9D4;border-radius:11px;
    background:#F8F8F5;color:#222;font-size:15px;outline:none
}
.sidebar-search-form input:focus{border-color:rgba(254,93,5,.7);box-shadow:0 0 0 3px rgba(254,93,5,.08);background:#FFF}
.sidebar-search-form button.search-clear{color:#707070!important;background:#ECECE8!important}
.sidebar-search-form button.search-clear:hover{color:#111!important;background:#E4E4DF!important}
.sidebar-search-submit{
    width:100%;height:48px;border:0;border-radius:11px;background:#111;color:#FFF;
    font-size:13px;font-weight:800;cursor:pointer
}
.sidebar-search-submit:hover{background:var(--orange)}
.sidebar-search-form .search-suggestions{left:0;right:0;top:calc(100% + 7px);z-index:60}
.sidebar-related{padding:20px}
.sidebar-related-head{display:flex;align-items:end;justify-content:space-between;gap:12px;margin-bottom:8px}
.sidebar-related-head h2{margin-bottom:0}
.sidebar-related-head > a{flex:0 0 auto;color:#555;font-size:11px;font-weight:800}
.sidebar-related-list{display:grid}
.sidebar-post-card{
    display:grid;grid-template-columns:82px minmax(0,1fr);gap:12px;align-items:start;
    padding:13px 0;border-top:1px solid #ECECE8
}
.sidebar-post-card:first-child{border-top:0}
.sidebar-post-media{display:block;width:82px;height:82px;overflow:hidden;border-radius:11px;background:#111;text-decoration:none}
.sidebar-post-media img{display:block;width:100%;height:100%;object-fit:cover}
.sidebar-post-copy{min-width:0}
.sidebar-post-copy .kicker{font-size:8.5px;letter-spacing:.09em}
.sidebar-post-copy h3{margin:5px 0 7px;font-family:var(--font-title,"Manrope",sans-serif);font-size:13.5px;line-height:1.28;letter-spacing:-.015em}
.sidebar-post-copy h3 a{color:#171717;text-decoration:none}
.sidebar-post-copy .primary-link{font-size:11.5px}

@media(max-width:1180px){
    .latest-carousel-card{flex-basis:calc((100% - 42px)/4)}
    .article-layout{grid-template-columns:minmax(0,1fr) 310px;gap:36px}
}
@media(max-width:980px){
    .article-layout{grid-template-columns:1fr;gap:36px;padding-top:28px}
    .article-sidebar-sticky{position:static}
    .article-sidebar{border-top:1px solid var(--line);padding-top:30px}
    .sidebar-related-list{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:22px}
}
@media(max-width:760px){
    .latest-carousel-section{padding:27px 0 31px}
    .latest-carousel-head{align-items:flex-start;flex-direction:column;gap:12px;margin-bottom:15px}
    .latest-carousel-actions{width:100%;justify-content:space-between}
    .latest-carousel-actions button{display:none}
    .latest-carousel-card{
        flex-basis:100%;
        display:grid;grid-template-columns:118px minmax(0,1fr);
        min-height:118px;border-radius:14px
    }
    .latest-carousel-media{width:118px;height:100%;min-height:118px;aspect-ratio:auto}
    .latest-carousel-copy{padding:13px 14px}
    .latest-carousel-copy h3{font-size:16px;line-height:1.25;margin:6px 0 10px}
    .latest-carousel-copy .primary-link{font-size:14.5px;line-height:1.3}
    .latest-carousel-progress{margin-top:14px}
    .article-layout{width:calc(100% - 30px);padding-bottom:52px}
    .article-layout .article-cover-square{width:100%;margin-bottom:20px;border-radius:15px}
    .article-layout .article-content{font-size:17px;line-height:1.78;padding-top:8px}
    .article-layout .article-content h2{margin-top:39px;font-size:28px}
    .article-layout .article-content h3{font-size:23px}
    .article-sidebar{padding-top:24px}
    .sidebar-search-card,.sidebar-related{border-radius:16px}
    .sidebar-search-card{padding:20px 17px}
    .sidebar-related{padding:18px 16px}
    .sidebar-related-list{grid-template-columns:1fr}
    .sidebar-post-card{grid-template-columns:96px minmax(0,1fr);gap:13px}
    .sidebar-post-media{width:96px;height:96px}
    .sidebar-post-copy h3{font-size:15px}
    .sidebar-post-copy .primary-link{font-size:14px}
    .article-grid-4 .article-card-compact .primary-link{font-size:14px}
    .search-form-premium button.search-clear{right:10px!important;width:34px!important;min-width:34px!important}
}
@media(prefers-reduced-motion:reduce){
    .latest-carousel-track{transition:none}
    .latest-carousel-media img{transition:none}
}


/* V2.6 — Refinamento global, densidade editorial e tema administrável */
body{background:var(--theme-page,#fff);font-size:17px;line-height:1.54}
.site-header{background:color-mix(in srgb,var(--theme-header,#050505) 97%,transparent)}
.footer{background:var(--theme-footer,#050505)}
.container{width:min(var(--max),calc(100% - 56px))}
.section{padding-top:64px;padding-bottom:64px}
.section-head{margin-bottom:26px}
.section-head h2{font-size:clamp(28px,2.4vw,40px);line-height:1.08}
.section-head p{line-height:1.52}

/* Botão editorial discreto e premium */
.content-read-button{display:inline-flex;align-items:center;gap:8px;width:max-content;margin-top:4px;padding:8px 11px;border:1px solid #E5E2DC;border-radius:9px;background:#F7F5F1;color:#161616;text-decoration:none;font-size:12.5px;font-weight:800;line-height:1;transition:.2s ease}
.content-read-button span{color:var(--orange);font-size:14px;transition:transform .2s ease}
.content-read-button:hover{border-color:#D7D0C7;background:#FFF;box-shadow:0 8px 22px rgba(0,0,0,.055)}
.content-read-button:hover span{transform:translateX(2px)}

/* Topo de matéria compacto, mais largo e com nuance areia */
.article-header{padding:38px 0 30px;background:radial-gradient(circle at 82% 8%,rgba(214,194,165,.18),transparent 31%),linear-gradient(135deg,#FCFBF8 0%,#F6F2EA 54%,#FAF9F6 100%);border-bottom:1px solid #EEEAE2}
.article-header .article-wrap{width:min(1120px,calc(100% - 56px));margin:0 auto}
.article-header h1{max-width:1040px;margin:11px 0 13px;font-size:clamp(36px,3.45vw,56px);line-height:1.035;letter-spacing:-.045em}
.article-summary{max-width:960px;font-size:17.5px;line-height:1.5;margin:0 0 17px}
.article-meta{gap:8px}.article-meta-chip{font-size:12px;padding:7px 10px}
.breadcrumb{margin-bottom:13px;font-size:13px}.article-header .kicker{margin-bottom:0}
.article-layout{gap:42px;padding-top:30px;padding-bottom:58px}
.article-layout .article-content{max-width:76ch;font-size:17.5px;line-height:1.56}
.article-content p{margin:0 0 15px}
.article-layout .article-content h2{margin:30px 0 10px;font-size:29px;line-height:1.16}
.article-layout .article-content h3{margin:23px 0 9px;font-size:22px;line-height:1.2}
.article-content ul,.article-content ol{margin:10px 0 17px;padding-left:24px}
.article-content li{margin-bottom:5px}
.article-share{margin:20px 0 24px}

/* busca dedicada: nenhuma camada de autocomplete */
.search-form-premium .search-input-wrap,.sidebar-search-form .search-input-wrap{position:relative}
.search-form-premium .search-suggestions,.sidebar-search-form .search-suggestions,.search-clear{display:none!important}
.search-results-head{display:flex;align-items:end;justify-content:space-between;gap:18px;margin-bottom:24px}
.search-results-head h2{margin:0;font-size:clamp(26px,2.4vw,38px);line-height:1.1}
.search-results-count{color:#777;font-size:14px}

/* legal */
.legal-hero{padding:62px 0 42px;background:radial-gradient(circle at 78% 18%,rgba(214,194,165,.2),transparent 34%),linear-gradient(135deg,#FCFBF8,#F4EFE7)}
.legal-hero h1{max-width:900px;margin:8px 0 14px;font-family:var(--font-title);font-size:clamp(36px,4vw,58px);line-height:1.04;letter-spacing:-.045em}
.legal-hero p{max-width:820px;margin:0;color:#666;line-height:1.55}.legal-content{max-width:78ch}.legal-content h2{margin:30px 0 10px;font-size:26px}.legal-content p{margin:0 0 15px}.legal-updated{margin-top:30px;color:#777;font-size:13px}

/* Carrossel 3 segundos, loop visual contínuo */
.latest-carousel-track{will-change:transform;transition:transform .55s cubic-bezier(.2,.7,.2,1)}
.latest-carousel-card{flex-shrink:0}
.latest-carousel-copy .content-read-button{font-size:12px;padding:7px 9px}

/* Cards e grades mais densos */
.article-card-body{padding:15px 16px 17px}.article-card h3{line-height:1.25}.article-card p{line-height:1.48;margin-bottom:11px}
.article-grid-4{gap:16px}
.category-shelf{padding-top:44px;padding-bottom:44px}

@media(max-width:1180px){.article-header h1{font-size:clamp(34px,5vw,49px)}.article-layout{gap:30px}}
@media(max-width:760px){
 body{font-size:16.5px;line-height:1.52}.container{width:min(100% - 32px,var(--max))}.section{padding-top:48px;padding-bottom:48px}
 .article-header{padding:27px 0 23px}.article-header .article-wrap{width:calc(100% - 32px)}.article-header h1{font-size:clamp(31px,9vw,42px);line-height:1.04;margin:9px 0 12px}.article-summary{font-size:16px;line-height:1.48;margin-bottom:14px}.article-meta{flex-wrap:wrap}.article-meta-chip{font-size:11.5px;padding:6px 9px}
 .article-layout{padding-top:20px;padding-bottom:44px}.article-layout .article-content{font-size:16.5px;line-height:1.55}.article-content p{margin-bottom:14px}.article-layout .article-content h2{margin-top:26px;margin-bottom:9px;font-size:25px}.article-layout .article-content h3{margin-top:21px;font-size:21px}
 .content-read-button{font-size:14px;padding:9px 11px}.latest-carousel-copy .content-read-button{font-size:14.5px;padding:9px 11px}
 .search-form-premium{display:grid!important;grid-template-columns:1fr!important}.search-form-premium button[type=submit]{width:100%!important}
 .legal-hero{padding:44px 0 31px}.legal-hero h1{font-size:36px}
}

.utility-bar{background:var(--theme-header,#050505)}
.sidebar-post-copy .content-read-button{font-size:11px;padding:6px 8px}
@media(max-width:760px){.sidebar-post-copy .content-read-button{font-size:13px;padding:8px 9px}}

/* V2.6.3 - Matéria mais compacta e imagem destacada em escala editorial */
.article-header{padding:28px 0 24px}
.article-header .article-wrap{width:min(1180px,calc(100% - 56px))}
.article-topline{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:30px;margin-bottom:10px}
.article-topline-context{display:flex;align-items:center;gap:12px;min-width:0}
.article-topline .breadcrumb{margin:0;font-size:12.5px;white-space:nowrap}
.article-topline .kicker{margin:0;padding-left:12px;border-left:1px solid #DDD5C9;font-size:10px;white-space:nowrap}
.article-topline .article-meta{margin:0;display:flex;align-items:center;justify-content:flex-end;gap:7px;flex-wrap:wrap}
.article-header h1{max-width:1120px;margin:7px 0 10px;font-size:clamp(33px,3vw,49px);line-height:1.04;letter-spacing:-.042em}
.article-summary{max-width:1040px;margin:0;font-size:16.5px;line-height:1.46}
.article-meta-chip{padding:5px 8px;font-size:11.5px}

.article-layout .article-cover-square{
    width:min(900px,100%);
    max-width:900px;
    aspect-ratio:auto;
    margin:0 auto 26px;
    overflow:hidden;
}
.article-layout .article-cover-square picture{display:block;width:100%;height:auto}
.article-layout .article-cover-square img{
    display:block;
    width:100%;
    height:auto;
    max-width:900px;
    max-height:none;
    object-fit:contain;
}

@media(max-width:900px){
 .article-topline{align-items:flex-start;flex-direction:column;gap:8px}
 .article-topline .article-meta{justify-content:flex-start}
 .article-header h1{font-size:clamp(32px,5.5vw,44px)}
}
@media(max-width:760px){
 .article-header{padding:22px 0 19px}
 .article-header .article-wrap{width:calc(100% - 32px)}
 .article-topline{margin-bottom:8px}
 .article-topline-context{gap:8px;flex-wrap:wrap}
 .article-topline .kicker{padding-left:8px}
 .article-header h1{font-size:clamp(29px,8.2vw,38px);line-height:1.05;margin:6px 0 9px}
 .article-summary{font-size:15.8px;line-height:1.45}
 .article-layout .article-cover-square{width:100%;max-width:900px;margin-bottom:20px;border-radius:14px}
}


/* V2.8 — Sidebar editorial: Mais acessadas */
.sidebar-most-viewed{
    border:1px solid #E1E1DD;border-radius:18px;background:#FFF;
    box-shadow:0 16px 45px rgba(0,0,0,.035);padding:20px;overflow:hidden
}
.sidebar-most-viewed-head{margin-bottom:12px}
.sidebar-most-viewed-head h2{
    margin:6px 0 0;font-family:var(--font-title,"Manrope",sans-serif);
    font-size:21px;line-height:1.15;letter-spacing:-.03em
}
.sidebar-most-viewed-viewport{overflow:hidden;border-radius:14px}
.sidebar-most-viewed-track{display:flex;will-change:transform;transition:transform .62s cubic-bezier(.22,.7,.2,1)}
.sidebar-most-viewed-slide{flex:0 0 100%;min-width:100%;background:#FFF}
.sidebar-most-viewed-media{display:block;aspect-ratio:1/1;overflow:hidden;border-radius:14px;background:#0A0A0A}
.sidebar-most-viewed-media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.sidebar-most-viewed-media:hover img{transform:scale(1.025)}
.sidebar-most-viewed-copy{padding:13px 2px 2px}
.sidebar-most-viewed-copy .kicker{font-size:8.5px;letter-spacing:.1em}
.sidebar-most-viewed-copy h3{margin:6px 0 11px;font-family:var(--font-title,"Manrope",sans-serif);font-size:15px;line-height:1.27;letter-spacing:-.018em}
.sidebar-most-viewed-copy h3 a{color:#171717;text-decoration:none}
.sidebar-most-viewed-copy .content-read-button{font-size:11.5px;padding:7px 9px}
.sidebar-most-viewed-dots{display:flex;justify-content:center;gap:7px;margin-top:12px}
.sidebar-most-viewed-dots button{
    width:7px;height:7px;min-width:7px;padding:0;border:0;border-radius:999px;
    background:#D9D7D2;cursor:pointer;transition:width .25s ease,background .25s ease
}
.sidebar-most-viewed-dots button[aria-pressed="true"]{width:22px;background:var(--orange)}
@media(max-width:980px) and (min-width:761px){
    .sidebar-most-viewed{max-width:360px}
}
@media(max-width:760px){.sidebar-most-viewed{display:none}}
@media(prefers-reduced-motion:reduce){
    .sidebar-most-viewed-track,.sidebar-most-viewed-media img{transition:none}
}
