
:root{
    --folha-navy:#0E4062;
    --folha-navy-deep:#082f49;
    --folha-blue:#317DAB;
    --folha-blue-soft:#eaf3f8;
    --folha-orange:#F5A035;
    --folha-red:#c92228;
    --folha-ink:#102230;
    --folha-muted:#667684;
    --folha-border:#dfe7ed;
    --folha-bg:#f5f8fa;
    --folha-white:#ffffff;
    --folha-max:1240px;
    --folha-serif:Georgia,"Times New Roman",serif;
    --folha-sans:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:var(--folha-white);
    color:var(--folha-ink);
    font-family:var(--folha-sans);
    line-height:1.5;
    -webkit-font-smoothing:antialiased
}
img{display:block;max-width:100%;height:auto}
a{color:inherit}
button,input{font:inherit}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.folha-container{width:min(calc(100% - 32px),var(--folha-max));margin-inline:auto}

.folha-topbar{background:var(--folha-navy);color:#dce9f1;font-size:12px}
.folha-topbar-inner{min-height:35px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.folha-date{text-transform:capitalize;letter-spacing:.02em}
.folha-top-links{display:flex;gap:18px}
.folha-top-links a{text-decoration:none;color:#dce9f1}
.folha-top-links a:hover{color:#fff}

.folha-header{background:#fff;position:relative;z-index:20}
.folha-masthead{
    min-height:122px;
    display:grid;
    grid-template-columns:minmax(245px,315px) minmax(320px,1fr) 52px;
    grid-template-areas:"brand master search";
    align-items:center;
    gap:24px
}
.folha-brand{
    grid-area:brand;
    justify-self:start;
    width:min(315px,100%);
    display:block
}
.folha-brand img{
    width:100%;
    max-height:92px;
    object-fit:contain
}
.folha-header-master{
    grid-area:master;
    width:100%;
    max-width:760px;
    justify-self:center;
    display:grid;
    gap:4px;
    min-width:0
}
.folha-header-master-label{
    color:#9aa8b1;
    font-size:8px;
    font-weight:700;
    letter-spacing:.15em;
    text-align:center;
    text-transform:uppercase
}
.folha-header-master>a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:74px;
    max-height:90px;
    overflow:hidden;
    border-radius:6px;
    background:#f5f7f9
}
.folha-header-master picture{
    display:block;
    width:100%;
    height:100%
}
.folha-header-master img{
    display:block;
    width:100%;
    height:100%;
    max-height:90px;
    object-fit:contain
}
.folha-menu-button,.folha-search-button{
    width:46px;height:46px;border:1px solid var(--folha-border);border-radius:50%;
    background:#fff;display:grid;place-items:center;cursor:pointer;color:var(--folha-navy)
}
.folha-menu-button{display:none;align-content:center;gap:5px;padding:0 12px}
.folha-menu-button span{height:2px;width:20px;background:currentColor;border-radius:4px;display:block}
.folha-search-button{grid-area:search;justify-self:end}
.folha-search-button svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}

.folha-search-panel{max-height:0;overflow:hidden;background:#eef4f7;transition:max-height .2s ease;border-top:1px solid transparent}
.folha-search-panel.is-open{max-height:100px;border-color:var(--folha-border)}
.folha-search-form{display:flex;padding:16px 0;gap:8px}
.folha-search-form input{
    flex:1;min-width:0;border:1px solid #c8d7e1;background:#fff;border-radius:8px;padding:12px 14px;
    outline:none;color:var(--folha-ink)
}
.folha-search-form input:focus{border-color:var(--folha-blue);box-shadow:0 0 0 3px rgba(49,125,171,.12)}
.folha-search-form button,.folha-big-search button,.folha-filter-form button{
    border:0;border-radius:8px;background:var(--folha-navy);color:#fff;font-weight:800;padding:0 20px;cursor:pointer
}

.folha-nav{background:var(--folha-navy-deep);border-top:4px solid var(--folha-orange);box-shadow:0 3px 12px rgba(8,47,73,.12)}
.folha-nav-inner{display:flex;align-items:center;justify-content:center;gap:0;overflow-x:auto;scrollbar-width:none}
.folha-nav-inner::-webkit-scrollbar{display:none}
.folha-nav a{
    color:#fff;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:800;letter-spacing:.04em;
    padding:14px 15px;white-space:nowrap;border-right:1px solid rgba(255,255,255,.09)
}
.folha-nav a:hover{background:rgba(255,255,255,.08)}
.folha-nav-home{background:rgba(245,160,53,.16)}

.folha-main{min-height:52vh}
.folha-home{padding:26px 0 56px;display:grid;gap:34px}

.folha-ad{display:grid;gap:5px}
.folha-ad-label{text-transform:uppercase;font-size:9px;color:#98a6b0;letter-spacing:.14em;text-align:center}
.folha-ad>a{display:block;background:#f6f7f8;border-radius:7px;overflow:hidden}
.folha-ad img{width:100%;height:auto}
.folha-ad-placeholder{min-height:90px;display:grid;place-items:center;color:#94a3af}
.folha-ad--destaques-1,.folha-ad--destaques-2{align-self:stretch}
.folha-ad--destaques-1>a,.folha-ad--destaques-2>a{height:100%}
.folha-ad--destaques-1 img,.folha-ad--destaques-2 img{height:100%;object-fit:cover}

.folha-breaking{
    min-height:46px;border-left:5px solid var(--folha-red);background:#fff5f5;
    display:flex;align-items:center;gap:14px;padding:8px 14px;border-radius:5px
}
.folha-breaking span{
    flex:none;background:var(--folha-red);color:#fff;font-weight:900;font-size:11px;
    letter-spacing:.08em;padding:5px 8px;border-radius:4px
}
.folha-breaking a{font-weight:800;text-decoration:none;line-height:1.25}

.folha-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:18px}
.folha-section-heading>div:first-child{display:grid;gap:3px}
.folha-section-heading h1,.folha-section-heading h2{margin:0;font-family:var(--folha-serif);color:var(--folha-navy-deep);line-height:1}
.folha-section-heading h1{font-size:38px}
.folha-section-heading h2{font-size:32px}
.folha-section-heading>a{font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.05em;text-decoration:none;color:var(--folha-blue)}
.folha-section-eyebrow{
    color:var(--folha-orange);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.16em
}
.folha-section-heading--compact{margin-bottom:14px}
.folha-section-heading--inverse h2,.folha-section-heading--inverse h1{color:#fff}
.folha-section-heading--inverse>a{color:#cce5f3}

.folha-hero-section{min-width:0}
.folha-carousel-controls{display:flex;gap:7px}
.folha-carousel-controls button{
    width:38px;height:38px;border:1px solid var(--folha-border);background:#fff;border-radius:50%;
    color:var(--folha-navy);font-size:25px;line-height:1;cursor:pointer
}
.folha-hero-carousel{
    display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:2px
}
.folha-hero-carousel::-webkit-scrollbar{display:none}
.folha-hero-card{
    position:relative;flex:0 0 min(78vw,760px);aspect-ratio:16/9;border-radius:12px;overflow:hidden;
    scroll-snap-align:start;background:#0e4062
}
.folha-hero-image,.folha-hero-image img,.folha-hero-overlay{position:absolute;inset:0}
.folha-hero-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.folha-hero-card:hover .folha-hero-image img{transform:scale(1.025)}
.folha-hero-overlay{background:linear-gradient(180deg,rgba(7,31,45,.03) 22%,rgba(6,27,42,.94) 100%)}
.folha-hero-copy{position:absolute;left:0;right:0;bottom:0;padding:clamp(20px,4vw,40px);color:#fff;z-index:2;max-width:760px}
.folha-hero-kicker{
    display:inline-flex;text-decoration:none;text-transform:uppercase;font-size:10px;font-weight:900;letter-spacing:.12em;
    background:var(--folha-orange);color:#102230;padding:5px 8px;border-radius:3px;margin-bottom:10px
}
.folha-hero-copy h2{font-family:var(--folha-serif);font-size:clamp(22px,3.1vw,38px);line-height:1.04;margin:0 0 9px}
.folha-hero-copy h2 a{text-decoration:none}
.folha-hero-copy p{font-size:15px;margin:0;color:#e7eef3;max-width:700px}

.folha-empty-brand{
    min-height:450px;background:linear-gradient(135deg,#f6fafc,#e7f0f6);border:1px solid #d8e5ec;border-radius:18px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:40px
}
.folha-empty-brand img{width:min(620px,90%);margin-bottom:16px}
.folha-empty-brand>span{color:var(--folha-orange);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.18em}
.folha-empty-brand h1{font-family:var(--folha-serif);font-size:clamp(30px,5vw,50px);margin:9px 0;color:var(--folha-navy)}
.folha-empty-brand p{color:var(--folha-muted);max-width:650px;margin:0}

.folha-news-dashboard{display:grid;grid-template-columns:minmax(0,1.8fr) minmax(300px,.8fr);gap:28px;align-items:start}
.folha-latest-column{min-width:0}
.folha-latest-list{display:grid;grid-template-columns:1fr 1fr;gap:0 24px;border-top:2px solid var(--folha-navy)}
.folha-latest-item{display:grid;grid-template-columns:132px 1fr;gap:14px;padding:18px 0;border-bottom:1px solid var(--folha-border)}
.folha-latest-thumb{aspect-ratio:4/3;overflow:hidden;border-radius:6px;background:#edf2f5}
.folha-latest-thumb img{width:100%;height:100%;object-fit:cover}
.folha-kicker{
    --category-color:var(--folha-blue);
    color:var(--category-color);font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;text-decoration:none
}
.folha-latest-item h3{font-family:var(--folha-serif);font-size:19px;line-height:1.13;margin:5px 0 7px}
.folha-latest-item h3 a{text-decoration:none}
.folha-latest-item time{font-size:10px;color:#8796a0}

.folha-most-read{background:var(--folha-navy-deep);color:#fff;border-radius:12px;padding:24px}
.folha-most-read ol{list-style:none;padding:0;margin:0}
.folha-most-read li{display:grid;grid-template-columns:44px 1fr;gap:13px;padding:15px 0;border-top:1px solid rgba(255,255,255,.12)}
.folha-most-read li>span{font-family:var(--folha-serif);font-size:28px;color:var(--folha-orange);line-height:1}
.folha-most-read li>a{font-family:var(--folha-serif);font-size:17px;font-weight:700;line-height:1.18;text-decoration:none}
.folha-most-read-empty{display:block!important;color:#c4d4de;font-size:13px}

.folha-editorias{display:grid;gap:42px}
.folha-editoria-block{border-top:4px solid var(--folha-navy);padding-top:17px}
.folha-editoria-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.folha-editoria-grid .folha-ad{min-height:100%}

.folha-card{min-width:0}
.folha-card-image{display:block;aspect-ratio:16/10;overflow:hidden;background:#edf2f5;border-radius:7px}
.folha-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.folha-card:hover .folha-card-image img{transform:scale(1.03)}
.folha-card-content{padding-top:11px}
.folha-card h3{font-family:var(--folha-serif);font-size:22px;line-height:1.1;margin:6px 0 8px}
.folha-card h3 a{text-decoration:none}
.folha-card p{margin:0 0 9px;color:var(--folha-muted);font-size:13px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.folha-card-meta{display:flex;flex-wrap:wrap;gap:6px 10px;font-size:9px;text-transform:uppercase;letter-spacing:.04em;color:#8b99a2}

.folha-videos-home,.folha-video-page{background:var(--folha-navy-deep);color:#fff}
.folha-videos-home{margin-inline:calc(50% - 50vw);padding:38px max(16px,calc((100vw - var(--folha-max))/2));}
.folha-video-page{padding:44px 0 60px;min-height:60vh}
.folha-video-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:17px}
.folha-video-grid--page{grid-template-columns:repeat(4,minmax(0,1fr))}
.folha-video-thumb{display:block;position:relative;aspect-ratio:16/9;background:#071e2e;border-radius:8px;overflow:hidden}
.folha-video-thumb img{width:100%;height:100%;object-fit:cover;opacity:.87}
.folha-play{
    position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);
    width:46px;height:46px;border-radius:50%;background:var(--folha-orange);color:#102230;display:grid;place-items:center;
    padding-left:3px;box-shadow:0 8px 24px rgba(0,0,0,.24)
}
.folha-video-card h3{font-family:var(--folha-serif);font-size:17px;line-height:1.15;margin:10px 0 6px}
.folha-video-card h3 a{text-decoration:none}
.folha-video-card>span{font-size:10px;color:#a9c3d3;text-transform:uppercase}

.folha-opiniao{padding-top:4px}
.folha-opiniao-layout{display:grid;grid-template-columns:1fr 260px;gap:24px}
.folha-opiniao-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 24px;border-top:2px solid var(--folha-navy)}
.folha-opiniao-card{display:grid;grid-template-columns:74px 1fr;gap:14px;align-items:center;padding:17px 0;border-bottom:1px solid var(--folha-border)}
.folha-author-photo{width:74px;height:74px;border-radius:50%;overflow:hidden;background:#edf2f5}
.folha-author-photo img{width:100%;height:100%;object-fit:cover}
.folha-columnist-name{font-size:10px;text-transform:uppercase;letter-spacing:.08em;font-weight:900;color:var(--folha-blue);text-decoration:none}
.folha-opiniao-card h3{font-family:var(--folha-serif);font-size:18px;line-height:1.12;margin:5px 0}
.folha-opiniao-card h3 a{text-decoration:none}
.folha-opiniao-ads{display:grid;gap:16px}

.folha-partner-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.folha-partner-strip a{
    min-height:96px;border:1px solid var(--folha-border);border-radius:8px;display:grid;place-items:center;padding:14px;text-decoration:none;background:#fff
}
.folha-partner-strip img{max-height:62px;max-width:140px;object-fit:contain}

.folha-list-page{padding:42px 0 58px}
.folha-page-heading{border-bottom:4px solid var(--folha-navy);padding-bottom:18px;margin-bottom:26px}
.folha-page-heading>span,.folha-author-heading>div>span,.folha-static-page>span,.folha-partner-detail article>span{
    color:var(--folha-orange);font-size:10px;font-weight:900;letter-spacing:.16em;text-transform:uppercase
}
.folha-page-heading h1,.folha-author-heading h1,.folha-static-page h1,.folha-partner-detail h1{
    font-family:var(--folha-serif);color:var(--folha-navy-deep);font-size:clamp(38px,6vw,64px);line-height:1;margin:7px 0
}
.folha-page-heading--dark{border-bottom-color:rgba(255,255,255,.28)}
.folha-page-heading--dark h1{color:#fff}
.folha-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px 18px}
.folha-empty-list{grid-column:1/-1;background:var(--folha-bg);padding:30px;border-radius:8px;color:var(--folha-muted)}
.folha-pagination{margin-top:34px}
.folha-pagination nav{font-size:13px}

.folha-author-heading{display:grid;grid-template-columns:140px 1fr;gap:26px;align-items:center;border-bottom:4px solid var(--folha-navy);padding-bottom:24px;margin-bottom:28px}
.folha-author-heading>img{width:140px;height:140px;object-fit:cover;border-radius:50%;border:6px solid #edf4f8}
.folha-author-heading p{color:var(--folha-muted);max-width:760px}

.folha-big-search,.folha-filter-form{display:flex;gap:10px;margin-bottom:24px}
.folha-big-search input,.folha-filter-form input{
    flex:1;min-width:0;border:1px solid #cbd8e1;background:#fff;border-radius:8px;padding:14px
}
.folha-search-result-label{color:var(--folha-muted);margin-bottom:24px}

.folha-article-page{display:grid;grid-template-columns:minmax(0,840px) 280px;justify-content:space-between;gap:42px;padding:46px 0 62px}
.folha-article-header{border-bottom:1px solid var(--folha-border);padding-bottom:22px}
.folha-article-category{color:var(--folha-blue);font-size:11px;text-transform:uppercase;font-weight:900;letter-spacing:.1em;text-decoration:none}
.folha-article-header h1{font-family:var(--folha-serif);font-size:clamp(42px,6.2vw,72px);line-height:.99;margin:10px 0 14px;color:#102230}
.folha-article-subtitle{font-size:20px;line-height:1.45;color:#536675;margin:0 0 18px}
.folha-article-meta{display:flex;gap:10px 22px;flex-wrap:wrap;font-size:11px;color:#7a8b96}
.folha-article-meta a{font-weight:800;color:var(--folha-navy);text-decoration:none}
.folha-article-cover{margin:26px 0}
.folha-article-cover img{width:100%;border-radius:7px}
.folha-article-cover figcaption{font-size:10px;color:#87949d;margin-top:6px}
.folha-article-body{font-family:Georgia,"Times New Roman",serif;font-size:19px;line-height:1.78;color:#1b2b36}
.folha-article-body p{margin:0 0 1.4em}
.folha-article-body h2,.folha-article-body h3{font-family:var(--folha-sans);color:var(--folha-navy);line-height:1.15;margin-top:1.55em}
.folha-article-body a{color:#126c9f;text-decoration-thickness:1px;text-underline-offset:2px}
.folha-article-body img{border-radius:6px;margin:20px auto}
.folha-article-sidebar{display:grid;align-content:start;gap:22px;position:sticky;top:18px;height:max-content}
.folha-related{margin-top:48px;border-top:4px solid var(--folha-navy);padding-top:18px}

.folha-partner-card{border:1px solid var(--folha-border);border-radius:9px;padding:18px}
.folha-partner-logo{height:120px;display:grid;place-items:center;border-bottom:1px solid var(--folha-border);padding-bottom:15px;margin-bottom:14px;text-decoration:none}
.folha-partner-logo img{max-width:170px;max-height:95px;object-fit:contain}
.folha-partner-card>span{font-size:9px;color:var(--folha-blue);font-weight:900;text-transform:uppercase}
.folha-partner-card h2{font-family:var(--folha-serif);font-size:22px;margin:6px 0}
.folha-partner-card h2 a{text-decoration:none}
.folha-partner-card p{color:var(--folha-muted);font-size:13px}
.folha-partner-detail{padding:42px 0 60px;max-width:940px}
.folha-partner-cover{width:100%;max-height:460px;object-fit:cover;border-radius:9px;margin-bottom:26px}
.folha-partner-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:25px}
.folha-partner-actions a{
    background:var(--folha-navy);color:#fff;text-decoration:none;font-weight:800;border-radius:7px;padding:11px 16px
}
.folha-static-page{padding:56px 0;max-width:840px}
.folha-static-page p{font-size:18px;line-height:1.75;color:var(--folha-muted)}

.folha-footer{background:#082f49;color:#d4e3ec;border-top:6px solid var(--folha-orange)}
.folha-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:38px;padding:42px 0}
.folha-footer-brand img{max-width:390px;filter:none;opacity:1;background:#fff;border-radius:9px;padding:10px 14px;box-shadow:0 8px 24px rgba(0,0,0,.10)}
.folha-footer-brand p{max-width:480px;color:#b9cfdb;font-size:13px;margin:14px 0 0}
.folha-footer h2{color:#fff;font-size:11px;text-transform:uppercase;letter-spacing:.12em;margin:0 0 13px}
.folha-footer-grid>div:not(:first-child){display:flex;flex-direction:column;align-items:flex-start;gap:7px}
.folha-footer a{font-size:12px;color:#bfd2dd;text-decoration:none}
.folha-footer a:hover{color:#fff}
.folha-footer-grid span{font-size:12px;color:#8ea9b9}
.folha-footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:15px 0;color:#8eabbc;font-size:10px}
.folha-footer-bottom .folha-container{display:flex;justify-content:space-between;gap:16px}

@media (max-width:1050px){
    .folha-news-dashboard{grid-template-columns:1fr}
    .folha-most-read ol{display:grid;grid-template-columns:1fr 1fr;gap:0 24px}
    .folha-opiniao-layout{grid-template-columns:1fr}
    .folha-opiniao-ads{grid-template-columns:1fr 1fr}
    .folha-article-page{grid-template-columns:1fr}
    .folha-article-sidebar{position:static;grid-template-columns:repeat(3,1fr)}
    .folha-video-grid{grid-template-columns:repeat(3,1fr)}
    .folha-video-grid--page{grid-template-columns:repeat(3,1fr)}
    .folha-footer-grid{grid-template-columns:2fr 1fr 1fr}
}

@media (max-width:780px){
    .folha-container{width:min(calc(100% - 24px),var(--folha-max))}
    .folha-top-links{display:none}
    .folha-topbar-inner{justify-content:center}
    .folha-masthead{
        min-height:96px;
        grid-template-columns:44px 1fr 44px;
        grid-template-areas:
            "menu brand search"
            "master master master";
        gap:8px 12px;
        padding-top:8px;
        padding-bottom:10px
    }
    .folha-brand{
        justify-self:center;
        width:min(390px,72vw)
    }
    .folha-brand img{max-height:76px}
    .folha-header-master{
        width:100%;
        max-width:none;
        padding-top:4px
    }
    .folha-header-master>a{
        min-height:0;
        max-height:none
    }
    .folha-header-master img{
        width:100%;
        height:auto;
        max-height:150px;
        object-fit:contain
    }
    .folha-menu-button{grid-area:menu;display:grid}
    .folha-menu-button,.folha-search-button{width:40px;height:40px}
    .folha-nav{display:none;border-top-width:3px}
    .folha-nav.is-open{display:block}
    .folha-nav-inner{display:grid;grid-template-columns:1fr 1fr;overflow:visible;padding:8px 12px 12px}
    .folha-nav a{border-right:0;border-bottom:1px solid rgba(255,255,255,.1);padding:12px 8px}
    .folha-home{padding-top:16px;gap:27px}
    .folha-section-heading h1{font-size:30px}
    .folha-section-heading h2{font-size:27px}
    .folha-hero-card{flex-basis:88vw;aspect-ratio:4/3}
    .folha-hero-copy p{display:none}
    .folha-latest-list{grid-template-columns:1fr}
    .folha-editoria-grid,.folha-grid-3{grid-template-columns:1fr 1fr}
    .folha-video-grid,.folha-video-grid--page{grid-template-columns:1fr 1fr}
    .folha-opiniao-grid{grid-template-columns:1fr}
    .folha-partner-strip{grid-template-columns:repeat(3,1fr)}
    .folha-article-header h1{font-size:clamp(38px,10vw,56px)}
    .folha-article-sidebar{grid-template-columns:1fr 1fr}
    .folha-footer-grid{grid-template-columns:1fr 1fr}
    .folha-footer-brand{grid-column:1/-1}
}

@media (max-width:520px){
    .folha-container{width:min(calc(100% - 20px),var(--folha-max))}
    .folha-masthead{min-height:80px}
    .folha-brand{width:68vw}
    .folha-brand img{max-height:62px}
    .folha-header-master-label{font-size:7px}
    .folha-header-master img{max-height:130px}
    .folha-search-panel.is-open{max-height:120px}
    .folha-search-form{padding:10px 0}
    .folha-search-form button{padding-inline:14px}
    .folha-nav-inner{grid-template-columns:1fr}
    .folha-breaking{align-items:flex-start}
    .folha-section-heading{align-items:center}
    .folha-carousel-controls button{width:34px;height:34px}
    .folha-hero-card{flex-basis:92vw;aspect-ratio:4/4.3}
    .folha-hero-copy{padding:18px}
    .folha-hero-copy h2{font-size:26px}
    .folha-latest-item{grid-template-columns:108px 1fr}
    .folha-most-read{padding:19px}
    .folha-most-read ol{display:block}
    .folha-editoria-grid,.folha-grid-3{grid-template-columns:1fr}
    .folha-card h3{font-size:23px}
    .folha-video-grid,.folha-video-grid--page{grid-template-columns:1fr}
    .folha-videos-home{padding-top:30px;padding-bottom:30px}
    .folha-opiniao-ads{grid-template-columns:1fr}
    .folha-partner-strip{grid-template-columns:1fr 1fr}
    .folha-page-heading h1,.folha-author-heading h1,.folha-static-page h1,.folha-partner-detail h1{font-size:42px}
    .folha-author-heading{grid-template-columns:1fr;text-align:center}
    .folha-author-heading>img{margin-inline:auto}
    .folha-big-search,.folha-filter-form{flex-direction:column}
    .folha-big-search button,.folha-filter-form button{min-height:46px}
    .folha-article-page{padding-top:30px}
    .folha-article-subtitle{font-size:18px}
    .folha-article-body{font-size:18px}
    .folha-article-sidebar{grid-template-columns:1fr}
    .folha-footer-grid{grid-template-columns:1fr;gap:24px}
    .folha-footer-brand{grid-column:auto}
    .folha-footer-brand img{max-width:300px}
    .folha-footer-bottom .folha-container{flex-direction:column;gap:3px}
}

/* Conteúdo rico e produtos afiliados */
.article-gallery,.post-gallery{margin:26px 0}
.article-gallery img,.post-gallery img{border-radius:6px}
.affiliate-product,.affiliate-product-card{
    border:1px solid var(--folha-border)!important;border-left:5px solid var(--folha-orange)!important;
    border-radius:8px!important;background:#fff!important
}


/* ============================================================
   Home comercial v1.0.3
   ============================================================ */

.folha-top-ads{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:stretch;
}
.folha-top-ad-slot{
    min-width:0;
}
.folha-top-ad-slot:empty{
    min-height:0;
}
.folha-top-ad-slot .folha-ad{
    height:100%;
}
.folha-top-ad-slot .folha-ad>a{
    height:104px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4f7f9;
}
.folha-top-ad-slot .folha-ad picture{
    display:block;
    width:100%;
    height:100%;
}
.folha-top-ad-slot .folha-ad img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#f4f7f9;
}

.folha-home-commercial-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:30px;
    align-items:start;
}
.folha-home-editorial{
    min-width:0;
    display:grid;
    gap:36px;
}
.folha-commercial-sidebar{
    min-width:0;
    display:grid;
    gap:20px;
    align-content:start;
}
.folha-commercial-sidebar .folha-most-read{
    width:100%;
}
.folha-commercial-sidebar .folha-most-read ol{
    display:block;
}
.folha-commercial-sidebar .folha-most-read li{
    grid-template-columns:40px 1fr;
}
.folha-commercial-sidebar .folha-most-read li>a{
    font-size:16px;
}
.folha-sidebar-heading{
    border-top:4px solid var(--folha-orange);
    background:#fff;
    padding:14px 0 11px;
}
.folha-sidebar-heading span{
    color:var(--folha-orange);
    font-size:9px;
    font-weight:900;
    letter-spacing:.16em;
}
.folha-sidebar-heading h2{
    margin:3px 0 0;
    font-family:var(--folha-serif);
    color:var(--folha-navy);
    font-size:25px;
    line-height:1;
}
.folha-sidebar-sponsor-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}
.folha-sidebar-sponsor-list a{
    min-height:84px;
    border:1px solid var(--folha-border);
    border-radius:7px;
    background:#fff;
    display:grid;
    place-items:center;
    padding:10px;
    text-decoration:none;
}
.folha-sidebar-sponsor-list img{
    max-width:100%;
    max-height:62px;
    object-fit:contain;
}
.folha-sidebar-sponsor-list strong{
    font-size:11px;
    text-align:center;
    color:var(--folha-navy);
}
.folha-sidebar-ads{
    display:grid;
    gap:20px;
}
.folha-sidebar-ads .folha-ad{
    width:100%;
}
.folha-sidebar-ads .folha-ad>a{
    width:100%;
    background:#f5f7f9;
}
.folha-sidebar-ads .folha-ad picture,
.folha-sidebar-ads .folha-ad img{
    width:100%;
}
.folha-sidebar-ads .folha-ad img{
    height:auto;
    object-fit:contain;
}

/* As editorias deixam de ocupar três colunas e passam a duas. */
.folha-home-editorial .folha-editoria-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px 18px;
}
.folha-home-editorial .folha-editoria-block{
    margin:0;
}

/* O horizontal do meio fica restrito à coluna editorial. */
.folha-home-editorial>.folha-ad{
    width:100%;
}
.folha-home-editorial>.folha-ad img{
    width:100%;
}

/* Opinião volta a usar toda a largura, sem anúncios verticais internos. */
.folha-opiniao-grid--wide{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

/* Não usar mais o layout antigo últimas + mais lidas na home. */
.folha-news-dashboard{
    display:block;
}



/* ============================================================
   HOME COMERCIAL — REGRA CONSOLIDADA v1.0.12
   ============================================================ */

@media (min-width: 761px) {
    .folha-home-commercial-layout{
        display:grid;
        grid-template-columns:minmax(0,1fr) 300px;
        gap:30px;
        align-items:start;
    }

    .folha-commercial-sidebar{
        display:grid;
        width:300px;
        min-width:300px;
        max-width:300px;
        justify-self:end;
        grid-template-columns:1fr;
        gap:20px;
        align-content:start;
    }

    .folha-sidebar-ads{
        display:grid;
        width:300px;
        max-width:300px;
        grid-template-columns:1fr;
        gap:20px;
    }

    .folha-sidebar-ads .folha-ad,
    .folha-sidebar-ads .folha-ad>a,
    .folha-sidebar-ads .folha-ad picture,
    .folha-sidebar-ads .folha-ad img{
        display:block;
        width:300px;
        max-width:300px;
        height:auto;
    }

    .folha-home-editorial .folha-editoria-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .folha-opiniao-grid--wide{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media (max-width: 760px) {
    .folha-top-ads{
        grid-template-columns:1fr;
        gap:12px;
    }

    .folha-top-ad-slot .folha-ad>a{
        height:auto;
        min-height:70px;
    }

    .folha-top-ad-slot .folha-ad img{
        height:auto;
        max-height:180px;
        object-fit:contain;
    }

    .folha-home-commercial-layout{
        display:grid;
        grid-template-columns:1fr;
        gap:28px;
    }

    .folha-home-editorial .folha-editoria-grid{
        grid-template-columns:1fr;
    }

    .folha-commercial-sidebar{
        display:grid;
        width:100%;
        max-width:none;
        grid-template-columns:1fr;
        gap:16px;
        margin:0;
    }

    .folha-sidebar-ads{
        display:grid;
        width:100%;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
    }

    .folha-sidebar-ads .folha-ad,
    .folha-sidebar-ads .folha-ad>a,
    .folha-sidebar-ads .folha-ad picture,
    .folha-sidebar-ads .folha-ad img{
        display:block;
        width:100%;
        max-width:none;
        height:auto;
    }

    .folha-sidebar-ads .folha-ad>a{
        overflow:hidden;
        border-radius:7px;
        background:#f5f7f9;
    }

    .folha-opiniao-grid--wide{
        grid-template-columns:1fr;
    }
}
