/* ============================================================
   DATTA TV - CSS Público - Totalmente Responsivo
   ============================================================ */
:root {
  --bg:#0B0F12; --bg2:#111820; --card:#1A2028; --card2:#1D252E;
  --borda:#252D36; --verde:#00BFA6; --verde2:#00D6B4;
  --branco:#FFFFFF; --texto:#BFC7D5; --muted:#7A8799;
  --vermelho:#E53E3E; --amarelo:#D69E2E; --azul:#3182CE;
  --font:'Segoe UI',-apple-system,BlinkMacSystemFont,sans-serif;
  --max-w:1280px; --radius:8px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
body{font-family:var(--font);background:var(--bg);color:var(--texto);line-height:1.6;font-size:15px;}
a{color:var(--verde);text-decoration:none;transition:all .2s;}
a:hover{color:var(--verde2);}
img{max-width:100%;height:auto;display:block;}
.container{max-width:var(--max-w);margin:0 auto;padding:0 16px;}

/* == TOPBAR == */
.topbar{background:var(--bg2);border-bottom:1px solid var(--borda);padding:10px 0;}
.topbar .container{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap;}
.topbar-logo img{height:46px;width:auto;}
.topbar-right{display:flex;align-items:center;gap:8px;flex:1;justify-content:flex-end;}
.topbar-search{display:flex;background:var(--card);border:1px solid var(--borda);border-radius:var(--radius);overflow:hidden;flex:1;max-width:280px;}
.topbar-search input{background:transparent;border:none;color:var(--branco);padding:8px 12px;font-size:14px;width:100%;outline:none;min-width:0;}
.topbar-search button{background:var(--verde);border:none;color:#000;padding:8px 12px;cursor:pointer;font-size:14px;flex-shrink:0;}
.btn-whatsapp-top{background:var(--verde);color:#000;padding:8px 14px;border-radius:var(--radius);font-weight:700;font-size:13px;display:flex;align-items:center;gap:6px;white-space:nowrap;flex-shrink:0;}

/* == NAVBAR == */
.navbar{background:var(--bg);border-bottom:2px solid var(--verde);position:sticky;top:0;z-index:1000;}
.navbar .container{display:flex;align-items:center;position:relative;}
.menu-toggle{display:none;background:none;border:none;color:var(--branco);font-size:22px;cursor:pointer;padding:12px 16px 12px 0;flex-shrink:0;z-index:10;}
.nav-links{display:flex;align-items:center;overflow-x:auto;-webkit-overflow-scrolling:touch;flex:1;scrollbar-width:none;}
.nav-links::-webkit-scrollbar{display:none;}
.nav-links a{color:var(--texto);padding:14px 12px;font-size:13px;font-weight:600;white-space:nowrap;border-bottom:2px solid transparent;transition:all .2s;display:inline-flex;align-items:center;gap:5px;flex-shrink:0;}
.nav-links a:hover,.nav-links a.ativo{color:var(--verde);border-bottom-color:var(--verde);}

/* == HERO == */
.hero{position:relative;overflow:hidden;margin-bottom:24px;background:var(--bg2);}
.hero-slides{display:flex;transition:transform .5s ease;}
.hero-slide{min-width:100%;position:relative;}
.hero-slide img{width:100%;height:420px;object-fit:cover;}
.hero-slide-content{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.88));padding:40px 24px 24px;}
.hero-slide-cat{display:inline-block;padding:4px 12px;border-radius:4px;font-size:11px;font-weight:700;text-transform:uppercase;color:#fff;margin-bottom:8px;}
.hero-slide-title{font-size:24px;font-weight:800;color:#fff;margin-bottom:6px;line-height:1.25;}
.hero-slide-title a{color:#fff;}
.hero-slide-title a:hover{color:var(--verde);}
.hero-slide-meta{color:rgba(255,255,255,.7);font-size:13px;display:flex;gap:14px;flex-wrap:wrap;}
.hero-controls{position:absolute;bottom:20px;right:20px;display:flex;gap:8px;z-index:5;}
.hero-controls button{background:rgba(0,0,0,.5);border:1px solid rgba(255,255,255,.3);color:#fff;width:36px;height:36px;border-radius:50%;cursor:pointer;font-size:15px;transition:all .2s;}
.hero-controls button:hover{background:var(--verde);color:#000;border-color:var(--verde);}

/* == SEÇÃO == */
.secao{margin-bottom:36px;}
.secao-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid var(--borda);}
.secao-titulo{font-size:18px;font-weight:800;color:var(--branco);display:flex;align-items:center;gap:10px;}
.secao-titulo span{display:inline-block;width:4px;height:22px;background:var(--verde);border-radius:2px;flex-shrink:0;}
.secao-link{color:var(--verde);font-size:13px;font-weight:600;white-space:nowrap;}

/* == GRIDS == */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.grid-main{display:grid;grid-template-columns:1fr 320px;gap:24px;}

/* == CARD == */
.card{background:var(--card);border:1px solid var(--borda);border-radius:var(--radius);overflow:hidden;transition:all .3s;}
.card:hover{border-color:var(--verde);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.3);}
.card-img{position:relative;overflow:hidden;}
.card-img img{width:100%;height:190px;object-fit:cover;transition:transform .4s;}
.card:hover .card-img img{transform:scale(1.04);}
.card-cat{position:absolute;top:10px;left:10px;padding:3px 10px;border-radius:4px;font-size:11px;font-weight:700;text-transform:uppercase;color:#fff;}
.card-body{padding:14px;}
.card-title{font-size:15px;font-weight:700;color:var(--branco);line-height:1.35;margin-bottom:7px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.card-title a{color:var(--branco);}
.card-title a:hover{color:var(--verde);}
.card-resumo{font-size:13px;color:var(--muted);margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.card-meta{display:flex;justify-content:space-between;font-size:12px;color:var(--muted);flex-wrap:wrap;gap:4px;}

/* CARD HORIZONTAL */
.card-h{display:flex;}
.card-h .card-img{flex-shrink:0;width:130px;}
.card-h .card-img img{width:130px;height:100%;min-height:100px;object-fit:cover;}
.card-h .card-body{padding:12px;display:flex;flex-direction:column;justify-content:center;}
.card-h .card-title{font-size:13px;-webkit-line-clamp:2;}

/* == SIDEBAR == */
.sidebar{display:flex;flex-direction:column;gap:20px;}
.sidebar-widget{background:var(--card);border:1px solid var(--borda);border-radius:var(--radius);padding:18px;}
.sidebar-titulo{font-size:14px;font-weight:800;color:var(--branco);margin-bottom:14px;padding-bottom:10px;border-bottom:2px solid var(--verde);display:flex;align-items:center;gap:8px;}
.sidebar-titulo i{color:var(--verde);}
.sidebar-cat-list{list-style:none;}
.sidebar-cat-list li{border-bottom:1px solid var(--borda);}
.sidebar-cat-list li:last-child{border-bottom:none;}
.sidebar-cat-list a{display:flex;align-items:center;justify-content:space-between;padding:9px 0;color:var(--texto);font-size:13px;}
.sidebar-cat-list a:hover{color:var(--verde);padding-left:4px;}
.sidebar-cat-list .cat-dot{width:10px;height:10px;border-radius:50%;margin-right:8px;flex-shrink:0;}

/* == NOTÍCIA INTERNA == */
.noticia-breadcrumb{font-size:13px;color:var(--muted);margin-bottom:14px;display:flex;flex-wrap:wrap;align-items:center;gap:6px;}
.noticia-breadcrumb a{color:var(--verde);}
.noticia-cat{display:inline-block;padding:4px 12px;border-radius:4px;font-size:12px;font-weight:700;color:#fff;margin-bottom:12px;text-transform:uppercase;}
.noticia-titulo{font-size:26px;font-weight:800;color:var(--branco);line-height:1.25;margin-bottom:10px;}
.noticia-resumo{font-size:16px;color:var(--muted);margin-bottom:14px;line-height:1.5;}
.noticia-meta{display:flex;flex-wrap:wrap;gap:14px;color:var(--muted);font-size:13px;margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid var(--borda);}
.noticia-meta i{color:var(--verde);margin-right:4px;}
.noticia-imagem{margin-bottom:22px;border-radius:var(--radius);overflow:hidden;}
.noticia-compartilhar{display:flex;gap:8px;margin-bottom:22px;flex-wrap:wrap;}
.noticia-compartilhar a,.noticia-compartilhar button{padding:8px 14px;border-radius:var(--radius);font-size:13px;font-weight:600;border:none;cursor:pointer;display:flex;align-items:center;gap:6px;transition:all .2s;}
.btn-wpp{background:#25D366;color:#fff;}
.btn-fb{background:#1877F2;color:#fff;}
.btn-copy{background:var(--card);color:var(--texto);border:1px solid var(--borda)!important;}
.noticia-conteudo{font-size:16px;line-height:1.8;color:var(--texto);}
.noticia-conteudo h2{font-size:20px;color:var(--branco);margin:24px 0 10px;padding-left:12px;border-left:3px solid var(--verde);}
.noticia-conteudo h3{font-size:17px;color:var(--branco);margin:20px 0 8px;}
.noticia-conteudo p{margin-bottom:14px;}
.noticia-conteudo ul,.noticia-conteudo ol{margin:0 0 14px 22px;}
.noticia-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px;padding-top:14px;border-top:1px solid var(--borda);}
.noticia-tags a{background:var(--card2);padding:4px 12px;border-radius:20px;font-size:12px;color:var(--muted);border:1px solid var(--borda);}
.noticia-tags a:hover{color:var(--verde);border-color:var(--verde);}

/* == BLOCO COMERCIAL == */
.bloco-comercial{background:linear-gradient(135deg,var(--card),var(--card2));border:2px solid var(--verde);border-radius:12px;padding:36px 20px;text-align:center;margin:36px 0;}
.bloco-comercial h2{font-size:22px;font-weight:800;color:var(--branco);margin-bottom:10px;}
.bloco-comercial p{color:var(--muted);margin-bottom:20px;max-width:560px;margin-left:auto;margin-right:auto;}
.bloco-comercial-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}

/* == BOTÕES == */
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 20px;border-radius:var(--radius);font-size:14px;font-weight:700;cursor:pointer;border:none;transition:all .2s;text-decoration:none;}
.btn-verde{background:var(--verde);color:#000;}
.btn-verde:hover{background:var(--verde2);color:#000;}
.btn-outline{background:transparent;color:var(--verde);border:2px solid var(--verde);}
.btn-outline:hover{background:var(--verde);color:#000;}

/* == BANNER == */
.banner-area{margin:16px 0;text-align:center;}
.banner-area img{max-width:100%;border-radius:var(--radius);height:auto;}
.banner-lateral{margin-bottom:14px;}
.banner-lateral img{width:100%;border-radius:var(--radius);}

/* == PÁGINA ANUNCIE == */
.anuncie-hero{background:linear-gradient(135deg,#0B0F12,#1A2028);padding:48px 16px;text-align:center;border-bottom:2px solid var(--verde);margin-bottom:36px;}
.anuncie-hero h1{font-size:30px;font-weight:800;color:var(--branco);margin-bottom:10px;}
.anuncie-hero p{font-size:16px;color:var(--muted);}
.anuncie-motivos{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:40px;}
.anuncie-motivo{background:var(--card);border:1px solid var(--borda);border-radius:var(--radius);padding:24px 20px;text-align:center;transition:all .3s;}
.anuncie-motivo:hover{border-color:var(--verde);transform:translateY(-3px);}
.anuncie-motivo i{font-size:32px;color:var(--verde);margin-bottom:12px;}
.anuncie-motivo h3{font-size:15px;color:var(--branco);margin-bottom:6px;}
.anuncie-motivo p{font-size:13px;color:var(--muted);}
.anuncie-formatos{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:40px;}
.anuncie-formato{background:var(--card);border:1px solid var(--borda);border-radius:var(--radius);padding:20px;text-align:center;}
.anuncie-formato h4{color:var(--verde);margin-bottom:6px;font-size:14px;}
.anuncie-formato p{font-size:12px;color:var(--muted);}

/* == FORMULÁRIOS == */
.form-card{background:var(--card);border:1px solid var(--borda);border-radius:12px;padding:28px 20px;max-width:680px;margin:0 auto;}
.form-card h2{font-size:20px;font-weight:700;color:var(--branco);margin-bottom:20px;text-align:center;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-group{margin-bottom:14px;}
.form-label{display:block;font-size:12px;font-weight:700;color:var(--muted);margin-bottom:5px;text-transform:uppercase;letter-spacing:.04em;}
.form-control{width:100%;background:var(--bg2);border:1px solid var(--borda);border-radius:6px;color:var(--branco);padding:10px 14px;font-size:14px;outline:none;transition:border .2s;}
.form-control:focus{border-color:var(--verde);}
textarea.form-control{resize:vertical;min-height:100px;}
.form-check{display:flex;align-items:center;gap:8px;font-size:13px;cursor:pointer;}
.form-check input{accent-color:var(--verde);}
.form-submit{width:100%;padding:13px;background:var(--verde);color:#000;border:none;border-radius:var(--radius);font-size:15px;font-weight:700;cursor:pointer;transition:all .2s;}
.form-submit:hover{background:var(--verde2);}
.form-msg{padding:11px 14px;border-radius:var(--radius);margin-bottom:14px;font-size:14px;}
.form-msg-ok{background:rgba(0,191,166,.12);color:var(--verde);border:1px solid rgba(0,191,166,.3);}
.form-msg-erro{background:rgba(229,62,62,.12);color:var(--vermelho);border:1px solid rgba(229,62,62,.3);}

/* == CONTATO == */
.contato-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;margin-bottom:36px;}
.contato-info{display:flex;flex-direction:column;gap:18px;}
.contato-item{display:flex;align-items:flex-start;gap:12px;}
.contato-item i{font-size:18px;color:var(--verde);margin-top:2px;flex-shrink:0;}
.contato-item h4{font-size:13px;color:var(--branco);margin-bottom:2px;}
.contato-item p{font-size:13px;color:var(--muted);}

/* == PAGINAÇÃO == */
.paginacao{display:flex;gap:6px;justify-content:center;margin-top:28px;flex-wrap:wrap;}
.paginacao a{display:flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 8px;border-radius:6px;background:var(--card);border:1px solid var(--borda);color:var(--texto);font-size:13px;font-weight:600;}
.paginacao a:hover,.paginacao a.ativo{background:var(--verde);color:#000;border-color:var(--verde);}

/* == FOOTER == */
.footer{background:var(--bg2);border-top:2px solid var(--verde);padding:44px 0 0;margin-top:44px;}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr;gap:28px;margin-bottom:36px;}
.footer-col h3{font-size:13px;font-weight:700;color:var(--branco);margin-bottom:14px;text-transform:uppercase;letter-spacing:.05em;}
.footer-col p{font-size:13px;color:var(--muted);line-height:1.6;}
.footer-logo img{height:42px;margin-bottom:10px;}
.footer-social{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap;}
.footer-social a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:var(--card);border:1px solid var(--borda);color:var(--texto);font-size:15px;transition:all .2s;}
.footer-social a:hover{background:var(--verde);color:#000;border-color:var(--verde);}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:7px;}
.footer-links a{color:var(--muted);font-size:13px;display:flex;align-items:center;gap:6px;}
.footer-links a:hover{color:var(--verde);padding-left:3px;}
.footer-links i{font-size:10px;color:var(--verde);}
.footer-contato-item{display:flex;align-items:flex-start;gap:8px;margin-bottom:10px;font-size:13px;color:var(--muted);}
.footer-contato-item i{color:var(--verde);margin-top:2px;flex-shrink:0;}
.footer-contato-item a{color:var(--muted);}
.footer-contato-item a:hover{color:var(--verde);}
.footer-bottom{border-top:1px solid var(--borda);padding:16px 0;text-align:center;font-size:12px;color:var(--muted);}

/* == WHATSAPP FLOAT == */
.whatsapp-float{position:fixed;bottom:20px;right:20px;width:52px;height:52px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:26px;color:#fff;box-shadow:0 4px 12px rgba(0,0,0,.4);z-index:9999;transition:transform .3s;}
.whatsapp-float:hover{transform:scale(1.1);color:#fff;}

/* ============================================================
   RESPONSIVO MOBILE
   ============================================================ */

/* TABLET 1024px */
@media(max-width:1024px){
  .grid-main{grid-template-columns:1fr;}
  .sidebar{order:2;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .anuncie-motivos,.anuncie-formatos{grid-template-columns:1fr 1fr;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
}

/* MOBILE 768px */
@media(max-width:768px){
  /* MENU MOBILE */
  .menu-toggle{display:block;}
  .nav-links{
    display:none!important;
    position:absolute;
    top:100%;
    left:0;right:0;
    background:var(--bg2);
    flex-direction:column!important;
    border-top:1px solid var(--borda);
    border-bottom:2px solid var(--verde);
    z-index:999;
    max-height:80vh;
    overflow-y:auto;
  }
  .nav-links.aberto{display:flex!important;}
  .nav-links a{
    padding:13px 20px;
    border-bottom:1px solid var(--borda)!important;
    border-right:none!important;
    width:100%;
    font-size:14px;
  }
  .nav-links a:last-child{border-bottom:none!important;}

  /* TOPBAR */
  .topbar .container{flex-wrap:wrap;gap:8px;}
  .topbar-logo img{height:40px;}
  .topbar-right{width:100%;justify-content:space-between;}
  .topbar-search{flex:1;max-width:none;}
  .topbar-search input{font-size:13px;}

  /* HERO */
  .hero-slide img{height:220px;}
  .hero-slide-title{font-size:17px;}
  .hero-slide-content{padding:24px 14px 16px;}
  .hero-slide-meta{font-size:11px;gap:8px;}
  .hero-controls button{width:30px;height:30px;font-size:13px;}

  /* GRIDS */
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}

  /* DESTAQUE HOME - mobile stacked */
  .destaque-grid{grid-template-columns:1fr!important;}

  /* CARDS */
  .card-img img{height:200px;}
  .card-h .card-img{width:110px;}
  .card-h .card-img img{width:110px;min-height:90px;}

  /* NOTÍCIA */
  .noticia-titulo{font-size:20px;}
  .noticia-resumo{font-size:14px;}
  .noticia-conteudo{font-size:15px;}
  .noticia-compartilhar{gap:6px;}
  .noticia-compartilhar a,.noticia-compartilhar button{padding:7px 12px;font-size:12px;}

  /* FORMULÁRIOS */
  .form-row{grid-template-columns:1fr;}
  .form-card{padding:20px 14px;}

  /* CONTATO */
  .contato-grid{grid-template-columns:1fr;}

  /* FOOTER */
  .footer-grid{grid-template-columns:1fr 1fr;}

  /* ANUNCIE */
  .anuncie-motivos,.anuncie-formatos{grid-template-columns:1fr;}
  .anuncie-hero h1{font-size:22px;}
  .bloco-comercial{padding:24px 14px;}
  .bloco-comercial h2{font-size:18px;}
  .bloco-comercial-btns{flex-direction:column;align-items:center;}
  .bloco-comercial-btns .btn{width:100%;justify-content:center;}
}

/* SMALL MOBILE 480px */
@media(max-width:480px){
  .container{padding:0 12px;}
  .hero-slide img{height:180px;}
  .hero-slide-title{font-size:15px;}
  .hero-slide-content{padding:20px 12px 14px;}
  .btn-whatsapp-top span{display:none;}
  .footer-grid{grid-template-columns:1fr;}
  .topbar-logo img{height:36px;}
  .secao-titulo{font-size:15px;}
  .noticia-titulo{font-size:18px;}
  .card-img img{height:175px;}
  .anuncie-hero{padding:32px 12px;}
}

/* == BANNER SLIDER == */
.bslider-wrap{position:relative;overflow:hidden;margin:16px 0;}
.bslider-track{display:flex;transition:transform .5s ease;}
.bslider-item{min-width:100%;flex-shrink:0;}
.bslider-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.55);border:none;color:#fff;width:34px;height:34px;border-radius:50%;cursor:pointer;font-size:20px;line-height:1;z-index:5;transition:background .2s;}
.bslider-btn:hover{background:rgba(0,191,166,.8);}
.bslider-prev{left:8px;}
.bslider-next{right:8px;}
.bslider-dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:5px;z-index:5;}
.bsdot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4);cursor:pointer;transition:background .3s;}

/* ============================================================
   AJUSTES RESPONSIVOS FINAIS - SITE PÚBLICO
   Corrige também elementos com CSS inline nos arquivos PHP.
   ============================================================ */
html{width:100%;overflow-x:hidden;}
body{width:100%;overflow-x:hidden;}
iframe,video,embed,object{max-width:100%;}
input,select,textarea,button{font-family:inherit;max-width:100%;}
.bslider-item img{width:100%!important;max-width:100%;}

@media(max-width:1024px){
  [style*="display:grid"][style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important;}
  .grid-main{gap:18px;}
}

@media(max-width:768px){
  .navbar .container{min-height:48px;}
  .menu-toggle{display:flex;align-items:center;justify-content:center;min-width:44px;}
  .nav-links{box-shadow:0 12px 24px rgba(0,0,0,.35);}
  .nav-links a i{min-width:18px;}
  .topbar .container{justify-content:center;}
  .topbar-logo{margin:0 auto;}
  .topbar-right{display:grid;grid-template-columns:1fr auto;align-items:center;}
  .btn-whatsapp-top{min-height:38px;justify-content:center;}
  [style*="display:grid"][style*="grid-template-columns"]{grid-template-columns:1fr!important;}
  [style*="display:grid"]{gap:14px!important;}
  [style*="height:320px"]{height:210px!important;}
  [style*="width:180px"]{width:115px!important;min-width:115px!important;}
  [style*="height:130px"]{height:100px!important;}
  [style*="font-size:19px"]{font-size:16px!important;}
  .card{width:100%;}
  .card-h{align-items:stretch;}
  .card-h .card-img{width:115px!important;min-width:115px!important;}
  .card-h .card-img img{width:115px!important;height:100%!important;min-height:100px;}
  .card-body{min-width:0;}
  .card-title{word-break:normal;overflow-wrap:anywhere;}
  .secao-header{gap:10px;align-items:flex-start;}
  .secao-link{padding-top:2px;}
  .bslider-wrap{margin:12px 0!important;}
  .bslider-item img{height:auto!important;max-height:220px!important;object-fit:cover;}
  .bslider-dots{bottom:14px;}
  .bslider-btn{width:30px;height:30px;font-size:17px;}
  .sidebar form[style*="display:flex"]{flex-wrap:nowrap;}
  .whatsapp-float{width:48px;height:48px;right:14px;bottom:14px;font-size:24px;}
}

@media(max-width:560px){
  .topbar-right{grid-template-columns:1fr;gap:8px;width:100%;}
  .topbar-search{width:100%;}
  .btn-whatsapp-top{width:100%;}
  .hero-controls{right:12px;bottom:12px;}
  .hero-slide-content{padding-right:88px;}
  .card-h{flex-direction:column;}
  .card-h .card-img,.card-h .card-img img{width:100%!important;min-width:100%!important;height:175px!important;}
  .card-h .card-img img{object-fit:cover;}
  [style*="width:180px"]{width:100%!important;min-width:100%!important;}
  [style*="height:130px"]{height:175px!important;}
  .noticia-meta{gap:8px;}
  .noticia-compartilhar a,.noticia-compartilhar button{flex:1;justify-content:center;min-width:130px;}
  .bslider-item img{max-height:170px!important;}
  .footer-grid{gap:20px;}
}

/* CORREÇÃO FINAL: BANNERS 100% RESPONSIVOS */
.hero-publicidade{background:#05090d;}
.hero-publicidade .hero-slide{background:#05090d;}
.hero-publicidade .hero-slide a{display:block;width:100%;}
.bslider-wrap{width:100%;max-width:100%;overflow:hidden;background:transparent;}
.bslider-track{width:100%;}
.bslider-item,.bslider-item a{width:100%;max-width:100%;display:block;}
.bslider-img,.bslider-item img{width:100%!important;max-width:100%!important;height:auto!important;max-height:none!important;object-fit:contain!important;object-position:center center!important;background:#05090d;}
.bslider-topo,.bslider-meio_home,.bslider-materia,.bslider-rodape,.bslider-pesquisa{margin-left:auto!important;margin-right:auto!important;}
.bslider-lateral .bslider-img{background:var(--card);}
@media(max-width:768px){
  .hero-publicidade .hero-slide img{width:100%!important;height:auto!important;min-height:0!important;max-height:none!important;object-fit:contain!important;object-position:center center!important;background:#05090d;}
  .hero-publicidade .hero-slide-content{display:none!important;}
  .hero-publicidade .hero-controls{right:10px;bottom:10px;}
  .hero-publicidade .hero-controls button{width:32px;height:32px;background:rgba(0,0,0,.65);}
  .bslider-wrap{margin:12px 0!important;}
  .bslider-dots{bottom:18px;}
}
@media(max-width:480px){
  .hero-publicidade{margin-bottom:18px;}
  .hero-publicidade .hero-controls button{width:28px;height:28px;font-size:13px;}
  .bslider-btn{width:28px!important;height:28px!important;font-size:16px!important;}
  .bslider-dots{bottom:16px;}
}

/* Banner dentro da matéria: sempre visível também em matérias curtas/novas */
.banner-dentro-materia{width:100%;margin:24px 0;clear:both;display:block;}
.banner-dentro-materia .bslider-wrap{margin:0 auto!important;}
.banner-dentro-materia img{width:100%!important;height:auto!important;object-fit:contain!important;}
@media(max-width:768px){.banner-dentro-materia{margin:18px 0;}}

/* ============================================================
   LAYOUT 2026 - TOPO NOVO + CORPO CLARO
   Alteração visual sem remover funcionalidades do sistema.
   ============================================================ */
body.public-site{
  background:#f4f6f8;
  color:#222b36;
}
body.public-site .container{max-width:1280px;}

/* Barra superior com data e redes */
.public-socialbar{
  background:#121a23;
  border-bottom:2px solid var(--verde);
  color:#c9d1dc;
  font-weight:700;
  font-size:15px;
}
.public-socialbar-inner{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.public-date{letter-spacing:.02em;}
.public-socials{display:flex;align-items:center;gap:10px;white-space:nowrap;}
.public-socials span{margin-right:6px;}
.public-socials a{
  width:24px;height:24px;
  display:inline-flex;align-items:center;justify-content:center;
  color:#aeb9c7;
  font-size:19px;
}
.public-socials a:hover{color:var(--verde);transform:translateY(-1px);}

/* Cabeçalho principal */
.public-brandbar{
  position:relative;
  background:
    linear-gradient(90deg,rgba(12,18,25,.96),rgba(20,31,41,.92)),
    radial-gradient(circle at 20% 0%,rgba(0,191,166,.12),transparent 35%);
  border-bottom:1px solid rgba(0,191,166,.55);
  overflow:hidden;
}
.public-brandbar:before{
  content:"DATTA TV";
  position:absolute;
  inset:auto auto -72px 34%;
  font-size:150px;
  line-height:1;
  font-weight:900;
  color:rgba(255,255,255,.025);
  letter-spacing:-8px;
  pointer-events:none;
  white-space:nowrap;
}
.public-brandbar-inner{
  min-height:165px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:46px;
  position:relative;
  z-index:1;
}
.public-logo{display:flex;align-items:center;flex-shrink:0;}
.public-logo img{height:96px;width:auto;filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));}
.public-header-actions{display:flex;align-items:center;gap:12px;flex:1;justify-content:flex-end;}
.site-search{
  width:min(560px,100%);
  height:54px;
  display:flex;
  align-items:center;
  background:#fff;
  border:2px solid var(--verde);
  border-radius:999px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}
.site-search input{
  flex:1;
  height:100%;
  border:0;
  outline:0;
  color:#66707d;
  font-size:18px;
  padding:0 22px 0 34px;
  text-transform:uppercase;
  background:#fff;
  min-width:0;
}
.site-search input::placeholder{color:#88909b;opacity:1;}
.site-search button{
  width:48px;
  height:48px;
  margin-right:3px;
  border:0;
  border-radius:50%;
  background:#050607;
  color:#fff;
  font-size:23px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .2s;
  flex-shrink:0;
}
.site-search button:hover{background:var(--verde);color:#000;}
.btn-send-news{
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 32px;
  border-radius:999px;
  background:var(--verde);
  color:#fff;
  font-size:17px;
  font-weight:900;
  letter-spacing:.02em;
  white-space:nowrap;
  box-shadow:0 8px 24px rgba(0,191,166,.22);
}
.btn-send-news:hover{background:var(--verde2);color:#00110e;transform:translateY(-1px);}

/* Menu */
.public-navbar{
  background:#111820;
  border-bottom:6px solid var(--verde);
  position:relative;
  top:auto;
}
.public-navbar .container{min-height:62px;}
.public-navbar .nav-links a{
  color:#d8dee8;
  font-size:15px;
  font-weight:800;
  padding:20px 14px;
  border-bottom:0;
}
.public-navbar .nav-links a:hover,
.public-navbar .nav-links a.ativo{
  color:#fff;
  background:rgba(0,191,166,.14);
  border-bottom-color:transparent;
}
.public-navbar .nav-links a i{color:#d8dee8;}
.public-navbar .nav-links a:hover i,
.public-navbar .nav-links a.ativo i{color:var(--verde);}

/* Hero publicidade abaixo do menu */
body.public-site .hero{margin-bottom:0;background:#070b0f;border-bottom:0;}
body.public-site .hero-publicidade .hero-slide img{
  width:100%!important;
  height:auto!important;
  max-height:none!important;
  object-fit:contain!important;
  background:#070b0f;
}
body.public-site .hero-publicidade .hero-slide-content{display:none;}
body.public-site .hero-controls{bottom:18px;right:18px;}

/* Corpo claro */
body.public-site > .container{
  background:#f4f6f8;
  padding-top:18px;
}
body.public-site .secao{margin-bottom:34px;}
body.public-site .secao-header{
  background:#303236;
  border:0;
  border-radius:8px;
  min-height:46px;
  padding:0 14px;
  margin-bottom:18px;
  box-shadow:0 3px 10px rgba(0,0,0,.08);
}
body.public-site .secao-titulo{
  color:#fff;
  font-size:17px;
}
body.public-site .secao-titulo span{
  height:24px;
  background:#d29b20;
}
body.public-site .secao-link{
  background:#fff;
  color:#23272d;
  border-radius:999px;
  padding:7px 12px;
  font-weight:900;
  font-size:12px;
  box-shadow:0 2px 6px rgba(0,0,0,.14);
}
body.public-site .secao-link:hover{background:var(--verde);color:#00110e;}
body.public-site .card{
  background:#fff;
  border:0;
  border-radius:8px;
  box-shadow:0 8px 22px rgba(24,35,45,.13);
  overflow:hidden;
}
body.public-site .card:hover{
  border-color:transparent;
  box-shadow:0 12px 28px rgba(24,35,45,.18);
}
body.public-site .card-body{background:#fff;}
body.public-site .card-title,
body.public-site .card-title a{
  color:#1f2731;
  font-weight:900;
}
body.public-site .card-title a:hover{color:var(--verde);}
body.public-site .card-resumo{color:#53606d;}
body.public-site .card-meta{color:#7b8795;}
body.public-site .card-img{background:#d7a124;}
body.public-site .card-img img[src$="geral-1.jpg"],
body.public-site .card-img img[src$="economia-1.jpg"],
body.public-site .card-img img[src$="educacao-1.jpg"],
body.public-site .card-img img[src$="policial-1.jpg"]{
  background:#d7a124;
}
body.public-site .banner-area,
body.public-site .bslider-wrap{background:transparent;}
body.public-site .bslider-img,
body.public-site .bslider-item img{background:transparent!important;border-radius:8px!important;}
body.public-site .bslider-wrap:after{
  content:"PUBLICIDADE";
  display:block;
  text-align:center;
  color:#9aa3ad;
  font-size:13px;
  letter-spacing:.08em;
  margin-top:6px;
  font-weight:700;
}

/* Páginas internas em fundo claro */
body.public-site .grid-main,
body.public-site main,
body.public-site .form-card,
body.public-site .sidebar-widget{
  color:#26313d;
}
body.public-site .sidebar-widget,
body.public-site .form-card{
  background:#fff;
  border:0;
  box-shadow:0 8px 22px rgba(24,35,45,.12);
}
body.public-site .sidebar-titulo,
body.public-site .form-card h2,
body.public-site .noticia-titulo,
body.public-site .noticia-conteudo h2,
body.public-site .noticia-conteudo h3{
  color:#1f2731;
}
body.public-site .noticia-resumo,
body.public-site .noticia-conteudo,
body.public-site .sidebar-cat-list a,
body.public-site .contato-item p{color:#4c5a68;}
body.public-site .form-control{background:#fff;color:#1f2731;border-color:#d9e0e7;}
body.public-site .form-label{color:#53606d;}

/* Bloco comercial */
body.public-site .bloco-comercial{
  background:#303236;
  border:2px solid var(--verde);
  box-shadow:0 12px 30px rgba(24,35,45,.14);
}
body.public-site .bloco-comercial h2{color:#fff;}
body.public-site .bloco-comercial p{color:#c5cfda;}

/* Footer permanece escuro e contrastado */
body.public-site .footer{background:#111820;color:#bfc7d5;margin-top:0;}
body.public-site .footer-col h3{color:#fff;}
body.public-site .footer-col p,
body.public-site .footer-links a,
body.public-site .footer-contato-item,
body.public-site .footer-contato-item a{color:#aeb8c6;}

@media(max-width:1024px){
  .public-brandbar-inner{gap:24px;}
  .public-logo img{height:78px;}
  .btn-send-news{padding:0 22px;font-size:15px;}
  .site-search{height:50px;}
}
@media(max-width:768px){
  .public-socialbar-inner{min-height:auto;padding-top:8px;padding-bottom:8px;flex-direction:column;gap:6px;text-align:center;}
  .public-socials{justify-content:center;flex-wrap:wrap;}
  .public-brandbar-inner{min-height:auto;padding-top:20px;padding-bottom:20px;flex-direction:column;gap:18px;}
  .public-logo img{height:72px;}
  .public-header-actions{width:100%;flex-direction:column;}
  .site-search{width:100%;height:48px;}
  .site-search input{font-size:14px;padding-left:18px;}
  .site-search button{width:42px;height:42px;font-size:19px;}
  .btn-send-news{width:100%;height:48px;font-size:14px;}
  .public-navbar .container{min-height:50px;}
  .public-navbar .nav-links{background:#111820;}
  .public-navbar .nav-links a{font-size:14px;padding:14px 18px;}
  body.public-site .hero-controls{bottom:10px;right:10px;}
  body.public-site .secao-header{border-radius:7px;}
}
@media(max-width:480px){
  .public-date{font-size:13px;}
  .public-socials span{width:100%;margin:0 0 2px;}
  .public-logo img{height:62px;}
  body.public-site .secao-header{align-items:center;}
  body.public-site .secao-titulo{font-size:14px;}
  body.public-site .secao-link{font-size:11px;padding:6px 9px;}
}


/* ============================================================
   AJUSTES SOLICITADOS - SITE PÚBLICO
   ============================================================ */

/* 01 - Fundo full width no cabeçalho principal */
.public-brandbar{
  background:
    linear-gradient(90deg,rgba(12,18,25,.72),rgba(20,31,41,.68)),
    url('../imagens/fundo-cabecalho.png') center center / cover no-repeat !important;
}
.public-brandbar:before{display:none!important;}
.public-brandbar-inner{min-height:160px;}
.public-logo img{height:96px;}
.site-search{box-shadow:0 8px 24px rgba(0,0,0,.30);}

/* 02 - Página de notícia com conteúdo claro e sidebar escura */
body.public-site .noticia-page-wrap{
  background:#f4f6f8;
  padding-top:22px!important;
}
body.public-site .noticia-layout{
  align-items:start;
}
body.public-site .noticia-page-wrap article{
  background:#fff;
  color:#1f2731;
  border-radius:10px;
  padding:0 18px 28px;
  box-shadow:0 8px 24px rgba(24,35,45,.08);
}
body.public-site .noticia-breadcrumb{
  padding-top:14px;
  color:#8a95a3;
  font-size:12px;
}
body.public-site .noticia-breadcrumb a{color:var(--verde);font-weight:800;}
.noticia-page-sectionbar{
  min-height:48px;
  background:var(--cat-color,#e53e3e);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 12px 0 18px;
  margin:8px -18px 20px;
  box-shadow:0 4px 14px rgba(24,35,45,.12);
}
.noticia-section-title{
  font-size:20px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.noticia-section-search{
  width:min(330px,44%);
  height:28px;
  background:#fff;
  border-radius:999px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.noticia-section-search input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:#fff;
  color:#6b7480;
  font-size:10px;
  padding:0 14px;
  text-transform:uppercase;
}
.noticia-section-search button{
  width:26px;
  height:26px;
  border:0;
  margin-right:1px;
  border-radius:50%;
  background:#050607;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
body.public-site .noticia-page-wrap .noticia-titulo{
  color:#252b33;
  font-size:36px;
  line-height:1.08;
  letter-spacing:-.03em;
}
body.public-site .noticia-page-wrap .noticia-resumo{
  color:#596575;
  font-size:20px;
  line-height:1.35;
}
body.public-site .noticia-page-wrap .noticia-meta{
  color:#3d4652;
  border-bottom:0;
  font-style:italic;
}
body.public-site .noticia-page-wrap .noticia-conteudo{
  color:#303947;
  font-size:16px;
  line-height:1.75;
  font-style:italic;
}
body.public-site .noticia-page-wrap .noticia-conteudo h2,
body.public-site .noticia-page-wrap .noticia-conteudo h3{color:#252b33;}
body.public-site .noticia-page-wrap .secao-header{
  background:#111820;
  border-radius:0;
  box-shadow:none;
}
body.public-site .noticia-page-wrap .sidebar-widget{
  background:#111820!important;
  border:1px solid #27313d!important;
  color:#bfc7d5!important;
  box-shadow:none!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .sidebar-titulo{
  color:#fff!important;
  border-bottom-color:var(--verde);
}
body.public-site .noticia-page-wrap .sidebar-cat-list a,
body.public-site .noticia-page-wrap .sidebar-widget p,
body.public-site .noticia-page-wrap .sidebar-widget .card-resumo,
body.public-site .noticia-page-wrap .sidebar-widget .card-meta{
  color:#aeb8c6!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .card{
  background:#161f28!important;
  border:1px solid #26313d!important;
  box-shadow:none!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .card-body{background:#161f28!important;}
body.public-site .noticia-page-wrap .sidebar-widget .card-title,
body.public-site .noticia-page-wrap .sidebar-widget .card-title a,
body.public-site .noticia-page-wrap .sidebar-widget a[style*="var(--branco)"]{
  color:#fff!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .form-control{
  background:#0c1218!important;
  color:#fff!important;
  border-color:#27313d!important;
}
body.public-site .noticia-page-wrap .sidebar .bslider-wrap,
body.public-site .noticia-page-wrap .sidebar .banner-area{
  background:transparent!important;
}

/* 03 - Página de contato: textos visíveis no fundo claro */
body.public-site .contato-grid .contato-item h4{
  color:#98a2b3!important;
  font-weight:900;
}
body.public-site .contato-grid .contato-item p,
body.public-site .contato-grid .contato-item p a{
  color:#344152!important;
  font-weight:500;
}
body.public-site .contato-grid .contato-item p a:hover{color:var(--verde)!important;}
body.public-site .contato-grid .contato-item i{color:var(--verde)!important;}
body.public-site .form-card h2{color:#111820!important;}

/* 04 - Página anuncie: cards brancos com escrita escura */
body.public-site .anuncie-motivo,
body.public-site .anuncie-formato{
  background:#fff!important;
  border:1px solid #dde4eb!important;
  box-shadow:0 8px 22px rgba(24,35,45,.10);
  color:#26313d!important;
}
body.public-site .anuncie-motivo:hover,
body.public-site .anuncie-formato:hover{
  transform:translateY(-3px);
  border-color:var(--verde)!important;
  box-shadow:0 12px 28px rgba(24,35,45,.15);
}
body.public-site .anuncie-motivo h3{
  color:#18212b!important;
}
body.public-site .anuncie-motivo p,
body.public-site .anuncie-formato p{
  color:#53606d!important;
}
body.public-site .anuncie-formato h4{
  color:var(--verde)!important;
  font-weight:900;
}
body.public-site .anuncie-motivo i,
body.public-site .anuncie-formato i{color:var(--verde)!important;}

/* 05 - Rodapé com logo maior e ícones iguais ao topo */
body.public-site .footer{
  background:#111820!important;
  border-top:8px solid var(--verde);
  padding-top:52px;
}
body.public-site .footer-logo img{
  height:124px!important;
  width:auto;
  margin-bottom:18px;
}
body.public-site .footer-grid{
  grid-template-columns:1.45fr 1fr 1fr 1.25fr;
  gap:52px;
}
.footer-social-top-icons{
  gap:10px;
  margin-top:28px;
}
.footer-social-top-icons a{
  width:36px!important;
  height:36px!important;
  border-radius:8px!important;
  background:#c4cbd6!important;
  border:0!important;
  color:#111820!important;
  font-size:22px!important;
}
.footer-social-top-icons a:hover{
  background:var(--verde)!important;
  color:#000!important;
  transform:translateY(-2px);
}
body.public-site .footer-col h3{
  font-size:17px;
  color:#fff!important;
  font-weight:900;
}
body.public-site .footer-col p,
body.public-site .footer-links a,
body.public-site .footer-contato-item,
body.public-site .footer-contato-item a{
  font-size:16px;
  color:#c5cfda!important;
}
body.public-site .footer-links li{margin-bottom:12px;}
body.public-site .footer-bottom{
  margin-top:34px;
  padding:22px 0;
  font-size:14px;
}

@media(max-width:1024px){
  body.public-site .noticia-page-wrap .noticia-titulo{font-size:30px;}
  body.public-site .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
}
@media(max-width:768px){
  .public-brandbar{background-position:center top!important;}
  .public-brandbar-inner{min-height:auto;}
  .noticia-page-sectionbar{margin-left:-14px;margin-right:-14px;flex-direction:column;align-items:stretch;padding:12px 14px;gap:10px;}
  .noticia-section-search{width:100%;}
  body.public-site .noticia-page-wrap article{padding:0 14px 24px;}
  body.public-site .noticia-page-wrap .noticia-titulo{font-size:24px;}
  body.public-site .noticia-page-wrap .noticia-resumo{font-size:16px;}
  body.public-site .footer-logo img{height:96px!important;}
  body.public-site .footer-grid{grid-template-columns:1fr;gap:26px;}
  body.public-site .footer-col p,
  body.public-site .footer-links a,
  body.public-site .footer-contato-item,
  body.public-site .footer-contato-item a{font-size:14px;}
}

/* ============================================================
   AJUSTES FINAIS - SIDEBAR DARK + MENU MOBILE 2026
   ============================================================ */

/* Sidebars escuras em todas as páginas públicas com widget lateral */
body.public-site .grid-main > .sidebar .sidebar-widget{
  background:#111820!important;
  border:1px solid #26313d!important;
  color:#bfc7d5!important;
  box-shadow:0 10px 24px rgba(17,24,32,.18)!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget .sidebar-titulo{
  color:#fff!important;
  border-bottom:2px solid var(--verde)!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget .sidebar-titulo i,
body.public-site .grid-main > .sidebar .sidebar-widget i{color:var(--verde)!important;}
body.public-site .grid-main > .sidebar .sidebar-widget p,
body.public-site .grid-main > .sidebar .sidebar-widget span,
body.public-site .grid-main > .sidebar .sidebar-widget small,
body.public-site .grid-main > .sidebar .sidebar-widget .card-resumo,
body.public-site .grid-main > .sidebar .sidebar-widget .card-meta{
  color:#aeb8c6!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget a{
  color:#d8dee8!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget a:hover{color:var(--verde)!important;}
body.public-site .grid-main > .sidebar .sidebar-widget .sidebar-cat-list li{
  border-bottom:1px solid #35404c!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget .card{
  background:#161f28!important;
  border:1px solid #26313d!important;
  box-shadow:none!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget .card-body{background:#161f28!important;}
body.public-site .grid-main > .sidebar .sidebar-widget .card-title,
body.public-site .grid-main > .sidebar .sidebar-widget .card-title a{
  color:#fff!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget .form-control,
body.public-site .grid-main > .sidebar .sidebar-widget input,
body.public-site .grid-main > .sidebar .sidebar-widget select,
body.public-site .grid-main > .sidebar .sidebar-widget textarea{
  background:#0c1218!important;
  color:#fff!important;
  border-color:#35404c!important;
}
body.public-site .grid-main > .sidebar .sidebar-widget .form-control::placeholder,
body.public-site .grid-main > .sidebar .sidebar-widget input::placeholder{color:#9aa6b5!important;}
body.public-site .grid-main > .sidebar .bslider-wrap:after,
body.public-site .grid-main > .sidebar .banner-area:after{
  color:#8994a3!important;
}

/* Logo do rodapé menor */
body.public-site .footer-logo img{
  height:93px!important;
  width:auto!important;
  max-width:260px!important;
}
@media(max-width:768px){
  body.public-site .footer-logo img{height:72px!important;max-width:220px!important;}
}

/* Mobile no padrão da referência: Categorias + links principais visíveis */
@media(max-width:768px){
  .public-navbar{
    border-top:2px solid var(--verde);
    border-bottom:3px solid var(--verde);
    overflow:visible;
  }
  .public-navbar .container{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:14px;
    overflow:visible;
  }
  .public-navbar .menu-toggle{
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0;
    min-width:auto;
    height:70px;
    color:#cfd7e2;
    font-size:28px;
    font-weight:900;
    white-space:nowrap;
  }
  .public-navbar .menu-toggle i{font-size:30px;color:#cfd7e2;}
  .public-navbar .menu-toggle span{display:inline-block;}
  .public-navbar .nav-links{
    display:flex!important;
    position:static!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    flex-direction:row!important;
    align-items:center!important;
    gap:18px;
    width:auto;
    max-height:none!important;
    overflow-x:auto;
    overflow-y:visible;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    flex:1;
    scrollbar-width:none;
  }
  .public-navbar .nav-links::-webkit-scrollbar{display:none;}
  .public-navbar .nav-links a{
    display:inline-flex!important;
    width:auto!important;
    padding:0!important;
    height:70px;
    border:0!important;
    background:transparent!important;
    color:#cfd7e2!important;
    font-size:26px!important;
    font-weight:900!important;
    align-items:center;
    justify-content:center;
    gap:8px;
    white-space:nowrap;
  }
  .public-navbar .nav-links a i{
    color:#cfd7e2!important;
    font-size:28px;
    min-width:auto;
  }
  .public-navbar .nav-links a:hover,
  .public-navbar .nav-links a.ativo{color:#fff!important;}
  .public-navbar .nav-links a:hover i,
  .public-navbar .nav-links a.ativo i{color:var(--verde)!important;}
  .public-navbar .nav-category-link{display:none!important;}
  .public-navbar .nav-links.aberto{
    position:absolute!important;
    top:100%!important;
    left:0!important;
    right:0!important;
    z-index:9999!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:0!important;
    background:#111820!important;
    border-top:1px solid #27313d!important;
    border-bottom:3px solid var(--verde)!important;
    box-shadow:0 18px 30px rgba(0,0,0,.45)!important;
    padding:8px 12px!important;
  }
  .public-navbar .nav-links.aberto .nav-category-link,
  .public-navbar .nav-links.aberto a{
    display:flex!important;
    height:42px!important;
    justify-content:flex-start!important;
    padding:0 10px!important;
    font-size:15px!important;
    border-bottom:1px solid #26313d!important;
  }
  .public-navbar .nav-links.aberto a i{font-size:16px!important;}
}
@media(max-width:560px){
  .public-navbar .container{gap:10px;min-height:62px;}
  .public-navbar .menu-toggle{height:62px;font-size:22px;gap:6px;}
  .public-navbar .menu-toggle i{font-size:24px;}
  .public-navbar .nav-links{gap:14px;}
  .public-navbar .nav-links a{height:62px;font-size:20px!important;gap:6px;}
  .public-navbar .nav-links a i{font-size:22px;}
}
@media(max-width:430px){
  .public-navbar .container{padding:0 10px;gap:8px;}
  .public-navbar .menu-toggle{font-size:18px;}
  .public-navbar .menu-toggle i{font-size:22px;}
  .public-navbar .nav-links{gap:10px;}
  .public-navbar .nav-links a{font-size:17px!important;}
  .public-navbar .nav-links a i{font-size:19px;}
}

/* ============================================================
   AJUSTE FINAL MOBILE - TOPO EXATAMENTE COMO REFERÊNCIA
   ============================================================ */
@media(max-width:768px){
  body.public-site .public-socialbar{background:#121a23;border-bottom:3px solid var(--verde);}
  body.public-site .public-socialbar-inner{
    min-height:44px!important;
    padding-top:0!important;
    padding-bottom:0!important;
    flex-direction:row!important;
    justify-content:space-between!important;
    align-items:center!important;
    gap:10px!important;
    text-align:left!important;
  }
  body.public-site .public-date{
    font-size:20px!important;
    font-weight:900!important;
    color:#c8d0dc!important;
    white-space:nowrap!important;
  }
  body.public-site .public-socials{
    display:flex!important;
    justify-content:flex-end!important;
    align-items:center!important;
    gap:9px!important;
    flex-wrap:nowrap!important;
    white-space:nowrap!important;
    font-size:20px!important;
  }
  body.public-site .public-socials span{
    width:auto!important;
    margin:0 12px 0 0!important;
    font-size:20px!important;
    font-weight:900!important;
    color:#c8d0dc!important;
  }
  body.public-site .public-socials a{
    width:24px!important;
    height:24px!important;
    font-size:22px!important;
    color:#c8d0dc!important;
  }

  body.public-site .public-brandbar{
    background:
      linear-gradient(90deg,rgba(12,18,25,.76),rgba(20,31,41,.70)),
      url('../imagens/fundo-cabecalho.png') center center / cover no-repeat!important;
    border-bottom:3px solid var(--verde)!important;
  }
  body.public-site .public-brandbar-inner{
    min-height:210px!important;
    padding-top:0!important;
    padding-bottom:0!important;
    flex-direction:row!important;
    justify-content:space-between!important;
    align-items:center!important;
    gap:28px!important;
  }
  body.public-site .public-logo{
    flex:0 0 300px!important;
  }
  body.public-site .public-logo img{
    height:98px!important;
    width:auto!important;
  }
  body.public-site .public-header-actions{
    width:auto!important;
    flex:1!important;
    flex-direction:row!important;
    justify-content:flex-end!important;
    align-items:center!important;
    gap:16px!important;
  }
  body.public-site .site-search{
    width:min(460px,48vw)!important;
    height:60px!important;
    flex:0 1 460px!important;
    border:2px solid var(--verde)!important;
    border-radius:999px!important;
  }
  body.public-site .site-search input{
    font-size:20px!important;
    padding-left:22px!important;
  }
  body.public-site .site-search button{
    width:54px!important;
    height:54px!important;
    font-size:25px!important;
  }
  body.public-site .btn-send-news{
    width:auto!important;
    height:60px!important;
    padding:0 30px!important;
    font-size:21px!important;
    border-radius:999px!important;
  }

  body.public-site .public-navbar{
    background:#090d10!important;
    border-top:0!important;
    border-bottom:3px solid var(--verde)!important;
  }
  body.public-site .public-navbar .container{
    max-width:100%!important;
    min-height:88px!important;
    padding:0 76px!important;
    gap:38px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    overflow:hidden!important;
  }
  body.public-site .public-navbar .menu-toggle{
    display:inline-flex!important;
    height:88px!important;
    color:#cfd7e2!important;
    font-size:33px!important;
    font-weight:900!important;
    gap:13px!important;
    text-shadow:0 2px 3px rgba(0,0,0,.35)!important;
  }
  body.public-site .public-navbar .menu-toggle i{
    font-size:34px!important;
    color:#cfd7e2!important;
  }
  body.public-site .public-navbar .nav-links{
    display:flex!important;
    position:static!important;
    flex:1!important;
    width:auto!important;
    max-height:none!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    flex-direction:row!important;
    align-items:center!important;
    gap:34px!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    scrollbar-width:none!important;
  }
  body.public-site .public-navbar .nav-links::-webkit-scrollbar{display:none!important;}
  body.public-site .public-navbar .nav-links .nav-category-link{display:none!important;}
  body.public-site .public-navbar .nav-links a{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:auto!important;
    height:88px!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    color:#cfd7e2!important;
    font-size:34px!important;
    font-weight:900!important;
    gap:12px!important;
    white-space:nowrap!important;
    text-shadow:0 2px 3px rgba(0,0,0,.35)!important;
  }
  body.public-site .public-navbar .nav-links a i{
    color:#cfd7e2!important;
    font-size:36px!important;
  }
  body.public-site .public-navbar .nav-links a:hover,
  body.public-site .public-navbar .nav-links a.ativo,
  body.public-site .public-navbar .nav-links a:hover i,
  body.public-site .public-navbar .nav-links a.ativo i{
    color:#fff!important;
  }
  body.public-site .public-navbar .nav-links.aberto{
    position:absolute!important;
    top:100%!important;
    left:0!important;
    right:0!important;
    z-index:99999!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    background:#111820!important;
    padding:10px 12px!important;
    gap:0!important;
    border-top:1px solid #27313d!important;
    border-bottom:3px solid var(--verde)!important;
    box-shadow:0 18px 30px rgba(0,0,0,.45)!important;
  }
  body.public-site .public-navbar .nav-links.aberto .nav-category-link,
  body.public-site .public-navbar .nav-links.aberto a{
    display:flex!important;
    height:42px!important;
    justify-content:flex-start!important;
    padding:0 10px!important;
    font-size:15px!important;
    border-bottom:1px solid #26313d!important;
    text-shadow:none!important;
  }
  body.public-site .public-navbar .nav-links.aberto a i{font-size:16px!important;}
}

@media(max-width:560px){
  body.public-site .public-socialbar-inner{padding-left:12px!important;padding-right:12px!important;}
  body.public-site .public-date{font-size:12px!important;}
  body.public-site .public-socials span{font-size:12px!important;margin-right:4px!important;}
  body.public-site .public-socials{gap:5px!important;}
  body.public-site .public-socials a{font-size:14px!important;width:16px!important;height:16px!important;}
  body.public-site .public-brandbar-inner{
    min-height:118px!important;
    gap:10px!important;
    padding-left:12px!important;
    padding-right:12px!important;
  }
  body.public-site .public-logo{flex:0 0 112px!important;}
  body.public-site .public-logo img{height:55px!important;}
  body.public-site .public-header-actions{gap:7px!important;}
  body.public-site .site-search{height:42px!important;width:calc(100vw - 250px)!important;min-width:115px!important;}
  body.public-site .site-search input{font-size:11px!important;padding-left:12px!important;}
  body.public-site .site-search button{width:36px!important;height:36px!important;font-size:17px!important;}
  body.public-site .btn-send-news{height:42px!important;padding:0 12px!important;font-size:11px!important;}
  body.public-site .public-navbar .container{
    min-height:58px!important;
    padding:0 14px!important;
    gap:18px!important;
  }
  body.public-site .public-navbar .menu-toggle{height:58px!important;font-size:18px!important;gap:7px!important;}
  body.public-site .public-navbar .menu-toggle i{font-size:20px!important;}
  body.public-site .public-navbar .nav-links{gap:18px!important;}
  body.public-site .public-navbar .nav-links a{height:58px!important;font-size:18px!important;gap:6px!important;}
  body.public-site .public-navbar .nav-links a i{font-size:20px!important;}
}

/* ============================================================
   CORREÇÃO FINAL MOBILE - topo igual referência e sem cortar
   ============================================================ */
@media (max-width:560px){
  html, body{overflow-x:hidden!important;max-width:100%!important;}

  body.public-site .public-brandbar,
  body.public-site .public-navbar,
  body.public-site .public-socialbar{width:100%!important;overflow:hidden!important;}

  body.public-site .public-brandbar-inner{
    width:100%!important;
    max-width:100%!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:10px!important;
    padding-left:12px!important;
    padding-right:12px!important;
    overflow:hidden!important;
  }
  body.public-site .public-logo{
    flex:0 0 112px!important;
    width:112px!important;
    min-width:112px!important;
    max-width:112px!important;
  }
  body.public-site .public-logo img{
    height:auto!important;
    width:112px!important;
    max-width:112px!important;
  }
  body.public-site .public-header-actions{
    min-width:0!important;
    flex:1 1 auto!important;
    width:auto!important;
    max-width:calc(100% - 122px)!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:7px!important;
    overflow:hidden!important;
  }
  body.public-site .site-search{
    flex:1 1 auto!important;
    width:auto!important;
    min-width:115px!important;
    max-width:none!important;
    height:42px!important;
  }
  body.public-site .site-search input{
    font-size:11px!important;
    padding-left:12px!important;
    padding-right:4px!important;
  }
  body.public-site .site-search button{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    margin-right:2px!important;
    font-size:17px!important;
  }
  body.public-site .btn-send-news{
    flex:0 0 118px!important;
    width:118px!important;
    min-width:118px!important;
    max-width:118px!important;
    height:42px!important;
    padding:0 7px!important;
    font-size:10px!important;
    line-height:1!important;
    letter-spacing:0!important;
    white-space:nowrap!important;
    overflow:visible!important;
  }

  body.public-site .public-navbar .container{
    width:100%!important;
    max-width:100%!important;
    min-height:58px!important;
    padding:0 12px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:10px!important;
    overflow:hidden!important;
  }
  body.public-site .public-navbar .menu-toggle{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
    height:58px!important;
    padding:0!important;
    font-size:18px!important;
    gap:6px!important;
    white-space:nowrap!important;
  }
  body.public-site .public-navbar .menu-toggle i{font-size:20px!important;}
  body.public-site .public-navbar .nav-links{
    flex:1 1 auto!important;
    min-width:0!important;
    width:auto!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:0!important;
    overflow:hidden!important;
  }
  body.public-site .public-navbar .nav-links .nav-category-link{display:none!important;}
  body.public-site .public-navbar .nav-links a{
    flex:0 0 auto!important;
    height:58px!important;
    padding:0!important;
    margin:0!important;
    font-size:16px!important;
    line-height:1!important;
    gap:5px!important;
    white-space:nowrap!important;
    letter-spacing:-.04em!important;
  }
  body.public-site .public-navbar .nav-links a i{font-size:18px!important;}
}

@media (max-width:420px){
  body.public-site .public-logo,
  body.public-site .public-logo img{
    flex-basis:96px!important;
    width:96px!important;
    min-width:96px!important;
    max-width:96px!important;
  }
  body.public-site .public-header-actions{max-width:calc(100% - 106px)!important;gap:5px!important;}
  body.public-site .btn-send-news{
    flex-basis:100px!important;
    width:100px!important;
    min-width:100px!important;
    max-width:100px!important;
    font-size:9px!important;
    padding:0 4px!important;
  }
  body.public-site .site-search{min-width:100px!important;height:40px!important;}
  body.public-site .site-search input{font-size:10px!important;padding-left:9px!important;}
  body.public-site .site-search button{width:34px!important;height:34px!important;min-width:34px!important;}

  body.public-site .public-navbar .container{padding:0 8px!important;gap:7px!important;}
  body.public-site .public-navbar .menu-toggle{font-size:15px!important;gap:5px!important;}
  body.public-site .public-navbar .menu-toggle i{font-size:17px!important;}
  body.public-site .public-navbar .nav-links a{font-size:13px!important;gap:4px!important;letter-spacing:-.06em!important;}
  body.public-site .public-navbar .nav-links a i{font-size:15px!important;}
}

/* ============================================================
   AJUSTE FINAL MOBILE - MENU MAIS COMPACTO E COM RESPIRO
   Mantém: Categorias / Início / Notícias / Anuncie Aqui / Contato
   ============================================================ */
@media (max-width:560px){
  body.public-site .public-navbar .container{
    min-height:56px!important;
    padding:0 10px!important;
    gap:12px!important;
    overflow:hidden!important;
  }
  body.public-site .public-navbar .menu-toggle{
    height:56px!important;
    font-size:14px!important;
    line-height:1!important;
    gap:5px!important;
    letter-spacing:-.04em!important;
  }
  body.public-site .public-navbar .menu-toggle i{
    font-size:17px!important;
  }
  body.public-site .public-navbar .nav-links{
    height:56px!important;
    flex:1 1 auto!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:13px!important;
    overflow:hidden!important;
  }
  body.public-site .public-navbar .nav-links a{
    height:56px!important;
    font-size:14px!important;
    line-height:1!important;
    gap:4px!important;
    padding:0!important;
    margin:0!important;
    letter-spacing:-.055em!important;
    flex:0 0 auto!important;
  }
  body.public-site .public-navbar .nav-links a i{
    font-size:16px!important;
    min-width:auto!important;
  }
}

@media (max-width:430px){
  body.public-site .public-navbar .container{
    padding:0 7px!important;
    gap:8px!important;
  }
  body.public-site .public-navbar .menu-toggle{
    font-size:12.5px!important;
    gap:4px!important;
    letter-spacing:-.075em!important;
  }
  body.public-site .public-navbar .menu-toggle i{
    font-size:15px!important;
  }
  body.public-site .public-navbar .nav-links{
    gap:8px!important;
  }
  body.public-site .public-navbar .nav-links a{
    font-size:12.5px!important;
    gap:3px!important;
    letter-spacing:-.08em!important;
  }
  body.public-site .public-navbar .nav-links a i{
    font-size:14px!important;
  }
}

@media (max-width:380px){
  body.public-site .public-navbar .container{
    padding:0 5px!important;
    gap:6px!important;
  }
  body.public-site .public-navbar .menu-toggle,
  body.public-site .public-navbar .nav-links a{
    font-size:11.5px!important;
  }
  body.public-site .public-navbar .menu-toggle i,
  body.public-site .public-navbar .nav-links a i{
    font-size:13px!important;
  }
  body.public-site .public-navbar .nav-links{
    gap:6px!important;
  }
}

/* ============================================================
   PADRÃO FINAL - PÁGINAS DE NOTÍCIAS / MATÉRIAS
   Mantém cores dinâmicas por categoria e sidebar dark.
   ============================================================ */

/* Evita texto alternativo aparecendo sobre blocos quando imagem não existe */
body.public-site .card-img img,
body.public-site .noticia-imagem img,
body.public-site .sidebar .card-img img{
  color:transparent!important;
  font-size:0!important;
  text-indent:-9999px!important;
}

/* Página interna da notícia conforme referência */
body.public-site .noticia-page-wrap{
  max-width:1280px;
  background:#f4f6f8!important;
  padding-top:18px!important;
  padding-bottom:0!important;
}
body.public-site .noticia-page-wrap .noticia-layout{
  grid-template-columns:minmax(0,1fr) 320px!important;
  gap:28px!important;
  align-items:start!important;
}
body.public-site .noticia-page-wrap article{
  background:transparent!important;
  box-shadow:none!important;
  border-radius:0!important;
  padding:0!important;
  color:#242b34!important;
}
body.public-site .noticia-breadcrumb{
  margin:0 0 10px!important;
  padding:0!important;
  color:#6b7480!important;
  font-size:12px!important;
  gap:5px!important;
  line-height:1.4!important;
}
body.public-site .noticia-breadcrumb a{
  display:inline-flex!important;
  align-items:center!important;
  padding:3px 10px!important;
  border-radius:999px!important;
  color:#fff!important;
  background:var(--verde)!important;
  font-size:10px!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  line-height:1!important;
}
body.public-site .noticia-breadcrumb a:nth-of-type(2){
  background:var(--cat-color,#e53e3e)!important;
}
body.public-site .noticia-breadcrumb i{display:none!important;}
body.public-site .noticia-breadcrumb span{
  color:#7d8795!important;
  font-weight:600!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  max-width:520px!important;
}
body.public-site .noticia-page-sectionbar{
  margin:0 0 16px!important;
  min-height:52px!important;
  padding:0 28px!important;
  background:var(--cat-color,#e53e3e)!important;
  border-radius:0!important;
  box-shadow:none!important;
  display:flex!important;
  align-items:center!important;
}
body.public-site .noticia-section-title{
  color:#fff!important;
  font-size:21px!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  letter-spacing:.02em!important;
}
body.public-site .noticia-section-search{
  display:none!important;
}
body.public-site .noticia-page-wrap .noticia-titulo{
  color:#252b33!important;
  font-size:38px!important;
  line-height:1.08!important;
  letter-spacing:-.04em!important;
  margin:0 0 8px!important;
  font-weight:900!important;
}
body.public-site .noticia-page-wrap .noticia-resumo{
  color:#616b78!important;
  font-size:22px!important;
  line-height:1.35!important;
  margin:0 0 22px!important;
  font-weight:400!important;
}
body.public-site .noticia-page-wrap .noticia-meta{
  color:#2f3844!important;
  font-size:13px!important;
  line-height:1.5!important;
  font-weight:700!important;
  font-style:italic!important;
  border:0!important;
  padding:0!important;
  margin:0 0 24px!important;
  gap:6px 14px!important;
}
body.public-site .noticia-page-wrap .noticia-meta i{
  color:#2f3844!important;
}
body.public-site .noticia-page-wrap .noticia-imagem{
  margin:0 0 18px!important;
  border-radius:0!important;
  overflow:hidden!important;
  background:#d9a126!important;
}
body.public-site .noticia-page-wrap .noticia-imagem img{
  width:100%!important;
  height:auto!important;
  display:block!important;
  border-radius:0!important;
}
body.public-site .noticia-page-wrap .noticia-conteudo{
  color:#374150!important;
  font-size:16px!important;
  line-height:1.78!important;
  font-style:italic!important;
  font-weight:500!important;
}
body.public-site .noticia-page-wrap .noticia-conteudo p{
  margin-bottom:17px!important;
}
body.public-site .noticia-page-wrap .noticia-conteudo a{
  color:var(--verde)!important;
  font-weight:800!important;
}
body.public-site .noticia-page-wrap .noticia-conteudo h2,
body.public-site .noticia-page-wrap .noticia-conteudo h3{
  color:#252b33!important;
  font-style:normal!important;
}
body.public-site .noticia-page-wrap .noticia-compartilhar{
  margin-bottom:0!important;
}
body.public-site .noticia-page-wrap .noticia-compartilhar a,
body.public-site .noticia-page-wrap .noticia-compartilhar button{
  border-radius:4px!important;
  padding:8px 12px!important;
  font-size:12px!important;
}
body.public-site .noticia-page-wrap .btn-copy{
  background:#111820!important;
  color:#fff!important;
  border-color:#111820!important;
}
body.public-site .noticia-page-wrap .banner-dentro-materia{
  margin:24px 0!important;
}
body.public-site .noticia-page-wrap .banner-dentro-materia .bslider-wrap:after{
  content:'PUBLICIDADE'!important;
  display:block!important;
  color:#9aa3ad!important;
  text-align:center!important;
  font-size:12px!important;
  font-style:normal!important;
  letter-spacing:.06em!important;
  margin-top:4px!important;
}

/* Sidebar da matéria desce para alinhar com a imagem, como na referência */
body.public-site .noticia-page-wrap .sidebar{
  padding-top:190px!important;
  gap:16px!important;
}
body.public-site .noticia-page-wrap .sidebar .bslider-wrap{
  margin:0 0 10px!important;
}
body.public-site .noticia-page-wrap .sidebar .bslider-wrap:after{
  content:'PUBLICIDADE'!important;
  display:block!important;
  color:#9aa3ad!important;
  text-align:center!important;
  font-size:12px!important;
  letter-spacing:.08em!important;
  margin-top:5px!important;
  font-weight:700!important;
}
body.public-site .noticia-page-wrap .sidebar-widget,
body.public-site .grid-main > .sidebar .sidebar-widget{
  background:#111820!important;
  border:1px solid #26313d!important;
  color:#bfc7d5!important;
  border-radius:8px!important;
  box-shadow:none!important;
  padding:18px!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .sidebar-titulo,
body.public-site .grid-main > .sidebar .sidebar-widget .sidebar-titulo{
  color:#fff!important;
  border-bottom:2px solid var(--verde)!important;
  padding-bottom:10px!important;
  margin-bottom:14px!important;
  font-size:14px!important;
  font-weight:900!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .sidebar-titulo i,
body.public-site .grid-main > .sidebar .sidebar-widget .sidebar-titulo i{
  color:var(--verde)!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .form-control,
body.public-site .grid-main > .sidebar .sidebar-widget .form-control{
  background:#0c1218!important;
  color:#fff!important;
  border-color:#35404c!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .card,
body.public-site .grid-main > .sidebar .sidebar-widget .card{
  background:#161f28!important;
  border:1px solid #26313d!important;
  box-shadow:none!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .card-body,
body.public-site .grid-main > .sidebar .sidebar-widget .card-body{
  background:#161f28!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .card-title,
body.public-site .noticia-page-wrap .sidebar-widget .card-title a,
body.public-site .grid-main > .sidebar .sidebar-widget .card-title,
body.public-site .grid-main > .sidebar .sidebar-widget .card-title a{
  color:#fff!important;
}
body.public-site .noticia-page-wrap .sidebar-widget p,
body.public-site .noticia-page-wrap .sidebar-widget span,
body.public-site .noticia-page-wrap .sidebar-widget .card-meta,
body.public-site .noticia-page-wrap .sidebar-widget .card-resumo,
body.public-site .grid-main > .sidebar .sidebar-widget p,
body.public-site .grid-main > .sidebar .sidebar-widget span,
body.public-site .grid-main > .sidebar .sidebar-widget .card-meta,
body.public-site .grid-main > .sidebar .sidebar-widget .card-resumo{
  color:#aeb8c6!important;
}
body.public-site .noticia-page-wrap .sidebar-widget a,
body.public-site .grid-main > .sidebar .sidebar-widget a{
  color:#d8dee8!important;
}
body.public-site .noticia-page-wrap .sidebar-widget a:hover,
body.public-site .grid-main > .sidebar .sidebar-widget a:hover{
  color:var(--verde)!important;
}
body.public-site .noticia-page-wrap .sidebar-widget .sidebar-cat-list li,
body.public-site .grid-main > .sidebar .sidebar-widget .sidebar-cat-list li{
  border-bottom:1px solid #35404c!important;
}
body.public-site .noticia-page-wrap .sidebar-widget[style*="text-align:center"]{
  border-color:var(--verde)!important;
}

/* Veja também no padrão da referência */
body.public-site .noticia-page-wrap section .secao-header{
  background:#111820!important;
  color:#fff!important;
  border-radius:0!important;
  min-height:44px!important;
  padding:0 14px!important;
  margin-bottom:16px!important;
  box-shadow:none!important;
}
body.public-site .noticia-page-wrap section .secao-titulo{
  color:#fff!important;
  font-size:18px!important;
}
body.public-site .noticia-page-wrap section .secao-titulo span{
  width:4px!important;
  height:22px!important;
  border-radius:0!important;
}
body.public-site .noticia-page-wrap section .grid-3{
  gap:12px!important;
}

/* Listagem de notícias e categorias: widgets laterais sempre dark */
body.public-site .grid-main > aside.sidebar .sidebar-widget{
  background:#111820!important;
  border:1px solid #26313d!important;
}

@media(max-width:1024px){
  body.public-site .noticia-page-wrap .noticia-layout{
    grid-template-columns:1fr!important;
  }
  body.public-site .noticia-page-wrap .sidebar{
    padding-top:0!important;
  }
  body.public-site .noticia-page-wrap .noticia-titulo{
    font-size:32px!important;
  }
}
@media(max-width:768px){
  body.public-site .noticia-page-wrap{
    padding-top:14px!important;
  }
  body.public-site .noticia-page-wrap article{
    padding:0!important;
  }
  body.public-site .noticia-page-sectionbar{
    margin:0 0 14px!important;
    min-height:44px!important;
    padding:0 16px!important;
  }
  body.public-site .noticia-section-title{
    font-size:16px!important;
  }
  body.public-site .noticia-page-wrap .noticia-titulo{
    font-size:26px!important;
    letter-spacing:-.03em!important;
  }
  body.public-site .noticia-page-wrap .noticia-resumo{
    font-size:17px!important;
  }
  body.public-site .noticia-breadcrumb span{
    max-width:260px!important;
  }
  body.public-site .noticia-page-wrap section .grid-3{
    grid-template-columns:1fr!important;
  }
}

/* ============================================================
   CORREÇÃO MENU CATEGORIAS MOBILE
   O botão Categorias agora abre apenas as categorias em dropdown,
   sem esconder os links principais do menu.
   ============================================================ */
.mobile-category-panel{display:none;}

@media (max-width:768px){
  body.public-site .public-navbar{overflow:visible!important;}
  body.public-site .public-navbar .container{position:relative!important;overflow:visible!important;}

  /* mantém o menu principal sempre visível */
  body.public-site .public-navbar .nav-links{
    display:flex!important;
    position:static!important;
    flex-direction:row!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
  }
  body.public-site .public-navbar .nav-links.aberto{
    position:static!important;
    display:flex!important;
    grid-template-columns:none!important;
    padding:0!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
  }
  body.public-site .public-navbar .nav-links .nav-category-link,
  body.public-site .public-navbar .nav-links.aberto .nav-category-link{
    display:none!important;
  }

  /* dropdown de categorias */
  body.public-site .mobile-category-panel{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    z-index:99999;
    background:#111820;
    border-top:1px solid #27313d;
    border-bottom:3px solid var(--verde);
    box-shadow:0 18px 30px rgba(0,0,0,.45);
    padding:8px 12px;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0;
  }
  body.public-site .mobile-category-panel.aberto{
    display:grid!important;
  }
  body.public-site .mobile-category-panel a{
    min-height:42px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:0 10px;
    color:#d8dee8;
    font-size:14px;
    font-weight:800;
    border-bottom:1px solid #26313d;
  }
  body.public-site .mobile-category-panel a:hover{
    color:var(--verde);
    background:rgba(0,191,166,.08);
  }
  body.public-site .mobile-cat-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    flex:0 0 10px;
  }
  body.public-site .menu-toggle.ativo,
  body.public-site .menu-toggle.ativo i{
    color:var(--verde)!important;
  }
}

@media (max-width:430px){
  body.public-site .mobile-category-panel{
    padding:7px 8px;
  }
  body.public-site .mobile-category-panel a{
    min-height:40px;
    padding:0 8px;
    font-size:13px;
  }
}

/* ============================================================
   AJUSTE FINAL - CABEÇALHO DA MATÉRIA EM LARGURA TOTAL
   O título/resumo/meta ocupam toda a largura da área de conteúdo,
   e a imagem começa alinhada com o widget lateral.
   ============================================================ */
body.public-site .noticia-page-wrap .noticia-head-full{
  display:block!important;
  width:100%!important;
  margin:0 0 18px!important;
  padding:0!important;
  background:transparent!important;
}
body.public-site .noticia-page-wrap .noticia-head-full .noticia-breadcrumb{
  margin:0 0 8px!important;
}
body.public-site .noticia-page-wrap .noticia-head-full .noticia-breadcrumb span{
  max-width:960px!important;
}
body.public-site .noticia-page-wrap .noticia-head-full .noticia-page-sectionbar{
  width:100%!important;
  margin:0 0 18px!important;
  background:var(--cat-color,#e53e3e)!important;
}
body.public-site .noticia-page-wrap .noticia-head-full .noticia-titulo{
  max-width:980px!important;
  margin-bottom:8px!important;
}
body.public-site .noticia-page-wrap .noticia-head-full .noticia-resumo{
  max-width:980px!important;
}
body.public-site .noticia-page-wrap .noticia-head-full .noticia-meta{
  max-width:980px!important;
  margin-bottom:0!important;
}
body.public-site .noticia-page-wrap .noticia-layout{
  grid-template-columns:minmax(0,1fr) 320px!important;
  gap:28px!important;
  align-items:start!important;
}
body.public-site .noticia-page-wrap .sidebar{
  padding-top:0!important;
}
body.public-site .noticia-page-wrap article{
  min-width:0!important;
}
@media(max-width:1024px){
  body.public-site .noticia-page-wrap .noticia-layout{
    grid-template-columns:1fr!important;
  }
  body.public-site .noticia-page-wrap .noticia-head-full .noticia-titulo,
  body.public-site .noticia-page-wrap .noticia-head-full .noticia-resumo,
  body.public-site .noticia-page-wrap .noticia-head-full .noticia-meta{
    max-width:none!important;
  }
}
@media(max-width:768px){
  body.public-site .noticia-page-wrap .noticia-head-full{
    margin-bottom:14px!important;
  }
  body.public-site .noticia-page-wrap .noticia-head-full .noticia-page-sectionbar{
    min-height:44px!important;
    margin-bottom:14px!important;
  }
  body.public-site .noticia-page-wrap .noticia-head-full .noticia-breadcrumb span{
    max-width:260px!important;
  }
}


/* AJUSTE: remover texto Publicidade abaixo dos banners da sidebar nas páginas de notícia/listagens */
body.public-site .grid-main > .sidebar .bslider-wrap:after,
body.public-site .grid-main > .sidebar .banner-area:after,
body.public-site .noticia-page-wrap .sidebar .bslider-wrap:after,
body.public-site .noticia-page-wrap .sidebar .banner-area:after{
  content:none!important;
  display:none!important;
}
body.public-site .grid-main > .sidebar .bslider-wrap > div[style*="text-align:center"],
body.public-site .noticia-page-wrap .sidebar .bslider-wrap > div[style*="text-align:center"]{
  display:none!important;
}


/* ============================================================
   CORREÇÃO FINAL - CATEGORIAS MOBILE + TARJA CENTRALIZADA
   ============================================================ */
@media (max-width: 768px){
  body.public-site .public-navbar{
    overflow:visible!important;
    position:relative!important;
    z-index:5000!important;
  }
  body.public-site .public-navbar .container{
    overflow:visible!important;
    position:relative!important;
  }
  body.public-site .menu-toggle{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:5px!important;
    flex:0 0 auto!important;
    color:#fff!important;
    background:transparent!important;
    border:0!important;
    height:42px!important;
    padding:0 4px!important;
    font-size:13px!important;
    font-weight:900!important;
    white-space:nowrap!important;
    cursor:pointer!important;
  }
  body.public-site .menu-toggle i{font-size:15px!important;}
  body.public-site .menu-toggle.ativo,
  body.public-site .menu-toggle.ativo i{color:var(--verde)!important;}

  body.public-site .mobile-category-panel{
    display:none!important;
    position:absolute!important;
    top:100%!important;
    left:0!important;
    right:0!important;
    z-index:999999!important;
    background:#111820!important;
    border-top:1px solid #26313d!important;
    border-bottom:3px solid var(--verde)!important;
    box-shadow:0 18px 36px rgba(0,0,0,.58)!important;
    padding:8px!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:0!important;
  }
  body.public-site .mobile-category-panel.aberto{
    display:grid!important;
  }
  body.public-site .mobile-category-panel a{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    min-height:40px!important;
    padding:0 10px!important;
    color:#d8dee8!important;
    font-size:13px!important;
    font-weight:800!important;
    border-bottom:1px solid #26313d!important;
    background:transparent!important;
    text-decoration:none!important;
  }
  body.public-site .mobile-category-panel a:hover{
    color:var(--verde)!important;
    background:rgba(0,191,166,.10)!important;
  }
  body.public-site .mobile-cat-dot{
    display:inline-block!important;
    width:10px!important;
    height:10px!important;
    min-width:10px!important;
    border-radius:999px!important;
  }

  /* Centraliza o nome da categoria na tarja da página da matéria */
  body.public-site .noticia-page-wrap .noticia-head-full .noticia-page-sectionbar,
  body.public-site .noticia-page-sectionbar{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    padding-left:12px!important;
    padding-right:12px!important;
  }
  body.public-site .noticia-section-title{
    width:100%!important;
    text-align:center!important;
  }
}
@media (max-width: 420px){
  body.public-site .mobile-category-panel{
    grid-template-columns:1fr!important;
  }
}

/* ============================================================
   CORREÇÃO MOBILE - ALINHAMENTO DAS TARJAS DE SEÇÃO
   Corrige títulos como Últimas Notícias, Economia e Veja também,
   mantendo o botão Ver mais centralizado verticalmente.
   ============================================================ */
@media (max-width: 768px){
  body.public-site .secao-header,
  body.public-site .noticia-page-wrap section .secao-header{
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:10px!important;
    min-height:44px!important;
    padding:0 10px 0 12px!important;
    margin-bottom:16px!important;
    border:0!important;
    border-radius:7px!important;
    background:#303236!important;
    box-shadow:0 3px 10px rgba(0,0,0,.08)!important;
  }

  body.public-site .noticia-page-wrap section .secao-header{
    background:#111820!important;
    border-radius:0!important;
    box-shadow:none!important;
  }

  body.public-site .secao-titulo,
  body.public-site .noticia-page-wrap section .secao-titulo{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    min-width:0!important;
    margin:0!important;
    padding:0!important;
    line-height:1!important;
    color:#fff!important;
    font-size:16px!important;
    font-weight:900!important;
    white-space:nowrap!important;
  }

  body.public-site .secao-titulo span,
  body.public-site .noticia-page-wrap section .secao-titulo span{
    display:inline-block!important;
    width:4px!important;
    min-width:4px!important;
    height:24px!important;
    margin:0!important;
    border-radius:2px!important;
    flex:0 0 4px!important;
  }

  body.public-site .noticia-page-wrap section .secao-titulo span{
    border-radius:0!important;
  }

  body.public-site .secao-link{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    height:34px!important;
    line-height:1!important;
    margin:0!important;
    padding:0 12px!important;
    border-radius:999px!important;
    white-space:nowrap!important;
    font-size:12px!important;
    font-weight:900!important;
  }
}

@media (max-width: 420px){
  body.public-site .secao-header,
  body.public-site .noticia-page-wrap section .secao-header{
    min-height:42px!important;
    padding-left:10px!important;
    padding-right:8px!important;
  }
  body.public-site .secao-titulo,
  body.public-site .noticia-page-wrap section .secao-titulo{
    font-size:15px!important;
    gap:7px!important;
  }
  body.public-site .secao-link{
    height:32px!important;
    padding:0 10px!important;
    font-size:11px!important;
  }
}

/* ============================================================
   CORREÇÃO FINAL - LUPA VISÍVEL NOS WIDGETS DE BUSCA
   ============================================================ */
body.public-site .sidebar-widget form .btn-verde,
body.public-site .sidebar-widget form button[type="submit"],
body.public-site .noticia-page-wrap .sidebar-widget form .btn-verde,
body.public-site .noticia-page-wrap .sidebar-widget form button[type="submit"]{
  background:var(--verde)!important;
  border-color:var(--verde)!important;
  color:#061017!important;
  opacity:1!important;
}
body.public-site .sidebar-widget form .btn-verde i,
body.public-site .sidebar-widget form button[type="submit"] i,
body.public-site .noticia-page-wrap .sidebar-widget form .btn-verde i,
body.public-site .noticia-page-wrap .sidebar-widget form button[type="submit"] i{
  color:#061017!important;
  opacity:1!important;
  visibility:visible!important;
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  font-size:15px!important;
  line-height:1!important;
}
body.public-site .sidebar-widget form .btn-verde:hover,
body.public-site .sidebar-widget form button[type="submit"]:hover{
  background:var(--verde2)!important;
  border-color:var(--verde2)!important;
  color:#000!important;
}

/* ============================================================
   AJUSTE GLOBAL - ÍCONE DE LUPA VISÍVEL EM TODOS OS WIDGETS
   ============================================================ */
body.public-site .sidebar-widget form button[type="submit"],
body.public-site .sidebar-widget form .btn-verde,
body.public-site .noticia-page-wrap .sidebar-widget form button[type="submit"],
body.public-site .noticia-page-wrap .sidebar-widget form .btn-verde,
body.public-site .grid-main > .sidebar .sidebar-widget form button[type="submit"],
body.public-site .grid-main > .sidebar .sidebar-widget form .btn-verde{
  position:relative!important;
  min-width:44px!important;
  width:44px!important;
  height:40px!important;
  padding:0!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:var(--verde)!important;
  border:1px solid var(--verde)!important;
  border-radius:8px!important;
  color:#061017!important;
}

body.public-site .sidebar-widget form button[type="submit"] i,
body.public-site .sidebar-widget form .btn-verde i,
body.public-site .noticia-page-wrap .sidebar-widget form button[type="submit"] i,
body.public-site .noticia-page-wrap .sidebar-widget form .btn-verde i,
body.public-site .grid-main > .sidebar .sidebar-widget form button[type="submit"] i,
body.public-site .grid-main > .sidebar .sidebar-widget form .btn-verde i{
  opacity:0!important;
  width:0!important;
  height:0!important;
  overflow:hidden!important;
  font-size:0!important;
}

body.public-site .sidebar-widget form button[type="submit"]::before,
body.public-site .sidebar-widget form .btn-verde::before,
body.public-site .noticia-page-wrap .sidebar-widget form button[type="submit"]::before,
body.public-site .noticia-page-wrap .sidebar-widget form .btn-verde::before,
body.public-site .grid-main > .sidebar .sidebar-widget form button[type="submit"]::before,
body.public-site .grid-main > .sidebar .sidebar-widget form .btn-verde::before{
  content:"";
  width:17px;
  height:17px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23061017' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
}

body.public-site .sidebar-widget form button[type="submit"]:hover,
body.public-site .sidebar-widget form .btn-verde:hover,
body.public-site .noticia-page-wrap .sidebar-widget form button[type="submit"]:hover,
body.public-site .noticia-page-wrap .sidebar-widget form .btn-verde:hover,
body.public-site .grid-main > .sidebar .sidebar-widget form button[type="submit"]:hover,
body.public-site .grid-main > .sidebar .sidebar-widget form .btn-verde:hover{
  background:var(--verde2)!important;
  border-color:var(--verde2)!important;
}


/* ============================================================
   PADRÃO FINAL DOS CARDS DE NOTÍCIAS
   ============================================================ */
body.public-site .home-top-news-grid{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:20px!important;
  align-items:start!important;
  margin-bottom:24px!important;
}

body.public-site .home-destaque-card{
  align-self:start!important;
  height:auto!important;
}

body.public-site .home-destaque-list{
  display:flex!important;
  flex-direction:column!important;
  gap:14px!important;
}

body.public-site .card-img{
  position:relative!important;
  overflow:hidden!important;
  background:var(--cat-color,#d7a124)!important;
}

body.public-site .card-img > a{
  display:block!important;
  width:100%!important;
  height:100%!important;
  color:inherit!important;
}

/* Card principal da esquerda */
body.public-site .home-destaque-card .card-img{
  height:320px!important;
  min-height:320px!important;
  max-height:320px!important;
}

body.public-site .home-destaque-card .card-img img,
body.public-site .home-destaque-card .card-placeholder{
  width:100%!important;
  height:320px!important;
  min-height:320px!important;
  max-height:320px!important;
  object-fit:cover!important;
}

/* Cards horizontais da direita e sidebar */
body.public-site .card-h{
  display:flex!important;
  align-items:stretch!important;
  min-height:130px!important;
}

body.public-site .card-h .card-img{
  width:180px!important;
  min-width:180px!important;
  height:auto!important;
  min-height:130px!important;
  align-self:stretch!important;
}

body.public-site .card-h .card-img img,
body.public-site .card-h .card-placeholder{
  width:100%!important;
  height:100%!important;
  min-height:130px!important;
  object-fit:cover!important;
}

/* Cards normais das categorias */
body.public-site .card:not(.card-h):not(.home-destaque-card) .card-img{
  height:190px!important;
  min-height:190px!important;
  max-height:190px!important;
}

body.public-site .card:not(.card-h):not(.home-destaque-card) .card-img img,
body.public-site .card:not(.card-h):not(.home-destaque-card) .card-placeholder{
  width:100%!important;
  height:190px!important;
  min-height:190px!important;
  max-height:190px!important;
  object-fit:cover!important;
}

/* Placeholder limpo e padronizado */
body.public-site .card-placeholder{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  color:#fff!important;
  font-size:16px!important;
  font-weight:500!important;
  line-height:1.2!important;
  text-transform:none!important;
  letter-spacing:0!important;
  padding:12px!important;
}

body.public-site .card-placeholder span{
  font-size:16px!important;
  font-weight:500!important;
  line-height:1.2!important;
  text-transform:none!important;
  letter-spacing:0!important;
}

/* Remove efeitos que possam deformar imagens/placeholders */
body.public-site .card:hover .card-img img{
  transform:none!important;
}

/* Mobile */
@media(max-width:768px){
  body.public-site .home-top-news-grid{
    grid-template-columns:1fr!important;
    gap:16px!important;
  }

  body.public-site .home-destaque-card .card-img,
  body.public-site .home-destaque-card .card-img img,
  body.public-site .home-destaque-card .card-placeholder{
    height:220px!important;
    min-height:220px!important;
    max-height:220px!important;
  }

  body.public-site .card-h{
    flex-direction:column!important;
  }

  body.public-site .card-h .card-img,
  body.public-site .card-h .card-img img,
  body.public-site .card-h .card-placeholder,
  body.public-site .card:not(.card-h):not(.home-destaque-card) .card-img,
  body.public-site .card:not(.card-h):not(.home-destaque-card) .card-img img,
  body.public-site .card:not(.card-h):not(.home-destaque-card) .card-placeholder{
    width:100%!important;
    min-width:100%!important;
    height:180px!important;
    min-height:180px!important;
    max-height:180px!important;
  }
}


/* ============================================================
   AJUSTE FINAL MOBILE - REMOVER TEXTO "SIGA NOSSAS REDES SOCIAIS"
   Mantém o texto no desktop e libera espaço no mobile para caber o TikTok.
   ============================================================ */
@media(max-width:768px){
  body.public-site .public-socials span,
  .public-socials span{
    display:none!important;
  }

  body.public-site .public-socialbar-inner,
  .public-socialbar-inner{
    display:grid!important;
    grid-template-columns:auto 1fr!important;
    align-items:center!important;
    gap:8px!important;
    padding:0 8px!important;
    min-height:32px!important;
    height:32px!important;
  }

  body.public-site .public-date,
  .public-date{
    font-size:10px!important;
    line-height:1!important;
    white-space:nowrap!important;
    max-width:none!important;
    overflow:visible!important;
  }

  body.public-site .public-socials,
  .public-socials{
    display:flex!important;
    justify-content:flex-end!important;
    align-items:center!important;
    gap:7px!important;
    flex-wrap:nowrap!important;
    overflow:visible!important;
    min-width:0!important;
    white-space:nowrap!important;
  }

  body.public-site .public-socials a,
  .public-socials a{
    width:15px!important;
    height:15px!important;
    min-width:15px!important;
    min-height:15px!important;
    padding:0!important;
    flex:0 0 auto!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
  }

  body.public-site .public-socials a i,
  .public-socials a i{
    font-size:13px!important;
    line-height:1!important;
  }
}

@media(max-width:380px){
  body.public-site .public-date,
  .public-date{
    font-size:9px!important;
  }

  body.public-site .public-socials,
  .public-socials{
    gap:6px!important;
  }

  body.public-site .public-socials a,
  .public-socials a{
    width:13px!important;
    height:13px!important;
    min-width:13px!important;
    min-height:13px!important;
  }

  body.public-site .public-socials a i,
  .public-socials a i{
    font-size:11px!important;
  }
}


/* ============================================================
   AJUSTE FINAL - RODAPÉ COM LOGO SEM ESTICAR E CONTEÚDO CENTRALIZADO
   ============================================================ */
body.public-site .footer-logo,
.footer-logo{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;
  width:100%!important;
  text-align:center!important;
}

body.public-site .footer-logo img,
.footer-logo img{
  width:170px!important;
  max-width:170px!important;
  height:auto!important;
  max-height:none!important;
  object-fit:contain!important;
  display:block!important;
  margin:0 auto 18px!important;
}

body.public-site .footer-grid .footer-col:first-child,
.footer-grid .footer-col:first-child{
  text-align:center!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
}

body.public-site .footer-grid .footer-col:first-child p,
.footer-grid .footer-col:first-child p{
  text-align:center!important;
  max-width:310px!important;
  margin:0 auto 22px!important;
  line-height:1.65!important;
}

body.public-site .footer-grid .footer-col:first-child .footer-social,
.footer-grid .footer-col:first-child .footer-social,
body.public-site .footer-grid .footer-col:first-child .footer-social-top-icons,
.footer-grid .footer-col:first-child .footer-social-top-icons{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;
  gap:9px!important;
  width:100%!important;
  margin:0 auto!important;
  flex-wrap:wrap!important;
}

body.public-site .footer-social a,
.footer-social a,
body.public-site .footer-social-top-icons a,
.footer-social-top-icons a{
  width:27px!important;
  height:27px!important;
  min-width:27px!important;
  min-height:27px!important;
  border-radius:7px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  line-height:1!important;
}

body.public-site .footer-social a i,
.footer-social a i,
body.public-site .footer-social-top-icons a i,
.footer-social-top-icons a i{
  font-size:16px!important;
  line-height:1!important;
}

@media(max-width:768px){
  body.public-site .footer-logo img,
  .footer-logo img{
    width:155px!important;
    max-width:155px!important;
    height:auto!important;
  }

  body.public-site .footer-grid .footer-col:first-child p,
  .footer-grid .footer-col:first-child p{
    max-width:290px!important;
  }
}


/* ============================================================
   HOME - BANNER TOPO NO LOCAL CORRETO
   Abaixo do primeiro bloco de notícias e antes da grade.
   ============================================================ */
body.public-site .home-banner-topo-abaixo-destaques{
  margin:18px 0 24px!important;
}

body.public-site .home-banner-topo-abaixo-destaques .bslider-wrap,
body.public-site .home-banner-topo-abaixo-destaques .banner-area{
  margin-left:auto!important;
  margin-right:auto!important;
}

@media(max-width:768px){
  body.public-site .home-banner-topo-abaixo-destaques{
    margin:16px 0 22px!important;
  }
}


/* ============================================================
   HOME - BANNER MEIO ACIMA DE ENTRETENIMENTO
   ============================================================ */
body.public-site .home-banner-meio-antes-entretenimento{
  margin:22px 0 28px!important;
}

body.public-site .home-banner-meio-antes-entretenimento .bslider-wrap,
body.public-site .home-banner-meio-antes-entretenimento .banner-area{
  margin-left:auto!important;
  margin-right:auto!important;
}

/* ============================================================
   HOME MOBILE - DESTAQUE GRANDE + 3 NOTÍCIAS ABAIXO ALINHADAS
   ============================================================ */
@media(max-width:768px){
  body.public-site .home-top-news-grid{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:14px!important;
    align-items:stretch!important;
    margin-bottom:18px!important;
  }

  body.public-site .home-destaque-card{
    width:100%!important;
    margin:0!important;
  }

  body.public-site .home-destaque-list{
    display:flex!important;
    flex-direction:column!important;
    gap:10px!important;
    width:100%!important;
    margin:0!important;
  }

  body.public-site .home-destaque-list .card-h{
    display:grid!important;
    grid-template-columns:128px 1fr!important;
    align-items:stretch!important;
    min-height:112px!important;
    width:100%!important;
  }

  body.public-site .home-destaque-list .card-h .card-img{
    width:128px!important;
    min-width:128px!important;
    height:112px!important;
    min-height:112px!important;
    max-height:112px!important;
  }

  body.public-site .home-destaque-list .card-h .card-img img,
  body.public-site .home-destaque-list .card-h .card-placeholder{
    width:128px!important;
    height:112px!important;
    min-height:112px!important;
    max-height:112px!important;
    object-fit:cover!important;
  }

  body.public-site .home-destaque-list .card-h .card-body{
    min-width:0!important;
    padding:11px!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:center!important;
  }

  body.public-site .home-destaque-list .card-h .card-title{
    font-size:13px!important;
    line-height:1.25!important;
    margin-bottom:6px!important;
    -webkit-line-clamp:2!important;
  }

  body.public-site .home-destaque-list .card-h .card-resumo{
    font-size:11px!important;
    line-height:1.35!important;
    margin-bottom:6px!important;
    -webkit-line-clamp:2!important;
  }

  body.public-site .home-destaque-list .card-h .card-meta{
    font-size:11px!important;
  }
}

@media(max-width:390px){
  body.public-site .home-destaque-list .card-h{
    grid-template-columns:118px 1fr!important;
  }

  body.public-site .home-destaque-list .card-h .card-img,
  body.public-site .home-destaque-list .card-h .card-img img,
  body.public-site .home-destaque-list .card-h .card-placeholder{
    width:118px!important;
    min-width:118px!important;
    height:108px!important;
    min-height:108px!important;
    max-height:108px!important;
  }

  body.public-site .home-destaque-list .card-h .card-title{
    font-size:12px!important;
  }

  body.public-site .home-destaque-list .card-h .card-resumo{
    font-size:10.5px!important;
  }
}


/* ============================================================
   AJUSTE MOBILE - BOTÃO "ENVIE SUA NOTÍCIA" EM UMA LINHA
   Apenas reduz a escrita no mobile, sem mexer no restante do layout.
   ============================================================ */
@media(max-width:768px){
  body.public-site .header-search .btn,
  body.public-site .header-search a.btn,
  body.public-site .top-search .btn,
  body.public-site .top-search a.btn,
  body.public-site .btn-enviar-noticia,
  body.public-site a[href*="envie"],
  body.public-site a[href*="sugestao"],
  body.public-site a[href*="sugestao-noticia"]{
    white-space:nowrap!important;
    word-break:normal!important;
    overflow-wrap:normal!important;
    line-height:1!important;
    font-size:12px!important;
    letter-spacing:.01em!important;
    padding-left:14px!important;
    padding-right:14px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
  }

  body.public-site .header-search .btn br,
  body.public-site .top-search .btn br,
  body.public-site .btn-enviar-noticia br{
    display:none!important;
  }
}

@media(max-width:430px){
  body.public-site .header-search .btn,
  body.public-site .header-search a.btn,
  body.public-site .top-search .btn,
  body.public-site .top-search a.btn,
  body.public-site .btn-enviar-noticia,
  body.public-site a[href*="envie"],
  body.public-site a[href*="sugestao"],
  body.public-site a[href*="sugestao-noticia"]{
    font-size:10.5px!important;
    padding-left:10px!important;
    padding-right:10px!important;
    min-width:auto!important;
  }
}

@media(max-width:380px){
  body.public-site .header-search .btn,
  body.public-site .header-search a.btn,
  body.public-site .top-search .btn,
  body.public-site .top-search a.btn,
  body.public-site .btn-enviar-noticia,
  body.public-site a[href*="envie"],
  body.public-site a[href*="sugestao"],
  body.public-site a[href*="sugestao-noticia"]{
    font-size:9.5px!important;
    padding-left:8px!important;
    padding-right:8px!important;
  }
}


/* ============================================================
   HOME - BANNER RODAPÉ ACIMA DO SHAPE COMERCIAL
   ============================================================ */
body.public-site .home-banner-rodape-acima-shape{
  margin:24px 0 26px!important;
}

body.public-site .home-banner-rodape-acima-shape .bslider-wrap,
body.public-site .home-banner-rodape-acima-shape .banner-area{
  margin-left:auto!important;
  margin-right:auto!important;
}

body.public-site footer .bslider-wrap,
body.public-site footer .banner-area{
  display:none!important;
}

@media(max-width:768px){
  body.public-site .home-banner-rodape-acima-shape{
    margin:18px 0 22px!important;
  }
}

/* ============================================================
   AJUSTE FINAL - BOTÃO MOBILE "ENVIE SUA NOTÍCIA"
   Deixa o texto em 2 linhas, centralizado, como na referência.
   ============================================================ */
@media (max-width:560px){
  body.public-site .btn-send-news{
    flex:0 0 122px!important;
    width:122px!important;
    min-width:122px!important;
    max-width:122px!important;
    height:74px!important;
    min-height:74px!important;
    max-height:74px!important;
    padding:0 10px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    white-space:normal!important;
    word-break:keep-all!important;
    overflow-wrap:normal!important;
    line-height:1.04!important;
    letter-spacing:0!important;
    font-size:12px!important;
    font-weight:900!important;
    border-radius:999px!important;
  }
}

@media (max-width:420px){
  body.public-site .btn-send-news{
    flex:0 0 116px!important;
    width:116px!important;
    min-width:116px!important;
    max-width:116px!important;
    height:70px!important;
    min-height:70px!important;
    max-height:70px!important;
    padding:0 8px!important;
    font-size:11px!important;
    line-height:1.03!important;
  }
}

/* ============================================================
   AJUSTE DEFINITIVO DO BOTÃO MOBILE "ENVIE SUA NOTÍCIA"
   Desktop mantém normal; no mobile vira 2 linhas como referência.
   ============================================================ */
.btn-send-news span{display:inline-block;}
.btn-send-news span + span{margin-left:.28em;}

@media (max-width:560px){
  body.public-site .btn-send-news{
    flex:0 0 154px!important;
    width:154px!important;
    min-width:154px!important;
    max-width:154px!important;
    height:72px!important;
    min-height:72px!important;
    max-height:72px!important;
    padding:0 10px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:2px!important;
    text-align:center!important;
    white-space:normal!important;
    line-height:1.02!important;
    font-size:11px!important;
    font-weight:900!important;
    letter-spacing:0!important;
    border-radius:999px!important;
  }
  body.public-site .btn-send-news span{
    display:block!important;
    width:100%!important;
    margin:0!important;
  }
  body.public-site .btn-send-news span + span{margin:0!important;}
}

@media (max-width:420px){
  body.public-site .btn-send-news{
    flex:0 0 150px!important;
    width:150px!important;
    min-width:150px!important;
    max-width:150px!important;
    height:70px!important;
    min-height:70px!important;
    max-height:70px!important;
    font-size:10px!important;
    gap:1px!important;
  }
}


/* ============================================================
   BANNERS RESPONSIVOS - DESKTOP + MOBILE
   ============================================================ */
body.public-site .bslider-item picture{
  display:block!important;
  width:100%!important;
}

body.public-site .bslider-item picture img{
  width:100%!important;
  display:block!important;
}

/* No celular, a arte mobile tem proporção própria e fica legível */
@media(max-width:768px){
  body.public-site .bslider-img{
    height:auto!important;
    max-height:none!important;
    object-fit:contain!important;
  }

  body.public-site .bslider-wrap,
  body.public-site .banner-area{
    width:100%!important;
  }
}


/* ============================================================
   BOTÃO FLUTUANTE - VOLTAR AO TOPO
   ============================================================ */
body.public-site .back-to-top,
.back-to-top{
  position:fixed!important;
  right:24px!important;
  bottom:88px!important;
  width:46px!important;
  height:46px!important;
  border-radius:50%!important;
  border:2px solid rgba(255,255,255,.18)!important;
  background:var(--verde,#00BFA6)!important;
  color:#05100f!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  z-index:9998!important;
  box-shadow:0 12px 28px rgba(0,0,0,.28)!important;
  opacity:0!important;
  visibility:hidden!important;
  transform:translateY(12px)!important;
  transition:all .25s ease!important;
}

body.public-site .back-to-top.show,
.back-to-top.show{
  opacity:1!important;
  visibility:visible!important;
  transform:translateY(0)!important;
}

body.public-site .back-to-top i,
.back-to-top i{
  font-size:18px!important;
  line-height:1!important;
}

body.public-site .back-to-top:hover,
.back-to-top:hover{
  background:#ffffff!important;
  color:var(--verde,#00BFA6)!important;
  border-color:var(--verde,#00BFA6)!important;
  transform:translateY(-3px)!important;
}

@media(max-width:768px){
  body.public-site .back-to-top,
  .back-to-top{
    right:16px!important;
    bottom:82px!important;
    width:42px!important;
    height:42px!important;
  }

  body.public-site .back-to-top i,
  .back-to-top i{
    font-size:16px!important;
  }
}


/* ============================================================
   AJUSTE FINAL DO TOPO MOBILE - BUSCA + BOTÃO COMO REFERÊNCIA
   ============================================================ */
@media(max-width:768px){
  body.public-site .header-main,
  .header-main{
    padding:20px 0!important;
  }

  body.public-site .header-content,
  .header-content{
    display:grid!important;
    grid-template-columns:140px 1fr 150px!important;
    gap:14px!important;
    align-items:center!important;
    justify-content:center!important;
    padding:0 12px!important;
  }

  body.public-site .logo,
  .logo{
    display:flex!important;
    justify-content:flex-start!important;
    align-items:center!important;
    min-width:0!important;
  }

  body.public-site .logo img,
  .logo img{
    width:136px!important;
    max-width:136px!important;
    height:auto!important;
    object-fit:contain!important;
    display:block!important;
  }

  body.public-site .search-form,
  .search-form{
    width:100%!important;
    min-width:0!important;
    display:flex!important;
    align-items:center!important;
    position:relative!important;
  }

  body.public-site .search-form input,
  .search-form input{
    width:100%!important;
    height:56px!important;
    min-height:56px!important;
    border-radius:999px!important;
    padding:0 60px 0 22px!important;
    font-size:16px!important;
    font-weight:500!important;
    line-height:1!important;
    white-space:nowrap!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:16px!important;
    text-transform:uppercase!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:52px!important;
    height:52px!important;
    min-width:52px!important;
    min-height:52px!important;
    max-width:52px!important;
    max-height:52px!important;
    border-radius:50%!important;
    right:2px!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    padding:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }

  body.public-site .search-form button i,
  .search-form button i{
    font-size:24px!important;
    line-height:1!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    flex:0 0 150px!important;
    width:150px!important;
    min-width:150px!important;
    max-width:150px!important;
    height:72px!important;
    min-height:72px!important;
    max-height:72px!important;
    padding:0 12px!important;
    border-radius:999px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:1px!important;
    text-align:center!important;
    white-space:normal!important;
    word-break:normal!important;
    overflow-wrap:normal!important;
    line-height:1.02!important;
    font-size:18px!important;
    font-weight:900!important;
    letter-spacing:.02em!important;
  }

  body.public-site .btn-send-news span,
  .btn-send-news span{
    display:block!important;
    width:100%!important;
    margin:0!important;
    line-height:1.02!important;
  }
}

@media(max-width:560px){
  body.public-site .header-content,
  .header-content{
    grid-template-columns:112px 1fr 126px!important;
    gap:8px!important;
    padding:0 8px!important;
  }

  body.public-site .logo img,
  .logo img{
    width:108px!important;
    max-width:108px!important;
  }

  body.public-site .search-form input,
  .search-form input{
    height:42px!important;
    min-height:42px!important;
    padding:0 46px 0 14px!important;
    font-size:11px!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:11px!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    min-height:38px!important;
    max-width:38px!important;
    max-height:38px!important;
    right:2px!important;
  }

  body.public-site .search-form button i,
  .search-form button i{
    font-size:18px!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:126px!important;
    min-width:126px!important;
    max-width:126px!important;
    flex-basis:126px!important;
    height:58px!important;
    min-height:58px!important;
    max-height:58px!important;
    font-size:13px!important;
    padding:0 8px!important;
    line-height:1.02!important;
  }
}

@media(max-width:390px){
  body.public-site .header-content,
  .header-content{
    grid-template-columns:100px 1fr 116px!important;
    gap:6px!important;
    padding:0 6px!important;
  }

  body.public-site .logo img,
  .logo img{
    width:96px!important;
    max-width:96px!important;
  }

  body.public-site .search-form input,
  .search-form input{
    height:40px!important;
    min-height:40px!important;
    padding-left:12px!important;
    padding-right:44px!important;
    font-size:10px!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:10px!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    min-height:36px!important;
    max-width:36px!important;
    max-height:36px!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:116px!important;
    min-width:116px!important;
    max-width:116px!important;
    flex-basis:116px!important;
    height:54px!important;
    min-height:54px!important;
    max-height:54px!important;
    font-size:12px!important;
    padding:0 6px!important;
  }
}


/* ============================================================
   CORREÇÃO DEFINITIVA - TOPO MOBILE BUSCA + BOTÃO ALINHADOS
   Objetivo: ficar igual à referência, com campo BUSCAR... e botão
   ENVIE SUA / NOTÍCIA no mesmo alinhamento e mesma altura visual.
   ============================================================ */
@media(max-width:768px){
  body.public-site .header-main,
  .header-main{
    padding:18px 0!important;
  }

  body.public-site .header-content,
  .header-content{
    display:grid!important;
    grid-template-columns:150px 1fr 170px!important;
    gap:16px!important;
    align-items:center!important;
    padding:0 14px!important;
  }

  body.public-site .logo img,
  .logo img{
    width:150px!important;
    max-width:150px!important;
    height:auto!important;
    object-fit:contain!important;
  }

  body.public-site .search-form,
  .search-form{
    width:100%!important;
    min-width:0!important;
    height:62px!important;
    display:flex!important;
    align-items:center!important;
    position:relative!important;
  }

  body.public-site .search-form input,
  .search-form input{
    width:100%!important;
    height:62px!important;
    min-height:62px!important;
    max-height:62px!important;
    border-radius:999px!important;
    padding:0 66px 0 24px!important;
    font-size:22px!important;
    font-weight:500!important;
    line-height:62px!important;
    text-transform:uppercase!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    color:#9ca3af!important;
    opacity:1!important;
    font-size:22px!important;
    font-weight:500!important;
    text-transform:uppercase!important;
  }

  body.public-site .search-form button,
  .search-form button{
    position:absolute!important;
    top:50%!important;
    right:4px!important;
    transform:translateY(-50%)!important;
    width:54px!important;
    height:54px!important;
    min-width:54px!important;
    min-height:54px!important;
    max-width:54px!important;
    max-height:54px!important;
    border-radius:50%!important;
    padding:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }

  body.public-site .search-form button i,
  .search-form button i{
    font-size:25px!important;
    line-height:1!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:170px!important;
    min-width:170px!important;
    max-width:170px!important;
    height:62px!important;
    min-height:62px!important;
    max-height:62px!important;
    flex:0 0 170px!important;
    padding:0 14px!important;
    border-radius:999px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:1px!important;
    text-align:center!important;
    white-space:normal!important;
    line-height:1.02!important;
    font-size:20px!important;
    font-weight:900!important;
    letter-spacing:.02em!important;
  }

  body.public-site .btn-send-news span,
  .btn-send-news span{
    display:block!important;
    width:100%!important;
    margin:0!important;
    line-height:1.02!important;
  }
}

/* Celular comum: mantém tudo alinhado e sem quebrar */
@media(max-width:560px){
  body.public-site .header-main,
  .header-main{
    padding:18px 0!important;
  }

  body.public-site .header-content,
  .header-content{
    grid-template-columns:112px 1fr 126px!important;
    gap:10px!important;
    padding:0 8px!important;
    align-items:center!important;
  }

  body.public-site .logo img,
  .logo img{
    width:112px!important;
    max-width:112px!important;
  }

  body.public-site .search-form,
  .search-form{
    height:54px!important;
  }

  body.public-site .search-form input,
  .search-form input{
    height:54px!important;
    min-height:54px!important;
    max-height:54px!important;
    line-height:54px!important;
    padding:0 54px 0 16px!important;
    font-size:13px!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:13px!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:48px!important;
    height:48px!important;
    min-width:48px!important;
    min-height:48px!important;
    max-width:48px!important;
    max-height:48px!important;
    right:3px!important;
  }

  body.public-site .search-form button i,
  .search-form button i{
    font-size:21px!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:126px!important;
    min-width:126px!important;
    max-width:126px!important;
    flex-basis:126px!important;
    height:54px!important;
    min-height:54px!important;
    max-height:54px!important;
    padding:0 8px!important;
    font-size:13px!important;
    line-height:1.02!important;
    gap:0!important;
  }
}

@media(max-width:390px){
  body.public-site .header-content,
  .header-content{
    grid-template-columns:96px 1fr 116px!important;
    gap:7px!important;
    padding:0 6px!important;
  }

  body.public-site .logo img,
  .logo img{
    width:96px!important;
    max-width:96px!important;
  }

  body.public-site .search-form,
  .search-form{
    height:50px!important;
  }

  body.public-site .search-form input,
  .search-form input{
    height:50px!important;
    min-height:50px!important;
    max-height:50px!important;
    line-height:50px!important;
    padding:0 50px 0 13px!important;
    font-size:12px!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:12px!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:44px!important;
    height:44px!important;
    min-width:44px!important;
    min-height:44px!important;
    max-width:44px!important;
    max-height:44px!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:116px!important;
    min-width:116px!important;
    max-width:116px!important;
    flex-basis:116px!important;
    height:50px!important;
    min-height:50px!important;
    max-height:50px!important;
    font-size:12px!important;
    padding:0 6px!important;
  }
}


/* ============================================================
   CORREÇÃO FINAL - BOTÃO ENVIE SUA NOTÍCIA COM MESMA ALTURA DA BUSCA
   Ajuste somente para mobile.
   ============================================================ */
@media(max-width:560px){
  body.public-site .header-content,
  .header-content{
    grid-template-columns:108px 1fr 120px!important;
    gap:8px!important;
    align-items:center!important;
    padding:0 8px!important;
  }

  body.public-site .logo img,
  .logo img{
    width:104px!important;
    max-width:104px!important;
    height:auto!important;
  }

  body.public-site .search-form,
  .search-form{
    height:44px!important;
    min-height:44px!important;
    max-height:44px!important;
    align-self:center!important;
  }

  body.public-site .search-form input,
  .search-form input{
    height:44px!important;
    min-height:44px!important;
    max-height:44px!important;
    line-height:44px!important;
    padding:0 46px 0 13px!important;
    font-size:11px!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:11px!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:40px!important;
    height:40px!important;
    min-width:40px!important;
    min-height:40px!important;
    max-width:40px!important;
    max-height:40px!important;
    right:2px!important;
    top:50%!important;
    transform:translateY(-50%)!important;
  }

  body.public-site .search-form button i,
  .search-form button i{
    font-size:18px!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:120px!important;
    min-width:120px!important;
    max-width:120px!important;
    flex:0 0 120px!important;
    height:44px!important;
    min-height:44px!important;
    max-height:44px!important;
    padding:0 8px!important;
    border-radius:999px!important;
    align-self:center!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:0!important;
    line-height:1!important;
    font-size:10.5px!important;
    font-weight:900!important;
    letter-spacing:0!important;
    overflow:hidden!important;
  }

  body.public-site .btn-send-news span,
  .btn-send-news span{
    display:block!important;
    width:100%!important;
    margin:0!important;
    padding:0!important;
    line-height:1.05!important;
    font-size:10.5px!important;
    text-align:center!important;
  }
}

@media(max-width:390px){
  body.public-site .header-content,
  .header-content{
    grid-template-columns:96px 1fr 110px!important;
    gap:6px!important;
    padding:0 6px!important;
  }

  body.public-site .logo img,
  .logo img{
    width:92px!important;
    max-width:92px!important;
  }

  body.public-site .search-form,
  .search-form{
    height:42px!important;
    min-height:42px!important;
    max-height:42px!important;
  }

  body.public-site .search-form input,
  .search-form input{
    height:42px!important;
    min-height:42px!important;
    max-height:42px!important;
    line-height:42px!important;
    padding:0 44px 0 11px!important;
    font-size:10px!important;
  }

  body.public-site .search-form input::placeholder,
  .search-form input::placeholder{
    font-size:10px!important;
  }

  body.public-site .search-form button,
  .search-form button{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    min-height:38px!important;
    max-width:38px!important;
    max-height:38px!important;
  }

  body.public-site .search-form button i,
  .search-form button i{
    font-size:17px!important;
  }

  body.public-site .btn-send-news,
  .btn-send-news{
    width:110px!important;
    min-width:110px!important;
    max-width:110px!important;
    flex:0 0 110px!important;
    height:42px!important;
    min-height:42px!important;
    max-height:42px!important;
    font-size:9.8px!important;
    padding:0 6px!important;
  }

  body.public-site .btn-send-news span,
  .btn-send-news span{
    font-size:9.8px!important;
    line-height:1.05!important;
  }
}


/* ============================================================
   MENU FIXO + MOBILE ESTILO CNN
   - Sem ícones no menu
   - Menu completo no mobile
   - Rolagem automática para direita no mobile
   ============================================================ */

/* Desktop: menu fixo/sticky no topo ao rolar */
body.public-site .public-navbar{
  position:sticky!important;
  top:0!important;
  z-index:9997!important;
}

/* Remove qualquer ícone que ainda exista dentro do menu */
body.public-site .public-navbar .nav-links a i,
body.public-site .public-navbar .menu-toggle i{
  display:none!important;
}

/* Desktop mantém menu completo normal */
body.public-site .public-navbar .nav-links{
  white-space:nowrap!important;
}

/* Mobile */
@media(max-width:768px){
  body.public-site .public-navbar{
    position:sticky!important;
    top:0!important;
    z-index:9997!important;
    overflow:hidden!important;
    background:var(--bg2,#101820)!important;
    border-top:2px solid var(--verde,#00BFA6)!important;
    border-bottom:3px solid var(--verde,#00BFA6)!important;
  }

  body.public-site .public-navbar .container{
    min-height:54px!important;
    height:54px!important;
    display:block!important;
    overflow:hidden!important;
    padding:0!important;
    max-width:100%!important;
  }

  /* Esconde o botão categorias antigo para mostrar o menu completo igual desktop */
  body.public-site .public-navbar .menu-toggle{
    display:none!important;
  }

  body.public-site .public-navbar .nav-links{
    display:flex!important;
    align-items:center!important;
    gap:0!important;
    width:max-content!important;
    min-width:max-content!important;
    height:54px!important;
    overflow:visible!important;
    white-space:nowrap!important;
    will-change:transform!important;
    animation:menuAutoScrollDatta 28s linear infinite alternate!important;
  }

  body.public-site .public-navbar .nav-links:hover,
  body.public-site .public-navbar .nav-links:active{
    animation-play-state:paused!important;
  }

  body.public-site .public-navbar .nav-links a{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    height:54px!important;
    padding:0 16px!important;
    color:#fff!important;
    font-size:14px!important;
    font-weight:900!important;
    text-decoration:none!important;
    flex:0 0 auto!important;
    border-left:1px solid rgba(255,255,255,.04)!important;
  }

  body.public-site .public-navbar .nav-links a.ativo,
  body.public-site .public-navbar .nav-links a:hover{
    background:rgba(0,191,166,.20)!important;
    color:#fff!important;
  }

  body.public-site .public-navbar .nav-links a i{
    display:none!important;
  }

  body.public-site #mobileCategoryPanel{
    display:none!important;
  }
}

@media(max-width:430px){
  body.public-site .public-navbar .nav-links a{
    padding:0 14px!important;
    font-size:13px!important;
  }

  body.public-site .public-navbar .nav-links{
    animation-duration:24s!important;
  }
}

@keyframes menuAutoScrollDatta{
  from{ transform:translateX(0); }
  to{ transform:translateX(calc(-100% + 100vw)); }
}


/* ============================================================
   CORREÇÃO FINAL - MENU MOBILE COMPLETO E ARRASTÁVEL
   - Todos os itens iguais ao desktop
   - Sem ícones
   - Fixo no topo ao rolar
   - Arrasta com mouse/dedo para os lados
   ============================================================ */
body.public-site .public-navbar{
  position:sticky!important;
  top:0!important;
  z-index:9997!important;
  background:var(--bg2,#101820)!important;
  border-top:2px solid var(--verde,#00BFA6)!important;
  border-bottom:3px solid var(--verde,#00BFA6)!important;
}

body.public-site .public-navbar .nav-links a i,
body.public-site .public-navbar .menu-toggle{
  display:none!important;
}

body.public-site .public-navbar .nav-scroll-container{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

body.public-site .public-navbar .nav-links{
  display:flex!important;
  align-items:center!important;
  flex-wrap:nowrap!important;
  gap:0!important;
  white-space:nowrap!important;
  animation:none!important;
  transform:none!important;
}

body.public-site .public-navbar .nav-links a{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  height:54px!important;
  padding:0 15px!important;
  font-size:14px!important;
  font-weight:900!important;
  color:#fff!important;
  text-decoration:none!important;
  flex:0 0 auto!important;
}

body.public-site .public-navbar .nav-links a.ativo,
body.public-site .public-navbar .nav-links a:hover{
  background:rgba(0,191,166,.18)!important;
  color:#fff!important;
}

@media(max-width:768px){
  body.public-site .public-navbar{
    overflow:hidden!important;
  }

  body.public-site .public-navbar .nav-scroll-container{
    max-width:100%!important;
    width:100%!important;
    height:54px!important;
    min-height:54px!important;
    padding:0!important;
    overflow:hidden!important;
    justify-content:flex-start!important;
  }

  body.public-site .public-navbar .nav-links,
  body.public-site .public-navbar .nav-drag-scroll{
    width:100%!important;
    max-width:100%!important;
    height:54px!important;
    min-height:54px!important;
    justify-content:flex-start!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    scroll-behavior:smooth!important;
    cursor:grab!important;
    user-select:none!important;
    scrollbar-width:none!important;
    -ms-overflow-style:none!important;
  }

  body.public-site .public-navbar .nav-links::-webkit-scrollbar,
  body.public-site .public-navbar .nav-drag-scroll::-webkit-scrollbar{
    display:none!important;
  }

  body.public-site .public-navbar .nav-links.dragging{
    cursor:grabbing!important;
    scroll-behavior:auto!important;
  }

  body.public-site .public-navbar .nav-links a{
    height:54px!important;
    padding:0 16px!important;
    font-size:14px!important;
    flex:0 0 auto!important;
    border-left:1px solid rgba(255,255,255,.04)!important;
  }

  body.public-site #mobileCategoryPanel{
    display:none!important;
  }
}

@media(max-width:430px){
  body.public-site .public-navbar .nav-links a{
    padding:0 14px!important;
    font-size:13px!important;
  }
}


/* ============================================================
   CORREÇÃO DEFINITIVA - MENU MOBILE COMPLETO, FIXO E ARRASTÁVEL
   ============================================================ */
body.public-site #publicStickyMenu,
body.public-site .public-navbar{
  position:sticky!important;
  top:0!important;
  z-index:99999!important;
  background:var(--bg2,#101820)!important;
  border-top:2px solid var(--verde,#00BFA6)!important;
  border-bottom:3px solid var(--verde,#00BFA6)!important;
}

/* remove ícones no menu */
body.public-site .public-navbar i,
body.public-site .public-navbar .menu-toggle{
  display:none!important;
}

body.public-site .public-navbar .nav-scroll-container{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
}

body.public-site .public-navbar .nav-links{
  display:flex!important;
  flex-wrap:nowrap!important;
  align-items:center!important;
  white-space:nowrap!important;
  gap:0!important;
  animation:none!important;
  transform:none!important;
}

body.public-site .public-navbar .nav-links a{
  flex:0 0 auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  height:54px!important;
  padding:0 15px!important;
  color:#fff!important;
  font-size:14px!important;
  font-weight:900!important;
  text-decoration:none!important;
  user-select:none!important;
  -webkit-user-drag:none!important;
}

body.public-site .public-navbar .nav-links a.ativo,
body.public-site .public-navbar .nav-links a:hover{
  background:rgba(0,191,166,.18)!important;
  color:#fff!important;
}

/* MOBILE: rolagem horizontal real com mouse/dedo */
@media(max-width:768px){
  body.public-site .public-navbar{
    width:100%!important;
    max-width:100%!important;
    overflow:hidden!important;
  }

  body.public-site .public-navbar .nav-scroll-container{
    width:100%!important;
    max-width:100%!important;
    min-height:54px!important;
    height:54px!important;
    padding:0!important;
    margin:0!important;
    overflow:hidden!important;
    justify-content:flex-start!important;
  }

  body.public-site .public-navbar .nav-links,
  body.public-site .public-navbar .nav-drag-scroll{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    height:54px!important;
    min-height:54px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    justify-content:flex-start!important;
    scroll-behavior:smooth!important;
    -webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;
    -ms-overflow-style:none!important;
    cursor:grab!important;
    touch-action:pan-x!important;
    overscroll-behavior-x:contain!important;
    padding:0!important;
    margin:0!important;
  }

  body.public-site .public-navbar .nav-links::-webkit-scrollbar,
  body.public-site .public-navbar .nav-drag-scroll::-webkit-scrollbar{
    display:none!important;
    width:0!important;
    height:0!important;
  }

  body.public-site .public-navbar .nav-links.dragging{
    cursor:grabbing!important;
    scroll-behavior:auto!important;
  }

  body.public-site .public-navbar .nav-links a{
    height:54px!important;
    min-height:54px!important;
    padding:0 16px!important;
    font-size:14px!important;
    border-left:1px solid rgba(255,255,255,.05)!important;
  }

  body.public-site #mobileCategoryPanel{
    display:none!important;
  }
}

@media(max-width:430px){
  body.public-site .public-navbar .nav-links a{
    padding:0 15px!important;
    font-size:13px!important;
  }
}


/* ============================================================
   MENU MOBILE ESTILO CNN - AUTO SCROLL + ARRASTÁVEL
   ============================================================ */
@media(max-width:768px){
  body.public-site .public-navbar .nav-drag-scroll{
    overflow-x:auto!important;
    overflow-y:hidden!important;
    scroll-behavior:auto!important;
    cursor:grab!important;
  }

  body.public-site .public-navbar .nav-drag-scroll.dragging,
  body.public-site .public-navbar .nav-drag-scroll.user-paused{
    cursor:grabbing!important;
  }

  body.public-site .public-navbar .nav-drag-scroll a{
    flex:0 0 auto!important;
  }
}


/* ============================================================
   MENU MOBILE CNN CONTÍNUO - FIXO, SEM ÍCONES, AUTO + ARRASTAR
   ============================================================ */
body.public-site #publicStickyMenu,
body.public-site .public-navbar{
  position:sticky!important;
  top:0!important;
  z-index:99999!important;
  background:var(--bg2,#101820)!important;
  border-top:2px solid var(--verde,#00BFA6)!important;
  border-bottom:3px solid var(--verde,#00BFA6)!important;
}

body.public-site .public-navbar i,
body.public-site .public-navbar .menu-toggle{
  display:none!important;
}

body.public-site .public-navbar .nav-scroll-container{
  overflow:hidden!important;
}

body.public-site .public-navbar .nav-links{
  animation:none!important;
  transform:none!important;
  display:flex!important;
  flex-wrap:nowrap!important;
  white-space:nowrap!important;
  gap:0!important;
}

body.public-site .public-navbar .nav-links a{
  flex:0 0 auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  height:54px!important;
  padding:0 16px!important;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px!important;
  font-weight:900!important;
  user-select:none!important;
  -webkit-user-drag:none!important;
}

body.public-site .public-navbar .nav-links a.ativo,
body.public-site .public-navbar .nav-links a:hover{
  background:rgba(0,191,166,.18)!important;
  color:#fff!important;
}

@media(max-width:768px){
  body.public-site .public-navbar{
    width:100%!important;
    max-width:100%!important;
    overflow:hidden!important;
  }

  body.public-site .public-navbar .nav-scroll-container{
    width:100%!important;
    max-width:100%!important;
    height:54px!important;
    min-height:54px!important;
    padding:0!important;
    margin:0!important;
    display:block!important;
  }

  body.public-site .public-navbar .nav-links,
  body.public-site .public-navbar .nav-drag-scroll{
    width:100%!important;
    max-width:100%!important;
    height:54px!important;
    min-height:54px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    justify-content:flex-start!important;
    scroll-behavior:auto!important;
    -webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;
    -ms-overflow-style:none!important;
    cursor:grab!important;
    touch-action:pan-x!important;
    overscroll-behavior-x:contain!important;
  }

  body.public-site .public-navbar .nav-links::-webkit-scrollbar,
  body.public-site .public-navbar .nav-drag-scroll::-webkit-scrollbar{
    display:none!important;
  }

  body.public-site .public-navbar .nav-links.dragging{
    cursor:grabbing!important;
  }

  body.public-site .public-navbar .nav-links a{
    height:54px!important;
    min-height:54px!important;
    padding:0 16px!important;
    font-size:14px!important;
    border-left:1px solid rgba(255,255,255,.05)!important;
  }
}

@media(max-width:430px){
  body.public-site .public-navbar .nav-links a{
    padding:0 15px!important;
    font-size:13px!important;
  }
}


/* ============================================================
   MENU FIXO NO TOPO AO ROLAR - DESKTOP E MOBILE
   Mantém o menu no topo da tela durante a navegação.
   ============================================================ */
body.public-site .public-navbar,
body.public-site #publicStickyMenu,
body.public-site .datta-clean-navbar{
  z-index:99999!important;
}

/* Classe aplicada via JS quando o menu chega ao topo */
body.public-site .public-navbar.menu-fixed-top,
body.public-site #publicStickyMenu.menu-fixed-top,
body.public-site .datta-clean-navbar.menu-fixed-top{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  width:100%!important;
  max-width:100%!important;
  z-index:99999!important;
  margin:0!important;
  transform:none!important;
  box-shadow:0 4px 14px rgba(0,0,0,.18)!important;
}

/* Espaçador invisível para a página não "pular" quando o menu fixa */
body.public-site .datta-navbar-spacer{
  display:none;
  width:100%;
  height:0;
}

body.public-site .datta-navbar-spacer.active{
  display:block;
}

/* Garante que o ticker/menu mobile continue visível dentro do menu fixo */
@media(max-width:768px){
  body.public-site .public-navbar.menu-fixed-top,
  body.public-site #publicStickyMenu.menu-fixed-top,
  body.public-site .datta-clean-navbar.menu-fixed-top{
    top:0!important;
  }

  body.public-site .public-navbar.menu-fixed-top .nav-scroll-container,
  body.public-site #publicStickyMenu.menu-fixed-top .nav-scroll-container,
  body.public-site .datta-clean-navbar.menu-fixed-top .nav-scroll-container{
    width:100%!important;
    max-width:100%!important;
  }
}

/* ============================================================
   CORREÇÃO HERO MOBILE - usa imagem_mobile cadastrada no banner
   ============================================================ */
body.public-site .hero-publicidade .hero-slide picture{
  display:block!important;
  width:100%!important;
  line-height:0!important;
}
body.public-site .hero-publicidade .hero-slide picture img{
  display:block!important;
  width:100%!important;
  height:auto!important;
  max-height:none!important;
  object-fit:contain!important;
  object-position:center center!important;
}
@media(max-width:768px){
  body.public-site .hero-publicidade .hero-slide picture,
  body.public-site .hero-publicidade .hero-slide picture img{
    width:100%!important;
  }
  body.public-site .hero-publicidade .hero-slide a{
    display:block!important;
    width:100%!important;
  }
}

/* Vídeo do YouTube dentro da matéria */
.noticia-video-youtube{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  margin:18px 0 24px;
  background:#000;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}
.noticia-video-youtube iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* ============================================================
   AJUSTES SOLICITADOS - MOBILE + SLIDERS
   1) Alinha link "Envie sua Notícia" no rodapé mobile
   2) Centraliza setas dos banners no mobile/desktop
   3) Mantém controles do hero centralizados
   ============================================================ */
body.public-site .footer-links,
body.public-site .footer-links li{
  padding-left:0!important;
  margin-left:0!important;
}
body.public-site .footer-links a{
  padding-left:0!important;
  margin-left:0!important;
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
}
body.public-site .footer-links a:hover{
  padding-left:0!important;
}
body.public-site .footer-links a i{
  width:10px!important;
  min-width:10px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
}

body.public-site .bslider-btn,
.bslider-btn,
body.public-site .hero-controls button,
.hero-controls button{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  line-height:1!important;
  text-align:center!important;
}
body.public-site .bslider-btn{
  top:50%!important;
  transform:translateY(-50%)!important;
}
body.public-site .bslider-btn i,
body.public-site .hero-controls button i{
  display:block!important;
  line-height:1!important;
}


/* ============================================================
   AJUSTE FINAL - centralização perfeita das setas dos sliders
   Vale para todos os banners e também para o hero.
   ============================================================ */
body.public-site .bslider-btn,
.bslider-btn,
body.public-site .hero-controls button,
.hero-controls button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  vertical-align:middle!important;
  text-align:center!important;
  padding:0!important;
}

body.public-site .bslider-btn i,
.bslider-btn i,
body.public-site .hero-controls button i,
.hero-controls button i{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:100%!important;
  height:100%!important;
  margin:0!important;
  padding:0!important;
  line-height:1!important;
  text-align:center!important;
  font-size:14px!important;
  transform:none!important;
}

@media(max-width:768px){
  body.public-site .bslider-btn i,
  .bslider-btn i,
  body.public-site .hero-controls button i,
  .hero-controls button i{
    font-size:13px!important;
  }
}

@media(max-width:480px){
  body.public-site .bslider-btn i,
  .bslider-btn i,
  body.public-site .hero-controls button i,
  .hero-controls button i{
    font-size:12px!important;
  }
}


/* ============================================================
   AJUSTE FINAL - alinhamento do link "Envie sua Notícia" no rodapé mobile
   Deixa todos os links da coluna LINKS exatamente alinhados.
   ============================================================ */
@media(max-width:768px){
  body.public-site .footer-col .footer-links{
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
  }
  body.public-site .footer-col .footer-links li{
    width:100%!important;
    display:block!important;
    margin-left:0!important;
    padding-left:0!important;
  }
  body.public-site .footer-col .footer-links li a,
  body.public-site .footer-col .footer-links li a[href$="/envie-sua-noticia.php"]{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    width:auto!important;
    margin-left:0!important;
    padding-left:0!important;
    padding-right:0!important;
    text-indent:0!important;
    transform:none!important;
    float:none!important;
    position:static!important;
    left:auto!important;
  }
  body.public-site .footer-col .footer-links li a i,
  body.public-site .footer-col .footer-links li a[href$="/envie-sua-noticia.php"] i{
    margin:0 8px 0 0!important;
    width:10px!important;
    min-width:10px!important;
    text-align:center!important;
    flex:0 0 10px!important;
  }
}


/* ============================================================
   AJUSTE EXTRA - garante mesmo tamanho de fonte para
   "Envie sua Notícia" no rodapé mobile
   ============================================================ */
@media(max-width:768px){
  body.public-site .footer-col .footer-links li a[href$="/envie-sua-noticia.php"]{
    font-size:14px!important;
    font-weight:inherit!important;
    line-height:1.4!important;
    letter-spacing:normal!important;
    white-space:normal!important;
  }
}


/* ============================================================
   Página Identidades - vídeos estilo Netflix
   ============================================================ */
.identidades-page{
  min-height:720px;
  background-size:cover;
  background-position:center top;
  background-attachment:fixed;
  color:#fff;
  padding:64px 0 70px;
  overflow:hidden;
}
.identidades-hero{
  width:min(1420px, calc(100% - 80px));
  margin:0 auto 44px;
  display:grid;
  grid-template-columns:minmax(320px, 1fr) auto;
  gap:24px 56px;
  align-items:start;
}
.identidades-hero-main{display:flex;flex-direction:column;align-items:flex-start;gap:20px;min-width:0;}
.identidades-brand{display:flex;align-items:center;gap:16px;}
.identidades-icon{width:70px;height:70px;border:4px solid #fff;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#00bfa6;font-size:36px;background:rgba(255,255,255,.08);box-shadow:0 0 0 5px rgba(0,191,166,.22);}
.identidades-brand h1{font-size:62px;line-height:1;font-weight:900;color:#fff;text-shadow:0 4px 0 rgba(0,0,0,.5),0 0 18px rgba(255,255,255,.35);}
.identidades-hero p{margin:0;font-size:20px;line-height:1.45;color:rgba(255,255,255,.88);max-width:720px;border-left:5px solid #fff;padding-left:22px;}
.identidades-schedule-wrap{justify-self:end;align-self:start;text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:10px;padding:14px 18px;border-radius:18px;background:rgba(5,11,30,.35);border:1px solid rgba(255,255,255,.1);backdrop-filter:blur(6px);box-shadow:0 10px 24px rgba(0,0,0,.18);}
.identidades-schedule{text-align:right;font-size:20px;font-weight:900;text-transform:uppercase;font-style:italic;letter-spacing:.04em;color:#fff;line-height:1.1;}
.identidades-platforms{display:flex;flex-direction:column;align-items:flex-end;gap:8px;}
.identidades-platforms span{display:block;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:#fff;opacity:.92;}
.identidades-platform-icons{display:flex;align-items:center;gap:8px;}
.identidades-platform-icons a{width:34px;height:34px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;transition:transform .2s ease, opacity .2s ease, background .2s ease;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);box-shadow:0 6px 16px rgba(0,0,0,.18);}
.identidades-platform-icons a:hover{transform:translateY(-2px);opacity:.96;background:rgba(255,255,255,.1);}
.identidades-platform-icons .fa-youtube{font-size:18px;color:#ff0000;}
.identidades-platform-icons .fa-instagram{font-size:17px;color:#ff4aa2;}
.identidades-platform-icons .fa-facebook-f{font-size:16px;color:#1877f2;}
.identidades-season{width:min(1500px, calc(100% - 80px));margin:0 auto 42px;}
.identidades-season-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;}
.identidades-season h2{font-size:28px;font-weight:900;color:#fff;}
.identidades-row-controls{display:flex;gap:8px;}
.identidades-row-controls button{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.38);background:rgba(0,0,0,.6);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s;}
.identidades-row-controls button:hover{background:#00bfa6;color:#00110e;border-color:#00bfa6;}
.identidades-carousel{display:flex;gap:18px;overflow-x:auto;scroll-behavior:smooth;padding:2px 0 12px;scrollbar-width:none;}
.identidades-carousel::-webkit-scrollbar{display:none;}
.identidades-card{flex:0 0 360px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:12px;overflow:hidden;box-shadow:0 14px 30px rgba(0,0,0,.35);transition:transform .2s, box-shadow .2s;background-color:#05080d;}
.identidades-card:hover{transform:translateY(-5px) scale(1.015);box-shadow:0 20px 42px rgba(0,0,0,.48);}
.identidades-video-box{position:relative;aspect-ratio:16/9;background:#fff;}
.identidades-video-box iframe,.identidades-video-box img{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover;}
.identidades-card-info{padding:14px 16px 18px;}
.identidades-card-info span{display:inline-block;font-size:12px;font-weight:800;color:#00e0c0;text-transform:uppercase;margin-bottom:6px;}
.identidades-card-info h3{font-size:17px;line-height:1.25;color:#fff;margin-bottom:6px;}
.identidades-card-info p{font-size:13px;line-height:1.45;color:rgba(255,255,255,.74);}
.identidades-empty{width:min(900px, calc(100% - 40px));margin:40px auto;background:rgba(0,0,0,.48);border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:42px;text-align:center;}
.identidades-empty i{font-size:44px;color:#00bfa6;margin-bottom:12px;}
.identidades-empty h2{font-size:26px;margin-bottom:8px;}
.identidades-empty p{color:rgba(255,255,255,.75);}
@media(max-width:900px){
  .identidades-page{padding:44px 0 48px;background-attachment:scroll;}
  .identidades-hero{width:calc(100% - 30px);grid-template-columns:1fr;gap:20px;margin-bottom:34px;}
  .identidades-hero-main{gap:16px;}
  .identidades-brand h1{font-size:44px;}
  .identidades-icon{width:56px;height:56px;font-size:28px;}
  .identidades-hero p{font-size:16px;max-width:none;}
  .identidades-schedule-wrap{justify-self:start;align-items:flex-start;text-align:left;padding:12px 14px;}
  .identidades-schedule{text-align:left;font-size:18px;}
  .identidades-platforms{align-items:flex-start;}
  .identidades-platforms span{font-size:11px;}
  .identidades-platform-icons a{width:32px;height:32px;border-radius:10px;}
  .identidades-platform-icons .fa-youtube{font-size:17px;}
  .identidades-platform-icons .fa-instagram{font-size:16px;}
  .identidades-platform-icons .fa-facebook-f{font-size:15px;}
  .identidades-season{width:calc(100% - 24px);margin-bottom:32px;}
  .identidades-season h2{font-size:23px;}
  .identidades-card{flex-basis:82vw;}
}
@media(max-width:520px){
  .identidades-brand h1{font-size:36px;}
  .identidades-hero p{padding-left:14px;}
  .identidades-schedule-wrap{width:100%;box-sizing:border-box;}
  .identidades-row-controls button{width:34px;height:34px;}
  .identidades-card{flex-basis:86vw;}
}

/* ============================================================
   PADRONIZAÇÃO FINAL DAS IMAGENS DE NOTÍCIAS
   Mesmo que o upload venha grande, quadrado ou vertical, novas
   imagens são salvas em 1200×675 WebP; esta regra também mantém
   o visual 16:9 para imagens antigas já cadastradas.
   ============================================================ */
body.public-site .noticia-page-wrap .noticia-imagem img,
.noticia-imagem img{
  width:100%!important;
  aspect-ratio:16/9!important;
  height:auto!important;
  object-fit:cover!important;
  object-position:center center!important;
  display:block!important;
}

body.public-site .card-img img,
.card-img img{
  object-fit:cover!important;
  object-position:center center!important;
}


/* ============================================================
   CORREÇÃO TEXTO DE MATÉRIA COLADO DO WHATSAPP/CELULAR
   Garante que o conteúdo publicado fique legível no site público.
   ============================================================ */
body.public-site .noticia-page-wrap .noticia-conteudo,
body.public-site .noticia-page-wrap .noticia-conteudo p,
body.public-site .noticia-page-wrap .noticia-conteudo li,
body.public-site .noticia-page-wrap .noticia-conteudo blockquote,
body.public-site .noticia-page-wrap .noticia-conteudo div,
body.public-site .noticia-page-wrap .noticia-conteudo span,
body.public-site .noticia-page-wrap .noticia-conteudo strong,
body.public-site .noticia-page-wrap .noticia-conteudo b,
body.public-site .noticia-page-wrap .noticia-conteudo em,
body.public-site .noticia-page-wrap .noticia-conteudo i,
body.public-site .noticia-page-wrap .noticia-conteudo u{
  color:#1f2731!important;
  background:transparent!important;
  background-color:transparent!important;
}

body.public-site .noticia-page-wrap .noticia-conteudo h2,
body.public-site .noticia-page-wrap .noticia-conteudo h3{
  color:#111820!important;
  background:transparent!important;
}

body.public-site .noticia-page-wrap .noticia-conteudo a{
  color:var(--verde)!important;
}


/* HOME - anúncio extra ao lado das últimas notícias */
body.public-site .home-destaque-banner-slot{
  width:100%!important;
  margin-top:2px!important;
}
body.public-site .home-destaque-banner-slot .bslider-wrap,
body.public-site .home-destaque-banner-slot .banner-area{
  margin:0!important;
}
body.public-site .home-destaque-banner-slot .bslider-slide img{
  width:100%!important;
  height:auto!important;
  object-fit:cover!important;
}
@media(max-width:768px){
  body.public-site .home-destaque-banner-slot{
    margin-top:6px!important;
  }
}

/* ============================================================
   IDENTIDADES NOVO - página tipo Netflix + páginas de programas
   ============================================================ */
.identflix-page,
.identprog-page{
  background:#000!important;
  color:#fff;
  min-height:calc(100vh - 80px);
  overflow:hidden;
}
.identflix-hero{
  position:relative;
  min-height:calc(100vh - 76px);
  background:#000;
  overflow:hidden;
}
.identflix-bg-video,
.identflix-bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
  transform:scale(1.18);
  opacity:.5;
}
.identflix-bg-image{background-size:cover;background-position:center;transform:none;}
.identflix-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.18) 0%,rgba(0,0,0,.45) 44%,#000 78%,#000 100%),
    linear-gradient(90deg,#000 0%,rgba(0,0,0,.72) 28%,rgba(0,0,0,.2) 62%,rgba(0,0,0,.65) 100%);
  z-index:1;
}
.identflix-content{
  position:relative;
  z-index:2;
  width:min(1540px, calc(100% - 90px));
  min-height:calc(100vh - 76px);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 0 26px;
}
.identflix-spacer{min-height:42vh;}
.identflix-actions{display:flex;align-items:center;gap:16px;margin-bottom:34px;}
.identflix-btn{
  height:25px;
  border-radius:5px;
  border:0;
  padding:0 27px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  text-decoration:none;
  text-transform:uppercase;
  font-size:15px;
  line-height:1;
  font-weight:900;
  letter-spacing:.02em;
  cursor:pointer;
  transition:transform .18s ease, opacity .18s ease, background .18s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.4);
}
.identflix-btn:hover{transform:translateY(-2px);opacity:.92;}
.identflix-btn-watch{background:#fff;color:#1f1f1f;}
.identflix-btn-more{background:rgba(124,124,124,.88);color:#fff;min-width:245px;}
.identflix-btn i{font-size:.78em;}
.identflix-row h2{
  margin:0 0 10px 8px;
  color:#fff;
  font-size:28px;
  line-height:1.2;
  font-weight:900;
  text-shadow:0 2px 6px rgba(0,0,0,.75);
}
.identflix-programas{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 1fr);
  grid-template-rows:1fr;
  gap:16px;
  overflow-x:auto;
  padding:0 0 8px;
  scrollbar-width:none;
}
.identflix-programas::-webkit-scrollbar{display:none;}
.identflix-programa-card{
  min-width:260px;
  height:210px;
  border-radius:30px;
  padding:12px;
  background:linear-gradient(180deg,#222,#101010);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 0 0 7px rgba(255,255,255,.04),0 12px 26px rgba(0,0,0,.55);
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.identflix-programa-card:hover{transform:translateY(-5px) scale(1.02);border-color:rgba(255,255,255,.22);box-shadow:inset 0 0 0 7px rgba(255,255,255,.06),0 20px 34px rgba(0,0,0,.72);}
.identflix-programa-inner{
  width:100%;height:100%;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:radial-gradient(circle at 50% 15%,rgba(255,255,255,.36),rgba(255,255,255,.06) 34%,rgba(0,0,0,.5) 100%);
  overflow:hidden;
}
.identflix-programa-inner img{max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 8px 10px rgba(0,0,0,.7));}
.identflix-programa-inner strong{font-size:26px;text-align:center;color:#fff;text-transform:uppercase;text-shadow:0 3px 10px #000;}
.identflix-empty{padding:28px;background:rgba(255,255,255,.06);border-radius:18px;color:rgba(255,255,255,.78);}
.identflix-modal{position:fixed;inset:0;z-index:99999;display:none;align-items:center;justify-content:center;padding:30px;}
.identflix-modal.aberto{display:flex;}
.identflix-modal-bg{position:absolute;inset:0;background:rgba(0,0,0,.86);backdrop-filter:blur(4px);}
.identflix-modal-box{position:relative;width:min(1100px,96vw);aspect-ratio:16/9;background:#000;border-radius:16px;box-shadow:0 24px 80px rgba(0,0,0,.9);}
.identflix-modal-box iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:16px;}
.identflix-modal-close{position:absolute;right:-16px;top:-16px;width:44px;height:44px;border-radius:50%;border:0;background:#fff;color:#000;z-index:2;cursor:pointer;font-size:18px;box-shadow:0 10px 24px rgba(0,0,0,.45);}

.identprog-page{
  background-size:cover;
  background-position:center top;
  background-attachment:fixed;
  padding:64px 0 72px;
}
.identprog-top,
.identprog-season,
.identprog-empty{width:min(1500px, calc(100% - 70px));margin-left:auto;margin-right:auto;}
.identprog-top{min-height:230px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;padding-bottom:28px;}
.identprog-back{display:inline-flex;align-items:center;gap:8px;margin-bottom:22px;color:#fff;text-decoration:none;font-weight:800;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:9px 16px;}
.identprog-logo{max-width:360px;max-height:150px;object-fit:contain;filter:drop-shadow(0 10px 16px rgba(0,0,0,.8));}
.identprog-top h1{font-size:64px;font-weight:950;line-height:1;text-transform:uppercase;text-shadow:0 5px 18px rgba(0,0,0,.8);}
.identprog-top p{max-width:760px;margin-top:16px;font-size:18px;line-height:1.5;color:rgba(255,255,255,.84);}
.identprog-season{margin-bottom:34px;}
.identprog-season h2{font-size:14px;margin:0 0 8px 6px;color:#fff;font-weight:900;text-shadow:0 2px 8px #000;}
.identprog-grid{display:grid;grid-template-columns:repeat(5, minmax(190px,1fr));gap:5px;}
.identprog-card{background:rgba(255,255,255,.06);border-radius:5px;overflow:hidden;cursor:pointer;transition:transform .18s ease, box-shadow .18s ease;background-color:#101010;}
.identprog-card:hover{transform:scale(1.035);box-shadow:0 16px 38px rgba(0,0,0,.65);z-index:3;}
.identprog-thumb{position:relative;aspect-ratio:16/9;background:#fff;}
.identprog-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.identprog-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:58px;height:58px;border-radius:50%;background:#e50914;color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;box-shadow:0 8px 20px rgba(0,0,0,.45);opacity:.96;}
.identprog-info{padding:12px;background:#111;min-height:104px;}
.identprog-info span{font-size:11px;font-weight:900;text-transform:uppercase;color:#00e0c0;}
.identprog-info h3{font-size:15px;line-height:1.25;color:#fff;margin:4px 0;}
.identprog-info p{font-size:12px;color:rgba(255,255,255,.68);line-height:1.35;}
.identprog-empty{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.11);border-radius:16px;padding:34px;color:#fff;}
.identprog-empty a{color:#00e0c0;font-weight:800;}

@media(max-width:1200px){
  .identprog-grid{grid-template-columns:repeat(4, minmax(170px,1fr));}
  .identflix-btn{height:24px;font-size:13px;padding:0 22px;}
  .identflix-btn-more{min-width:190px;}
}
@media(max-width:900px){
  .identflix-content{width:calc(100% - 28px);min-height:calc(100vh - 70px);padding-bottom:20px;}
  .identflix-spacer{min-height:38vh;}
  .identflix-actions{gap:8px;margin-bottom:22px;}
  .identflix-btn{height:24px;border-radius:5px;font-size:12px;padding:0 15px;}
  .identflix-btn-more{min-width:0;}
  .identflix-row h2{font-size:20px;}
  .identflix-programas{grid-auto-columns:220px;gap:12px;}
  .identflix-programa-card{height:145px;min-width:220px;border-radius:20px;padding:8px;}
  .identflix-programa-inner{border-radius:15px;padding:16px;}
  .identprog-page{background-attachment:scroll;padding:34px 0 46px;}
  .identprog-top,.identprog-season,.identprog-empty{width:calc(100% - 24px);}
  .identprog-top{min-height:180px;}
  .identprog-top h1{font-size:38px;}
  .identprog-logo{max-width:260px;max-height:110px;}
  .identprog-grid{grid-template-columns:repeat(2, minmax(140px,1fr));gap:8px;}
}
@media(max-width:520px){
  .identflix-actions{align-items:flex-start;flex-direction:row;width:100%;}
  .identflix-btn{width:auto;font-size:11px;}
  .identflix-programas{grid-auto-columns:74vw;}
  .identflix-programa-card{height:155px;}
  .identprog-grid{grid-template-columns:1fr;}
}

/* ============================================================
   AJUSTE IDENTIDADES - carrossel de programas + blocos sticky
   ============================================================ */
.identflix-page{overflow-x:hidden!important;overflow-y:visible!important;background:#000!important;}
.identflix-hero{min-height:calc(100vh - 76px);border-bottom:3px solid var(--cor-primaria,#00bfa6);}
.identflix-content{padding-bottom:30px;}
.identflix-actions{gap:16px;margin-bottom:30px;}
.identflix-btn{height:25px!important;min-height:25px!important;border-radius:5px!important;padding:0 26px!important;font-size:14px!important;line-height:1!important;}
.identflix-btn-more{min-width:245px!important;}
.identflix-row-titlebar,.identflix-episode-titlebar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:10px;}
.identflix-row-titlebar h2,.identflix-episode-titlebar h3{margin:0 0 0 8px;color:#fff;font-weight:950;text-shadow:0 2px 8px rgba(0,0,0,.8);}
.identflix-row-titlebar h2{font-size:29px;}
.identflix-episode-titlebar h3{font-size:22px;}
.identflix-row-arrows{display:flex;align-items:center;gap:8px;}
.identflix-row-arrows button,.identflix-side-arrow{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.26);background:rgba(0,0,0,.62);color:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:.18s ease;box-shadow:0 8px 22px rgba(0,0,0,.45);}
.identflix-row-arrows button:hover,.identflix-side-arrow:hover{background:var(--cor-primaria,#00bfa6);color:#00130f;border-color:var(--cor-primaria,#00bfa6);transform:translateY(-1px);}
.identflix-programas-wrap{position:relative;}
.identflix-programas{display:flex!important;grid-auto-flow:unset!important;grid-auto-columns:unset!important;gap:16px;overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth;scroll-snap-type:x proximity;padding:0 0 8px;}
.identflix-programa-card{flex:0 0 260px;scroll-snap-align:start;}
.identflix-side-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;background:rgba(8,8,8,.72);}
.identflix-side-left{left:-18px;}
.identflix-side-right{right:-18px;}
.identflix-program-blocks{position:relative;background:#000;}
.identflix-program-section{position:sticky;top:76px;min-height:calc(100vh - 76px);background:#000;background-size:cover;background-position:center;background-repeat:no-repeat;display:flex;align-items:flex-end;border-bottom:1px solid rgba(255,255,255,.08);box-shadow:0 -20px 70px rgba(0,0,0,.75) inset;}
.identflix-program-section::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,.72) 45%,#000 100%);pointer-events:none;}
.identflix-program-section-inner{position:relative;z-index:2;width:min(1540px,calc(100% - 90px));margin:0 auto;padding:60px 0 50px;}
.identflix-program-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:24px;}
.identflix-program-head span{display:block;color:var(--cor-primaria,#00bfa6);font-size:12px;font-weight:900;letter-spacing:.16em;text-transform:uppercase;margin-bottom:10px;}
.identflix-program-head img{max-width:300px;max-height:115px;object-fit:contain;filter:drop-shadow(0 12px 20px #000);}
.identflix-program-head h2{font-size:56px;line-height:1;font-weight:950;text-transform:uppercase;text-shadow:0 6px 20px #000;margin:0;}
.identflix-program-head p{max-width:720px;font-size:16px;line-height:1.5;color:rgba(255,255,255,.82);margin-top:12px;}
.identflix-program-head a{flex:0 0 auto;display:inline-flex;align-items:center;gap:8px;padding:11px 16px;border-radius:999px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:#fff;text-decoration:none;font-weight:800;font-size:13px;transition:.18s ease;}
.identflix-program-head a:hover{background:var(--cor-primaria,#00bfa6);color:#00130f;border-color:var(--cor-primaria,#00bfa6);}
.identflix-episodes{display:flex;gap:12px;overflow-x:auto;overflow-y:visible;scroll-behavior:smooth;scroll-snap-type:x proximity;padding:4px 2px 18px;scrollbar-width:none;}
.identflix-episodes::-webkit-scrollbar{display:none;}
.identflix-episode-card{flex:0 0 292px;scroll-snap-align:start;border:0;border-radius:9px;overflow:hidden;background:#141414;color:#fff;text-align:left;cursor:pointer;padding:0;box-shadow:0 12px 30px rgba(0,0,0,.42);transition:transform .18s ease, box-shadow .18s ease;}
.identflix-episode-card:hover{transform:scale(1.045);box-shadow:0 18px 46px rgba(0,0,0,.75);z-index:4;}
.identflix-episode-thumb{position:relative;display:block;aspect-ratio:16/9;background:#1c1c1c;}
.identflix-episode-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.identflix-episode-thumb span{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:48px;height:48px;border-radius:50%;background:#e50914;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 20px rgba(0,0,0,.55);}
.identflix-episode-info{display:block;padding:12px 13px 15px;min-height:110px;}
.identflix-episode-info small{display:block;color:var(--cor-primaria,#00bfa6);font-size:10px;font-weight:900;text-transform:uppercase;margin-bottom:5px;}
.identflix-episode-info strong{display:block;font-size:15px;line-height:1.25;font-weight:900;color:#fff;}
.identflix-episode-info em{display:block;margin-top:6px;font-size:12px;line-height:1.35;color:rgba(255,255,255,.67);font-style:normal;}
.identflix-empty-small{max-width:540px;padding:20px!important;background:rgba(255,255,255,.08)!important;}
.identflix-modal-youtube{position:absolute;right:42px;top:-16px;height:34px;padding:0 13px;border-radius:999px;background:#fff;color:#111;text-decoration:none;display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:900;z-index:3;box-shadow:0 10px 24px rgba(0,0,0,.45);}
.identflix-modal-youtube i{color:#e50914;font-size:15px;}
@media(max-width:900px){
  .identflix-btn{height:22px!important;min-height:22px!important;font-size:11px!important;padding:0 14px!important;}
  .identflix-btn-more{min-width:0!important;}
  .identflix-row-arrows{display:none;}
  .identflix-side-arrow{display:inline-flex;width:34px;height:34px;}
  .identflix-programa-card{flex-basis:220px;}
  .identflix-program-section{position:relative;top:auto;min-height:auto;}
  .identflix-program-section-inner{width:calc(100% - 28px);padding:42px 0 36px;}
  .identflix-program-head{align-items:flex-start;flex-direction:column;gap:16px;}
  .identflix-program-head img{max-width:220px;max-height:92px;}
  .identflix-program-head h2{font-size:34px;}
  .identflix-episode-card{flex-basis:250px;}
}
@media(max-width:520px){
  .identflix-side-left{left:4px;}.identflix-side-right{right:4px;}
  .identflix-programa-card{flex-basis:74vw;}
  .identflix-episode-card{flex-basis:78vw;}
  .identflix-modal-youtube{right:30px;top:auto;bottom:-44px;}
}

/* ============================================================
   AJUSTE SOLICITADO - Identidades: destaque mais claro,
   descrição editável e navegação sticky por container
   ============================================================ */
.identflix-bg-video,
.identflix-bg-image{
  opacity:.82!important;
  filter:brightness(1.18) contrast(1.04) saturate(1.06)!important;
}
.identflix-overlay{
  background:
    linear-gradient(180deg,rgba(0,0,0,.04) 0%,rgba(0,0,0,.18) 42%,rgba(0,0,0,.74) 78%,#000 100%),
    linear-gradient(90deg,rgba(0,0,0,.62) 0%,rgba(0,0,0,.30) 34%,rgba(0,0,0,.10) 64%,rgba(0,0,0,.50) 100%)!important;
}
.identflix-hero-copy{
  width:min(520px, 44vw);
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  margin:0 0 14px;
  padding:0;
  color:#fff;
  text-shadow:0 4px 18px rgba(0,0,0,.9);
}
.identflix-hero-copy h1{
  margin:0 0 8px;
  font-size:clamp(28px,4vw,58px);
  line-height:.98;
  font-weight:950;
  text-transform:uppercase;
}
.identflix-hero-copy p{
  margin:0;
  max-width:500px;
  font-size:clamp(14px,1.25vw,18px);
  line-height:1.45;
  color:rgba(255,255,255,.88);
}
.identflix-actions{margin-bottom:26px!important;}
.identflix-program-blocks{
  position:relative!important;
  background:#000!important;
  overflow:visible!important;
}
.identflix-program-section{
  position:relative!important;
  top:auto!important;
  height:165vh!important;
  min-height:900px!important;
  display:block!important;
  background-size:cover!important;
  background-position:center!important;
  border-bottom:0!important;
  box-shadow:none!important;
}
.identflix-program-section + .identflix-program-section{margin-top:-70vh;}
.identflix-program-section::before{
  background:
    linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.75) 42%,rgba(0,0,0,.35) 74%,rgba(0,0,0,.82) 100%),
    linear-gradient(180deg,rgba(0,0,0,.20) 0%,rgba(0,0,0,.58) 58%,#000 100%)!important;
  z-index:1;
}
.identflix-program-section-inner{
  position:sticky!important;
  top:76px!important;
  height:calc(100vh - 76px)!important;
  width:min(1540px,calc(100% - 90px))!important;
  margin:0 auto!important;
  padding:0 0 46px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
  z-index:2!important;
}
.identflix-program-head-clean{
  margin-bottom:12px!important;
  align-items:center!important;
}
.identflix-program-head-clean h2{
  font-size:clamp(32px,4vw,60px)!important;
  color:#fff!important;
  letter-spacing:-.03em!important;
  text-transform:uppercase!important;
}
.identflix-program-head-clean a{margin-bottom:6px;}
.identflix-episode-titlebar{margin-bottom:14px!important;}
.identflix-episode-titlebar h3{
  display:none!important;
}
@media(max-width:900px){
  .identflix-bg-video,.identflix-bg-image{opacity:.74!important;}
  .identflix-hero-copy{width:calc(100% - 20px);min-height:110px;margin-bottom:12px;}
  .identflix-program-section{height:auto!important;min-height:auto!important;margin-top:0!important;}
  .identflix-program-section + .identflix-program-section{margin-top:0!important;}
  .identflix-program-section-inner{position:relative!important;top:auto!important;height:auto!important;width:calc(100% - 28px)!important;padding:42px 0 36px!important;}
  .identflix-program-head-clean{align-items:flex-start!important;}
  .identflix-program-head-clean h2{font-size:34px!important;}
}


/* ============================================================
   REFINO IDENTIDADES - efeito sticky checkdsgn + cards menores
   ============================================================ */
.identflix-page{
  overflow-x:hidden!important;
  background:#000!important;
}
.identflix-hero{
  min-height:calc(100vh - 76px)!important;
  margin-top:0!important;
  padding-top:0!important;
  overflow:hidden!important;
  background:#000!important;
}
.identflix-bg-video{
  width:177.78vh!important;
  min-width:100%!important;
  height:56.25vw!important;
  min-height:100%!important;
  left:50%!important;
  top:50%!important;
  right:auto!important;
  bottom:auto!important;
  transform:translate(-50%,-50%) scale(1.08)!important;
  object-fit:cover!important;
  opacity:.92!important;
  filter:brightness(1.28) contrast(1.03) saturate(1.04)!important;
}
.identflix-bg-image{
  opacity:.9!important;
  filter:brightness(1.25) contrast(1.03) saturate(1.04)!important;
}
.identflix-overlay{
  background:
    linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.10) 38%,rgba(0,0,0,.58) 74%,#000 100%),
    linear-gradient(90deg,rgba(0,0,0,.56) 0%,rgba(0,0,0,.20) 42%,rgba(0,0,0,.12) 68%,rgba(0,0,0,.46) 100%)!important;
}
.identflix-content{
  min-height:calc(100vh - 76px)!important;
  padding-top:0!important;
  padding-bottom:34px!important;
}
.identflix-spacer{min-height:42vh!important;}
.identflix-hero-copy{margin-bottom:12px!important;}
.identflix-actions{gap:16px!important;margin-bottom:28px!important;}
.identflix-btn{
  height:25px!important;
  min-height:25px!important;
  font-size:13px!important;
  padding:0 22px!important;
  border-radius:5px!important;
}
.identflix-btn-more{min-width:245px!important;}
.identflix-row-titlebar h2{font-size:28px!important;margin-left:0!important;}
.identflix-programas{gap:14px!important;padding-bottom:4px!important;}
.identflix-programa-card{
  flex:0 0 210px!important;
  min-width:210px!important;
  height:126px!important;
  border-radius:18px!important;
  padding:7px!important;
  box-shadow:inset 0 0 0 4px rgba(255,255,255,.045),0 10px 22px rgba(0,0,0,.55)!important;
}
.identflix-programa-card:hover{transform:translateY(-3px) scale(1.025)!important;}
.identflix-programa-inner{
  border-radius:13px!important;
  padding:16px!important;
}
.identflix-programa-inner img{
  max-width:78%!important;
  max-height:78%!important;
}
.identflix-side-arrow{width:38px!important;height:38px!important;}
.identflix-side-left{left:-20px!important;}
.identflix-side-right{right:-20px!important;}

/* Containers: cada programa prende na tela e o próximo entra por cima, igual ao efeito do checkdsgn */
.identflix-program-blocks{
  position:relative!important;
  background:#000!important;
  overflow:visible!important;
  isolation:isolate!important;
}
.identflix-program-section{
  position:sticky!important;
  top:0!important;
  z-index:var(--stack,1)!important;
  height:100vh!important;
  min-height:720px!important;
  margin:0!important;
  display:flex!important;
  align-items:flex-end!important;
  background-color:#000!important;
  background-size:cover!important;
  background-position:center!important;
  background-repeat:no-repeat!important;
  border-bottom:0!important;
  box-shadow:none!important;
  overflow:hidden!important;
}
.identflix-program-section + .identflix-program-section{margin-top:0!important;}
.identflix-program-section::before{
  background:
    linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.54) 42%,rgba(0,0,0,.24) 72%,rgba(0,0,0,.62) 100%),
    linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.38) 60%,rgba(0,0,0,.92) 100%)!important;
}
.identflix-program-section-inner{
  position:relative!important;
  top:auto!important;
  height:auto!important;
  width:min(1540px,calc(100% - 90px))!important;
  margin:0 auto!important;
  padding:0 0 44px!important;
  display:block!important;
  z-index:2!important;
}
.identflix-program-head-clean{
  margin-bottom:18px!important;
  display:flex!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
}
.identflix-program-head-clean h2{
  font-size:clamp(34px,4vw,56px)!important;
  line-height:.95!important;
  margin:0!important;
}
.identflix-program-head-clean a{
  margin:4px 0 0!important;
  padding:10px 16px!important;
}
.identflix-episode-titlebar{margin-bottom:10px!important;}
.identflix-episode-titlebar h3{display:none!important;}
.identflix-episodes{gap:12px!important;padding-bottom:8px!important;}
.identflix-episode-card{flex-basis:292px!important;}

@media(max-width:900px){
  .identflix-hero{min-height:calc(100vh - 64px)!important;}
  .identflix-content{width:calc(100% - 28px)!important;min-height:calc(100vh - 64px)!important;}
  .identflix-bg-video{width:177.78vh!important;height:56.25vw!important;}
  .identflix-btn{height:22px!important;min-height:22px!important;font-size:11px!important;padding:0 14px!important;}
  .identflix-btn-more{min-width:0!important;}
  .identflix-programa-card{flex-basis:190px!important;min-width:190px!important;height:116px!important;}
  .identflix-row-arrows{display:none!important;}
  .identflix-side-arrow{display:inline-flex!important;width:34px!important;height:34px!important;}
  .identflix-program-section{position:relative!important;top:auto!important;height:auto!important;min-height:560px!important;}
  .identflix-program-section-inner{width:calc(100% - 28px)!important;padding:38px 0 34px!important;}
  .identflix-program-head-clean{flex-direction:column!important;gap:14px!important;}
  .identflix-program-head-clean h2{font-size:34px!important;}
  .identflix-episode-card{flex-basis:250px!important;}
}
@media(max-width:520px){
  .identflix-programa-card{flex-basis:68vw!important;min-width:68vw!important;height:130px!important;}
  .identflix-episode-card{flex-basis:78vw!important;}
}

/* ============================================================
   CORREÇÃO IDENTIDADES - remover faixa preta entre menu e vídeo
   ============================================================ */
body.public-site main.identflix-page,
body.public-site .identflix-page{
  margin-top:0!important;
  padding-top:0!important;
  background:#000!important;
}
body.public-site .public-navbar + main.identflix-page{
  margin-top:0!important;
}
body.public-site .identflix-hero{
  margin-top:0!important;
  padding-top:0!important;
  border-top:0!important;
  background:#000!important;
  overflow:hidden!important;
}
body.public-site .identflix-hero::before{
  display:none!important;
}
body.public-site .identflix-bg-video{
  top:43%!important;
  left:50%!important;
  width:190vh!important;
  min-width:112%!important;
  height:62vw!important;
  min-height:112%!important;
  transform:translate(-50%,-50%) scale(1.20)!important;
  object-fit:cover!important;
}
body.public-site .identflix-bg-image{
  top:0!important;
  background-position:center top!important;
  background-size:cover!important;
}
body.public-site .identflix-overlay{
  top:0!important;
}
body.public-site .identflix-content{
  margin-top:0!important;
  padding-top:0!important;
}
@media(max-width:900px){
  body.public-site .identflix-bg-video{
    top:43%!important;
    width:190vh!important;
    height:62vw!important;
    min-height:112%!important;
    transform:translate(-50%,-50%) scale(1.22)!important;
  }
}

/* ============================================================
   AJUSTE IDENTIDADES - aproximar início dos containers de programas
   ============================================================ */
body.public-site .identflix-program-section{
  top:74px!important;
  height:calc(100vh - 74px)!important;
  min-height:620px!important;
  align-items:flex-start!important;
  justify-content:flex-start!important;
}
body.public-site .identflix-program-section-inner{
  padding:64px 0 24px!important;
  margin:0 auto!important;
}
body.public-site .identflix-program-head-clean{
  margin-bottom:14px!important;
}
body.public-site .identflix-episodes{
  padding-bottom:4px!important;
}
body.public-site .identflix-program-section + .identflix-program-section{
  margin-top:-2px!important;
}

@media(max-width:900px){
  body.public-site .identflix-program-section{
    top:auto!important;
    height:auto!important;
    min-height:480px!important;
  }
  body.public-site .identflix-program-section-inner{
    padding:32px 0 28px!important;
  }
}

/* ============================================================
   AJUSTE IDENTIDADES - cards dos programas preenchidos e sem setas laterais
   ============================================================ */
body.public-site .identflix-side-arrow{
  display:none!important;
}
body.public-site .identflix-programas-wrap{
  padding-left:0!important;
  padding-right:0!important;
}
body.public-site .identflix-programa-card{
  overflow:hidden!important;
}
body.public-site .identflix-programa-inner{
  padding:0!important;
  background:#111!important;
  border-radius:18px!important;
}
body.public-site .identflix-programa-inner img{
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center center!important;
  display:block!important;
  filter:none!important;
}
@media(max-width:900px){
  body.public-site .identflix-side-arrow{display:none!important;}
}

/* ============================================================
   AJUSTE PÁGINAS DOS PROGRAMAS - título/descrição no topo, sem logo
   ============================================================ */
body.public-site .identprog-page{
  margin-top:0!important;
  padding:22px 0 58px!important;
  background-color:#000!important;
  background-size:cover!important;
  background-position:center top!important;
  background-repeat:no-repeat!important;
  background-attachment:fixed!important;
}
body.public-site .identprog-top{
  min-height:170px!important;
  justify-content:flex-start!important;
  padding:18px 0 16px!important;
}
body.public-site .identprog-back{
  margin-bottom:22px!important;
}
body.public-site .identprog-logo{
  display:none!important;
}
body.public-site .identprog-title-copy h1,
body.public-site .identprog-top h1{
  margin:0 0 8px!important;
  font-size:clamp(42px,5vw,72px)!important;
  line-height:.95!important;
  font-weight:950!important;
  text-transform:uppercase!important;
  color:#fff!important;
  text-shadow:0 6px 22px rgba(0,0,0,.9)!important;
  letter-spacing:-.03em!important;
}
body.public-site .identprog-title-copy p,
body.public-site .identprog-top p{
  margin:0!important;
  max-width:760px!important;
  font-size:clamp(15px,1.25vw,19px)!important;
  line-height:1.45!important;
  color:rgba(255,255,255,.88)!important;
  text-shadow:0 4px 16px rgba(0,0,0,.9)!important;
}
body.public-site .identprog-season{
  margin-top:8px!important;
}
@media(max-width:900px){
  body.public-site .identprog-page{padding:12px 0 42px!important;background-attachment:scroll!important;}
  body.public-site .identprog-top{min-height:145px!important;padding-top:12px!important;}
  body.public-site .identprog-back{margin-bottom:16px!important;}
}

/* ============================================================
   CORREÇÃO FINAL - página do programa com fundo cadastrado
   ============================================================ */
body.public-site .identprog-page{
  position:relative!important;
  isolation:isolate!important;
  min-height:calc(100vh - 74px)!important;
  padding:0 0 46px!important;
  background:#000!important;
  overflow:hidden!important;
}
body.public-site .identprog-page::before{
  content:""!important;
  position:fixed!important;
  inset:0!important;
  z-index:-2!important;
  background-image:linear-gradient(90deg,rgba(0,0,0,.70),rgba(0,0,0,.38),rgba(0,0,0,.72)),linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.70)),var(--identprog-bg)!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
  opacity:1!important;
}
body.public-site .identprog-page::after{
  content:""!important;
  position:fixed!important;
  inset:0!important;
  z-index:-1!important;
  background:radial-gradient(circle at 70% 18%,rgba(0,191,166,.12),transparent 34%),linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.42))!important;
  pointer-events:none!important;
}
body.public-site .identprog-top{
  min-height:150px!important;
  padding:14px 0 12px!important;
  justify-content:flex-start!important;
}
body.public-site .identprog-back{
  margin:0 0 22px!important;
}
body.public-site .identprog-season{
  margin-top:0!important;
  margin-bottom:26px!important;
}
body.public-site .identprog-title-copy h1,
body.public-site .identprog-top h1{
  margin-top:0!important;
}
@media(max-width:900px){
  body.public-site .identprog-page::before,
  body.public-site .identprog-page::after{position:absolute!important;}
  body.public-site .identprog-top{min-height:130px!important;padding-top:10px!important;}
}

/* ============================================================
   CORREÇÃO - fundo do programa não passa por baixo do menu/topo
   ============================================================ */
body.public-site .identprog-page{
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  background:#000!important;
  margin-top:0!important;
  padding-top:0!important;
}
body.public-site .identprog-page::before,
body.public-site .identprog-page::after{
  position:absolute!important;
  inset:0!important;
  top:0!important;
  bottom:0!important;
  left:0!important;
  right:0!important;
}
body.public-site .identprog-page::before{
  background-image:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.42),rgba(0,0,0,.74)),linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.68)),var(--identprog-bg)!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
}
body.public-site .identprog-top,
body.public-site .identprog-season,
body.public-site .identprog-empty{
  position:relative!important;
  z-index:2!important;
}
body.public-site .identprog-top{
  padding-top:26px!important;
}

/* ============================================================
   TOPO NOVO DATTA TV + MENU LATERAL (2026)
   ============================================================ */
.public-socialbar{
  background:#f5f5f5!important;
  color:#252525!important;
  border-bottom:2px solid var(--verde)!important;
}
.public-socialbar .public-date,
.public-socialbar .public-socials,
.public-socialbar .public-socials span{color:#252525!important;}
.public-socialbar .public-socials a{color:#111!important;}
.public-socialbar .public-socials a:hover{color:var(--verde)!important;}
.public-brandbar.datta-new-top{
  background:#0f1820 url('../imagens/fundo-cabecalho.png') center center/cover no-repeat!important;
  border-bottom:0!important;
  position:relative;
}
.public-brandbar.datta-new-top:before{display:none!important;}
.public-brandbar.datta-new-top .public-brandbar-inner{
  min-height:88px!important;
  padding-top:10px!important;
  padding-bottom:10px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
}
.datta-logo-menu-wrap{display:flex;align-items:center;gap:34px;flex-shrink:0;}
.public-brandbar.datta-new-top .public-logo img{height:76px!important;width:auto!important;}
.datta-menu-btn{
  width:48px;height:48px;border:0!important;background:transparent!important;color:#fff!important;
  display:flex!important;flex-direction:column;align-items:center;justify-content:center;gap:7px;cursor:pointer;padding:0!important;
}
.datta-menu-btn span{display:block;width:34px;height:4px;border-radius:6px;background:#fff;box-shadow:0 1px 5px rgba(0,0,0,.35);}
.public-brandbar.datta-new-top .public-header-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:14px!important;flex:1!important;}
.public-brandbar.datta-new-top .site-search{
  height:42px!important;max-width:430px!important;border:2px solid var(--verde)!important;background:#fff!important;border-radius:999px!important;overflow:visible!important;
  box-shadow:0 6px 18px rgba(0,0,0,.25)!important;
}
.public-brandbar.datta-new-top .site-search input{font-size:12px!important;text-transform:uppercase!important;padding-left:22px!important;color:#333!important;}
.public-brandbar.datta-new-top .site-search button{width:38px!important;height:38px!important;right:1px!important;top:50%!important;transform:translateY(-50%)!important;background:#050505!important;color:#fff!important;border-radius:50%!important;font-size:17px!important;}
.public-brandbar.datta-new-top .btn-send-news{height:42px!important;padding:0 26px!important;border-radius:999px!important;font-size:13px!important;line-height:1!important;}
.public-navbar.datta-new-nav{
  position:sticky!important;top:0!important;z-index:1000!important;
  background:#f7f7f7!important;border-top:1px solid rgba(0,191,166,.4)!important;border-bottom:3px solid var(--verde)!important;
  box-shadow:0 5px 18px rgba(0,0,0,.18)!important;
}
.public-navbar.datta-new-nav .container{min-height:28px!important;justify-content:center!important;}
.public-navbar.datta-new-nav .nav-links{justify-content:center!important;gap:46px!important;overflow:visible!important;}
.public-navbar.datta-new-nav .nav-links a{
  color:#20242a!important;height:28px!important;padding:0!important;font-size:14px!important;text-transform:uppercase!important;font-weight:900!important;border:0!important;letter-spacing:.02em!important;
}
.public-navbar.datta-new-nav .nav-links a:hover,
.public-navbar.datta-new-nav .nav-links a.ativo{color:#000!important;background:transparent!important;border-bottom:4px solid var(--verde)!important;}
.datta-side-overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:2998;opacity:0;visibility:hidden;transition:.25s ease;}
.datta-side-menu{
  position:fixed;left:0;top:0;width:304px;max-width:88vw;height:100vh;background:#101820;color:#fff;z-index:2999;
  transform:translateX(-105%);transition:transform .28s ease;box-shadow:18px 0 40px rgba(0,0,0,.45);overflow-y:auto;border-radius:0 0 24px 0;padding:18px 22px 22px;
}
body.datta-menu-open .datta-side-overlay{opacity:1;visibility:visible;}
body.datta-menu-open .datta-side-menu{transform:translateX(0);}
.datta-side-head{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:18px;}
.datta-side-logo img{height:62px;width:auto;}
.datta-side-close{width:42px;height:42px;background:transparent!important;border:0!important;color:#fff!important;font-size:28px!important;display:flex;align-items:center;justify-content:center;padding:0!important;}
.datta-side-anuncie{display:flex;align-items:center;justify-content:center;width:100%;height:38px;border-radius:5px;background:#f01818!important;color:#fff!important;font-size:20px;font-weight:900;text-transform:uppercase;margin-bottom:14px;letter-spacing:.02em;}
.datta-side-section{margin-bottom:12px;}
.datta-side-title,.datta-side-title-link{display:flex;align-items:center;gap:9px;background:var(--verde);color:#fff!important;border-radius:5px;padding:6px 11px;font-size:21px;font-weight:900;text-transform:uppercase;letter-spacing:.04em;margin-bottom:6px;}
.datta-side-item{display:flex;align-items:center;min-height:33px;background:#3b3b3b;color:#fff!important;border-radius:4px;margin-bottom:7px;padding:5px 12px 5px 18px;font-size:14px;font-weight:800;text-transform:uppercase;position:relative;border-left:4px solid var(--cat,#00bfa6);}
.datta-side-item:hover{background:#4b4b4b;color:#fff!important;transform:translateX(2px);}
.datta-side-item.program{background:#303b3b;}
.datta-side-follow{padding-top:4px;text-align:center;color:#fff;}
.datta-side-follow span{display:block;font-size:16px;margin-bottom:10px;letter-spacing:.03em;}
.datta-side-follow div{display:flex;align-items:center;justify-content:center;gap:16px;}
.datta-side-follow a{color:#fff!important;font-size:18px;}
.datta-side-follow a:hover{color:var(--verde)!important;}
@media(max-width:900px){
  .public-brandbar.datta-new-top .public-brandbar-inner{flex-direction:column!important;align-items:stretch!important;gap:10px!important;}
  .datta-logo-menu-wrap{justify-content:space-between;width:100%;}
  .public-brandbar.datta-new-top .public-logo img{height:68px!important;}
  .public-brandbar.datta-new-top .public-header-actions{width:100%!important;}
  .public-navbar.datta-new-nav .nav-links{gap:24px!important;overflow-x:auto!important;justify-content:flex-start!important;}
  .public-navbar.datta-new-nav .nav-links a{font-size:13px!important;flex-shrink:0;}
}
@media(max-width:640px){
  .public-brandbar.datta-new-top .public-header-actions{flex-direction:column!important;gap:8px!important;}
  .public-brandbar.datta-new-top .site-search{max-width:none!important;width:100%!important;}
  .public-brandbar.datta-new-top .btn-send-news{width:100%!important;}
}

/* ============================================================
   AJUSTE FINAL TOPO IGUAL REFERÊNCIA + MENU BRANCO
   ============================================================ */
body.public-site .public-socialbar{
  height:26px!important;
  min-height:26px!important;
  background:#ffffff!important;
  color:#222!important;
  border-bottom:2px solid #00bfa6!important;
  overflow:hidden!important;
}
body.public-site .public-socialbar-inner{
  min-height:24px!important;
  height:24px!important;
  padding-top:0!important;
  padding-bottom:0!important;
  align-items:center!important;
}
body.public-site .public-date,
body.public-site .public-socials,
body.public-site .public-socials span{
  color:#222!important;
  font-size:13px!important;
  font-weight:800!important;
}
body.public-site .public-socials a{
  color:#111!important;
  width:19px!important;
  height:19px!important;
  font-size:14px!important;
}
body.public-site .public-brandbar.datta-new-top{
  background:#101923 url('../imagens/fundo-cabecalho.png') center center/cover no-repeat!important;
  border-bottom:0!important;
  overflow:visible!important;
  z-index:50!important;
}
body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{
  min-height:88px!important;
  height:88px!important;
  padding:0 12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:28px!important;
}
body.public-site .datta-logo-menu-wrap{
  display:flex!important;
  align-items:center!important;
  gap:36px!important;
  flex:0 0 auto!important;
}
body.public-site .public-brandbar.datta-new-top .public-logo img{
  height:74px!important;
  width:auto!important;
  display:block!important;
}
body.public-site .datta-menu-btn{
  width:48px!important;
  height:48px!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
body.public-site .datta-menu-btn span{
  width:34px!important;
  height:4px!important;
  background:#fff!important;
  border-radius:10px!important;
}
body.public-site .public-brandbar.datta-new-top .public-header-actions{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:14px!important;
  flex:1 1 auto!important;
  min-width:0!important;
}
body.public-site .public-brandbar.datta-new-top .site-search{
  position:relative!important;
  display:flex!important;
  align-items:center!important;
  width:min(430px, 100%)!important;
  max-width:430px!important;
  height:32px!important;
  min-height:32px!important;
  background:#fff!important;
  border:2px solid #00bfa6!important;
  border-radius:999px!important;
  overflow:visible!important;
  box-shadow:none!important;
  margin:0!important;
}
body.public-site .public-brandbar.datta-new-top .site-search input{
  height:100%!important;
  line-height:32px!important;
  padding:0 48px 0 24px!important;
  border:0!important;
  background:transparent!important;
  font-size:11px!important;
  font-weight:500!important;
  color:#6f7680!important;
  text-transform:uppercase!important;
}
body.public-site .public-brandbar.datta-new-top .site-search button{
  position:absolute!important;
  top:50%!important;
  right:-1px!important;
  transform:translateY(-50%)!important;
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  min-height:34px!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:50%!important;
  background:#050505!important;
  color:#fff!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:15px!important;
  line-height:1!important;
  z-index:3!important;
}
body.public-site .public-brandbar.datta-new-top .btn-send-news{
  height:32px!important;
  min-height:32px!important;
  padding:0 22px!important;
  border-radius:999px!important;
  background:#00bfa6!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:900!important;
  line-height:1!important;
  white-space:nowrap!important;
  box-shadow:none!important;
}
body.public-site .public-brandbar.datta-new-top .btn-send-news span{display:inline!important;}
body.public-site .public-navbar.datta-new-nav{
  position:relative!important;
  top:auto!important;
  z-index:45!important;
  background:#ffffff!important;
  border-top:0!important;
  border-bottom:3px solid #00bfa6!important;
  box-shadow:none!important;
  min-height:24px!important;
  height:24px!important;
  overflow:visible!important;
}
body.public-site .public-navbar.datta-new-nav .container,
body.public-site .public-navbar.datta-new-nav .nav-scroll-container{
  min-height:24px!important;
  height:24px!important;
  padding-top:0!important;
  padding-bottom:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
body.public-site .public-navbar.datta-new-nav .nav-links{
  height:24px!important;
  min-height:24px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:70px!important;
  background:transparent!important;
  overflow:visible!important;
}
body.public-site .public-navbar.datta-new-nav .nav-links a{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  height:24px!important;
  padding:0 3px!important;
  margin:0!important;
  background:transparent!important;
  color:#242a30!important;
  border:0!important;
  border-radius:0!important;
  font-size:13px!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  letter-spacing:.02em!important;
  line-height:1!important;
  text-shadow:none!important;
}
body.public-site .public-navbar.datta-new-nav .nav-links a:hover,
body.public-site .public-navbar.datta-new-nav .nav-links a.ativo{
  color:#111!important;
  background:transparent!important;
  border-bottom:4px solid #00bfa6!important;
}
body.datta-menu-open .datta-side-overlay{
  z-index:99990!important;
  opacity:.64!important;
  visibility:visible!important;
  background:rgba(0,0,0,.65)!important;
}
body.public-site .datta-side-menu{
  z-index:99999!important;
  top:0!important;
  left:0!important;
  width:302px!important;
  max-width:302px!important;
  height:100vh!important;
  padding:16px 20px 18px!important;
  background:#101820!important;
  border-radius:0 0 24px 0!important;
  box-shadow:16px 0 34px rgba(0,0,0,.5)!important;
  overflow-y:auto!important;
}
body.public-site .datta-side-head{margin-bottom:16px!important;}
body.public-site .datta-side-logo img{height:63px!important;width:auto!important;}
body.public-site .datta-side-close{font-size:27px!important;color:#fff!important;}
body.public-site .datta-side-anuncie{height:39px!important;background:#f01818!important;color:#fff!important;font-size:20px!important;border-radius:5px!important;margin-bottom:12px!important;}
body.public-site .datta-side-title,
body.public-site .datta-side-title-link{height:32px!important;background:#00bfa6!important;color:#fff!important;font-size:20px!important;border-radius:5px!important;padding:0 11px!important;margin-bottom:6px!important;}
body.public-site .datta-side-item{min-height:31px!important;margin-bottom:7px!important;background:#3b3b3b!important;color:#fff!important;border-radius:4px!important;font-size:14px!important;font-weight:800!important;}
body.public-site .datta-side-follow span{font-size:16px!important;color:#fff!important;}

@media(max-width:900px){
  body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{height:auto!important;min-height:88px!important;flex-direction:row!important;align-items:center!important;}
  body.public-site .public-navbar.datta-new-nav .nav-links{gap:32px!important;overflow-x:auto!important;justify-content:center!important;}
}
@media(max-width:640px){
  body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{flex-wrap:wrap!important;height:auto!important;padding:8px 12px!important;}
  body.public-site .datta-logo-menu-wrap{width:100%!important;justify-content:space-between!important;}
  body.public-site .public-brandbar.datta-new-top .public-header-actions{width:100%!important;}
  body.public-site .public-brandbar.datta-new-top .site-search{max-width:none!important;}
  body.public-site .public-navbar.datta-new-nav .nav-links{gap:22px!important;justify-content:flex-start!important;}
}

/* ============================================================
   CORREÇÃO DEFINITIVA TOPO REFERÊNCIA - MENU BRANCO E SIDEBAR ACIMA
   ============================================================ */
html body.public-site .navbar.public-navbar.datta-new-nav,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{
  position:relative!important;
  top:auto!important;
  left:auto!important;
  right:auto!important;
  z-index:9998!important;
  display:block!important;
  width:100%!important;
  min-height:25px!important;
  height:25px!important;
  margin:0!important;
  padding:0!important;
  background:#ffffff!important;
  background-color:#ffffff!important;
  border-top:1px solid #00bfa6!important;
  border-bottom:3px solid #00bfa6!important;
  box-shadow:none!important;
  opacity:1!important;
  overflow:visible!important;
  isolation:isolate!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:-1!important;
  background:#ffffff!important;
  opacity:1!important;
  pointer-events:none!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container{
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  margin:0 auto!important;
  padding:0 12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:transparent!important;
  overflow:visible!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:70px!important;
  margin:0!important;
  padding:0!important;
  background:transparent!important;
  background-color:transparent!important;
  overflow:visible!important;
  width:auto!important;
  max-width:100%!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
  height:25px!important;
  min-height:25px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  margin:0!important;
  padding:0 2px!important;
  background:transparent!important;
  background-color:transparent!important;
  color:#222!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  text-shadow:none!important;
  opacity:1!important;
  font-size:13px!important;
  font-weight:900!important;
  line-height:1!important;
  letter-spacing:.02em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a:hover,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a.ativo{
  background:transparent!important;
  background-color:transparent!important;
  color:#111!important;
  border-bottom:4px solid #00bfa6!important;
}
html body.public-site .public-brandbar.datta-new-top{
  margin-bottom:0!important;
  padding-bottom:0!important;
  border-bottom:0!important;
  z-index:9997!important;
}
html body.public-site .public-brandbar.datta-new-top .site-search{
  width:430px!important;
  max-width:430px!important;
  height:32px!important;
  min-height:32px!important;
  border:2px solid #00bfa6!important;
  background:#fff!important;
  border-radius:999px!important;
  overflow:visible!important;
}
html body.public-site .public-brandbar.datta-new-top .site-search input{
  border:0!important;
  outline:none!important;
  box-shadow:none!important;
  background:transparent!important;
  height:100%!important;
  color:#69727d!important;
}
html body.public-site .public-brandbar.datta-new-top .site-search button{
  right:-2px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:35px!important;
  height:35px!important;
  min-width:35px!important;
  min-height:35px!important;
  background:#000!important;
  color:#fff!important;
  border-radius:50%!important;
  border:0!important;
  box-shadow:none!important;
}
html body.public-site .datta-side-overlay{
  position:fixed!important;
  inset:0!important;
  z-index:2147483000!important;
  background:rgba(0,0,0,.62)!important;
}
html body.public-site .datta-side-menu{
  position:fixed!important;
  top:0!important;
  left:0!important;
  z-index:2147483001!important;
  width:304px!important;
  max-width:304px!important;
  height:100vh!important;
  transform:translateX(-110%)!important;
  background:#101820!important;
}
html body.datta-menu-open.public-site .datta-side-menu{
  transform:translateX(0)!important;
}
html body.datta-menu-open.public-site .datta-side-overlay{
  opacity:1!important;
  visibility:visible!important;
}
@media(max-width:900px){
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{gap:34px!important;overflow-x:auto!important;justify-content:flex-start!important;}
}


/* AJUSTE SOLICITADO - tarja branca do menu principal maior */
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{
  height:44px!important;
  min-height:44px!important;
  max-height:44px!important;
  background:#fff!important;
  background-color:#fff!important;
  border-top:2px solid #00bfa6!important;
  border-bottom:3px solid #00bfa6!important;
  margin:0!important;
  padding:0!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container{
  height:44px!important;
  min-height:44px!important;
  max-height:44px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
  height:44px!important;
  min-height:44px!important;
  max-height:44px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:78px!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
  height:44px!important;
  min-height:44px!important;
  padding:0 6px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  color:#111!important;
  font-size:14px!important;
  font-weight:900!important;
  line-height:44px!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a:hover,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a.ativo{
  border-bottom:5px solid #00bfa6!important;
}
@media(max-width:900px){
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{gap:36px!important;}
}

/* ============================================================
   CORREÇÃO MENU LATERAL - abrir abaixo da barra superior
   Mantém a faixa branca de data/redes visível e o menu começa
   na área da logo, igual ao modelo enviado.
   ============================================================ */
html body.public-site .datta-side-overlay{
  top:26px!important;
  height:calc(100vh - 26px)!important;
  inset:26px 0 0 0!important;
}
html body.public-site .datta-side-menu{
  top:26px!important;
  height:calc(100vh - 26px)!important;
  border-radius:0 0 24px 0!important;
  padding-top:14px!important;
}
@media(max-width:560px){
  html body.public-site .datta-side-overlay{
    top:22px!important;
    height:calc(100vh - 22px)!important;
    inset:22px 0 0 0!important;
  }
  html body.public-site .datta-side-menu{
    top:22px!important;
    height:calc(100vh - 22px)!important;
  }
}


/* ============================================================
   TEMPERATURA ABAIXO DA LOGO - igual referência
   ============================================================ */
html body.public-site .datta-weather-strip{
  width:100%!important;
  height:24px!important;
  min-height:24px!important;
  max-height:24px!important;
  margin:0!important;
  padding:0!important;
  background:#ffffff!important;
  border-top:0!important;
  border-bottom:2px solid #00bfa6!important;
  color:#222!important;
  position:relative!important;
  z-index:9998!important;
  overflow:hidden!important;
}
html body.public-site .datta-weather-inner{
  height:24px!important;
  min-height:24px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:5px!important;
  padding:0 12px!important;
  font-size:12px!important;
  font-weight:800!important;
  line-height:1!important;
  color:#2b2b2b!important;
}
html body.public-site .datta-weather-arrow{
  color:#256bff!important;
  font-size:12px!important;
  display:inline-flex!important;
  align-items:center!important;
  margin-left:70px!important;
}
html body.public-site .datta-weather-icon{font-size:13px!important;line-height:1!important;}
html body.public-site .datta-weather-text{color:#222!important;white-space:nowrap!important;}
html body.public-site .datta-weather-city{
  color:#2469ff!important;
  text-decoration:underline!important;
  font-weight:900!important;
  white-space:nowrap!important;
}
html body.public-site .datta-weather-city:hover{color:#003fb8!important;}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{
  border-top:0!important;
}
@media(max-width:900px){
  html body.public-site .datta-weather-arrow{margin-left:12px!important;}
}
@media(max-width:560px){
  html body.public-site .datta-weather-inner{font-size:10px!important;padding:0 8px!important;}
  html body.public-site .datta-weather-strip{height:22px!important;min-height:22px!important;max-height:22px!important;}
  html body.public-site .datta-weather-inner{height:22px!important;min-height:22px!important;}
}

/* ============================================================
   AJUSTE FINAL SOLICITADO - topo igual referência
   Temperatura e menu na MESMA tarja branca.
   Menu lateral abre abaixo da faixa superior, sobre o conteúdo.
   ============================================================ */
html body.public-site .public-socialbar{
  height:26px!important;
  min-height:26px!important;
  background:#fff!important;
  border-bottom:2px solid #00bfa6!important;
  color:#111!important;
  position:relative!important;
  z-index:2147482000!important;
}
html body.public-site .public-socialbar .container,
html body.public-site .public-socialbar-inner{
  height:26px!important;
  min-height:26px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}
html body.public-site .public-date,
html body.public-site .public-socials,
html body.public-site .public-socials span,
html body.public-site .public-socials a{
  color:#111!important;
  font-size:13px!important;
  font-weight:800!important;
  line-height:1!important;
}
html body.public-site .public-brandbar.datta-new-top{
  height:92px!important;
  min-height:92px!important;
  max-height:92px!important;
  margin:0!important;
  padding:0!important;
  background:#111b24 url('../imagens/fundo-cabecalho.png') center center/cover no-repeat!important;
  border:0!important;
  position:relative!important;
  z-index:9997!important;
}
html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{
  height:92px!important;
  min-height:92px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
}
html body.public-site .datta-logo-menu-wrap{
  height:92px!important;
  display:flex!important;
  align-items:center!important;
  gap:34px!important;
}
html body.public-site .public-logo img{
  width:238px!important;
  max-width:238px!important;
  height:auto!important;
  display:block!important;
}
html body.public-site .datta-menu-btn{
  width:48px!important;
  height:48px!important;
  min-width:48px!important;
  border:0!important;
  background:transparent!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  padding:0!important;
  cursor:pointer!important;
}
html body.public-site .datta-menu-btn span{
  width:34px!important;
  height:4px!important;
  display:block!important;
  border-radius:10px!important;
  background:#fff!important;
}
html body.public-site .public-header-actions{
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
  margin-left:auto!important;
}
html body.public-site .public-brandbar.datta-new-top .site-search{
  width:430px!important;
  max-width:430px!important;
  height:34px!important;
  min-height:34px!important;
  border:2px solid #00bfa6!important;
  background:#fff!important;
  border-radius:999px!important;
  overflow:visible!important;
  position:relative!important;
  display:flex!important;
  align-items:center!important;
}
html body.public-site .public-brandbar.datta-new-top .site-search input{
  height:100%!important;
  border:0!important;
  outline:0!important;
  background:transparent!important;
  color:#6b7280!important;
  font-size:12px!important;
  padding:0 54px 0 24px!important;
  text-transform:uppercase!important;
}
html body.public-site .public-brandbar.datta-new-top .site-search button{
  position:absolute!important;
  right:-2px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:38px!important;
  height:38px!important;
  min-width:38px!important;
  min-height:38px!important;
  background:#000!important;
  color:#fff!important;
  border-radius:50%!important;
  border:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  box-shadow:none!important;
  font-size:18px!important;
}
html body.public-site .btn-send-news{
  height:42px!important;
  min-height:42px!important;
  padding:0 26px!important;
  border-radius:999px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:4px!important;
  white-space:nowrap!important;
}
html body.public-site .datta-weather-strip{display:none!important;}
html body.public-site .datta-white-menu-strip{
  width:100%!important;
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  margin:0!important;
  padding:0!important;
  background:#fff!important;
  border-top:0!important;
  border-bottom:3px solid #00bfa6!important;
  position:relative!important;
  z-index:9998!important;
  overflow:visible!important;
}
html body.public-site .datta-white-menu-inner{
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  position:relative!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 12px!important;
}
html body.public-site .datta-weather-inline{
  position:absolute!important;
  left:78px!important;
  top:0!important;
  height:25px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:4px!important;
  color:#222!important;
  font-size:11px!important;
  font-weight:800!important;
  line-height:1!important;
  white-space:nowrap!important;
  z-index:2!important;
}
html body.public-site .datta-weather-inline .datta-weather-arrow{
  margin:0!important;
  color:#256bff!important;
  font-size:11px!important;
  display:inline-flex!important;
  align-items:center!important;
}
html body.public-site .datta-weather-inline .datta-weather-icon{font-size:12px!important;}
html body.public-site .datta-weather-inline .datta-weather-city{
  color:#2469ff!important;
  text-decoration:underline!important;
  font-weight:900!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  width:auto!important;
  margin:0 auto!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  position:static!important;
  z-index:1!important;
  overflow:visible!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container{
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:transparent!important;
  padding:0!important;
  margin:0!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
  height:25px!important;
  min-height:25px!important;
  max-height:25px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:74px!important;
  padding:0!important;
  margin:0!important;
  background:transparent!important;
  overflow:visible!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
  height:25px!important;
  min-height:25px!important;
  line-height:25px!important;
  padding:0 2px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  color:#222!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  font-size:13px!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
  opacity:1!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a:hover,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a.ativo{
  background:transparent!important;
  color:#111!important;
  border-bottom:4px solid #00bfa6!important;
}
html body.public-site .datta-side-overlay{
  position:fixed!important;
  top:26px!important;
  right:0!important;
  bottom:0!important;
  left:0!important;
  height:auto!important;
  background:rgba(0,0,0,.62)!important;
  z-index:2147483000!important;
  opacity:0!important;
  visibility:hidden!important;
  transition:opacity .2s ease, visibility .2s ease!important;
}
html body.public-site .datta-side-menu{
  position:fixed!important;
  top:26px!important;
  left:0!important;
  width:302px!important;
  max-width:302px!important;
  height:calc(100vh - 26px)!important;
  padding:14px 16px 18px!important;
  background:#101820!important;
  border-radius:0 0 24px 0!important;
  z-index:2147483001!important;
  transform:translateX(-108%)!important;
  transition:transform .25s ease!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  box-shadow:18px 0 35px rgba(0,0,0,.35)!important;
}
html body.datta-menu-open.public-site .datta-side-menu{transform:translateX(0)!important;}
html body.datta-menu-open.public-site .datta-side-overlay{opacity:1!important;visibility:visible!important;}
html body.public-site .datta-side-head{
  display:flex!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin:0 0 14px!important;
}
html body.public-site .datta-side-logo img{width:185px!important;max-width:185px!important;height:auto!important;display:block!important;}
html body.public-site .datta-side-close{font-size:28px!important;color:#fff!important;background:transparent!important;border:0!important;padding:8px 2px!important;}
html body.public-site .datta-side-anuncie{
  height:38px!important;
  border-radius:5px!important;
  background:#ff151f!important;
  color:#fff!important;
  font-size:20px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  margin:4px 0 10px!important;
  text-transform:uppercase!important;
}
html body.public-site .datta-side-title{
  height:32px!important;
  border-radius:5px!important;
  background:#00bfa6!important;
  color:#fff!important;
  font-size:20px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  padding:0 14px!important;
  text-transform:uppercase!important;
  margin:0 0 6px!important;
}
html body.public-site .datta-side-item{
  min-height:31px!important;
  border-radius:4px!important;
  background:#3a3a3a!important;
  color:#fff!important;
  font-size:14px!important;
  font-weight:800!important;
  display:flex!important;
  align-items:center!important;
  padding:0 14px 0 20px!important;
  margin:0 0 7px!important;
  position:relative!important;
  text-transform:uppercase!important;
}
html body.public-site .datta-side-item:before{
  content:""!important;
  position:absolute!important;
  left:0!important;
  top:0!important;
  bottom:0!important;
  width:4px!important;
  background:var(--cat,#00bfa6)!important;
  border-radius:4px 0 0 4px!important;
}
html body.public-site .datta-side-follow{margin-top:10px!important;color:#fff!important;text-align:center!important;}
html body.public-site .datta-side-follow span{display:block!important;margin-bottom:8px!important;font-size:13px!important;color:#fff!important;}
html body.public-site .datta-side-follow a{color:#fff!important;margin:0 6px!important;font-size:15px!important;}
@media(max-width:900px){
  html body.public-site .public-logo img{width:190px!important;max-width:190px!important;}
  html body.public-site .public-brandbar.datta-new-top .site-search{width:330px!important;}
  html body.public-site .datta-weather-inline{left:18px!important;font-size:10px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{gap:36px!important;}
}
@media(max-width:650px){
  html body.public-site .public-header-actions{display:none!important;}
  html body.public-site .datta-white-menu-strip{height:auto!important;max-height:none!important;}
  html body.public-site .datta-white-menu-inner{height:auto!important;min-height:42px!important;display:block!important;padding:0!important;}
  html body.public-site .datta-weather-inline{position:relative!important;left:auto!important;height:20px!important;padding-left:12px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{height:26px!important;min-height:26px!important;max-height:26px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container{height:26px!important;min-height:26px!important;overflow-x:auto!important;justify-content:flex-start!important;padding:0 12px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{gap:24px!important;justify-content:flex-start!important;}
}

/* AJUSTE FINAL: tarja branca do menu mais alta/maior */
html body.public-site .datta-white-menu-strip{
  height:42px!important;
  min-height:42px!important;
  max-height:42px!important;
  background:#fff!important;
  border-top:0!important;
  border-bottom:3px solid #00bfa6!important;
}
html body.public-site .datta-white-menu-inner{
  height:42px!important;
  min-height:42px!important;
  max-height:42px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
html body.public-site .datta-weather-inline{
  top:0!important;
  height:42px!important;
  min-height:42px!important;
  display:flex!important;
  align-items:center!important;
  font-size:12px!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
  height:42px!important;
  min-height:42px!important;
  max-height:42px!important;
  display:flex!important;
  align-items:center!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
  height:42px!important;
  min-height:42px!important;
  line-height:42px!important;
  font-size:14px!important;
  padding:0 10px!important;
}
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a:hover,
html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a.ativo{
  border-bottom:5px solid #00bfa6!important;
}
@media(max-width:650px){
  html body.public-site .datta-white-menu-strip{height:auto!important;max-height:none!important;}
  html body.public-site .datta-white-menu-inner{height:auto!important;min-height:52px!important;max-height:none!important;}
  html body.public-site .datta-weather-inline{height:24px!important;min-height:24px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{height:30px!important;min-height:30px!important;max-height:30px!important;}
}


/* AJUSTE: temperatura mais para a esquerda dentro da faixa branca */
html body.public-site .datta-weather-inline{
  left:40px!important;
  justify-content:flex-start!important;
}
@media(max-width:900px){
  html body.public-site .datta-weather-inline{left:22px!important;font-size:11px!important;}
}
@media(max-width:650px){
  html body.public-site .datta-weather-inline{left:12px!important;}
}

/* AJUSTE FINAL: alinhar temperatura com a esquerda da logomarca */
html body.public-site .datta-white-menu-inner .datta-weather-inline{
  left:8px!important;
}
@media(max-width:900px){
  html body.public-site .datta-white-menu-inner .datta-weather-inline{left:8px!important;}
}
@media(max-width:650px){
  html body.public-site .datta-white-menu-inner .datta-weather-inline{left:8px!important;padding-left:0!important;}
}


/* ============================================================
   MENU LATERAL SIDEBAR - ESTILO IMAGEM 02
   - Panel lateral que desliza da esquerda
   - Logo + X no topo
   - Accordion para CATEGORIAS e PROGRAMAS
   - Espaçamento da borda esquerda
   - Overlay escurece o fundo
   ============================================================ */

/* Overlay */
html body.public-site .datta-side-overlay{
  display:block!important;
  position:fixed!important;
  inset:0!important;
  background:rgba(0,0,0,.6)!important;
  z-index:2147483000!important;
  opacity:0!important;
  visibility:hidden!important;
  transition:opacity .25s ease, visibility .25s ease!important;
  pointer-events:none!important;
}
html body.datta-menu-open.public-site .datta-side-overlay{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
}

/* Menu lateral - panel */
html body.public-site .datta-side-menu{
  position:fixed!important;
  top:0!important;
  left:0!important;
  width:340px!important;
  max-width:85vw!important;
  height:100vh!important;
  padding:24px 20px 28px 20px!important;
  background:#1a1f28!important;
  border-radius:0 0 22px 0!important;
  z-index:2147483001!important;
  transform:translateX(-105%)!important;
  transition:transform .28s cubic-bezier(.4,0,.2,1)!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  box-shadow:12px 0 40px rgba(0,0,0,.45)!important;
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  min-height:0!important;
  max-height:100vh!important;
}
html body.datta-menu-open.public-site .datta-side-menu{
  transform:translateX(0)!important;
}

/* Head: logo + X */
html body.public-site .datta-side-head{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:14px!important;
  margin:0 0 22px!important;
  padding-bottom:0!important;
}
html body.public-site .datta-side-logo img{
  width:200px!important;
  max-width:200px!important;
  height:auto!important;
  display:block!important;
}
html body.public-site .datta-side-close{
  font-size:32px!important;
  color:#fff!important;
  background:transparent!important;
  border:0!important;
  padding:4px!important;
  cursor:pointer!important;
  line-height:1!important;
  width:42px!important;
  height:42px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  flex-shrink:0!important;
}

/* Botão ANUNCIE AQUI */
html body.public-site .datta-side-anuncie{
  height:44px!important;
  border-radius:6px!important;
  background:#e81520!important;
  color:#fff!important;
  font-size:20px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  margin:0 0 18px!important;
  text-transform:uppercase!important;
  letter-spacing:.03em!important;
  text-decoration:none!important;
  width:100%!important;
}
html body.public-site .datta-side-anuncie:hover{
  background:#c2111a!important;
}

/* Seções */
html body.public-site .datta-side-section{
  margin-bottom:8px!important;
}

/* Títulos accordion (CATEGORIAS / PROGRAMAS) */
html body.public-site .datta-side-title,
html body.public-site .datta-side-title-link{
  height:40px!important;
  border-radius:6px!important;
  background:#00bfa6!important;
  color:#fff!important;
  font-size:20px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  padding:0 16px!important;
  text-transform:uppercase!important;
  margin-bottom:8px!important;
  cursor:pointer!important;
  letter-spacing:.03em!important;
  text-decoration:none!important;
  transition:background .15s ease!important;
}
html body.public-site .datta-side-title:hover,
html body.public-site .datta-side-title-link:hover{
  background:#00a892!important;
}
html body.public-site .datta-side-title i,
html body.public-site .datta-side-title-link i{
  font-size:14px!important;
  transition:transform .2s ease!important;
}

/* Itens do menu */
html body.public-site .datta-side-item{
  min-height:38px!important;
  border-radius:5px!important;
  background:#2c313a!important;
  color:#fff!important;
  font-size:15px!important;
  font-weight:700!important;
  display:flex!important;
  align-items:center!important;
  padding:0 16px 0 22px!important;
  margin-bottom:6px!important;
  position:relative!important;
  text-transform:uppercase!important;
  text-decoration:none!important;
  transition:background .12s ease, transform .12s ease!important;
  border-left:0!important;
}
html body.public-site .datta-side-item:before{
  content:""!important;
  position:absolute!important;
  left:0!important;
  top:0!important;
  bottom:0!important;
  width:4px!important;
  background:var(--cat,#00bfa6)!important;
  border-radius:5px 0 0 5px!important;
}
html body.public-site .datta-side-item:hover{
  background:#3a404a!important;
  transform:translateX(3px)!important;
}

/* Redes sociais */
html body.public-site .datta-side-follow{
  margin-top:20px!important;
  text-align:center!important;
  padding-top:16px!important;
  border-top:1px solid rgba(255,255,255,.1)!important;
}
html body.public-site .datta-side-follow span{
  font-size:13px!important;
  font-weight:700!important;
  text-transform:uppercase!important;
  letter-spacing:.06em!important;
  color:#999!important;
  display:block!important;
  margin-bottom:12px!important;
}
html body.public-site .datta-side-follow div{
  display:flex!important;
  justify-content:center!important;
  gap:18px!important;
}
html body.public-site .datta-side-follow a{
  font-size:20px!important;
  color:#bbb!important;
  transition:color .15s ease!important;
}
html body.public-site .datta-side-follow a:hover{
  color:#00bfa6!important;
}

/* Botão hambúrguer: 3 risquinhos → X quando menu aberto */
html body.public-site .datta-menu-btn span{
  display:block!important;
  transition:transform .2s ease, opacity .2s ease!important;
  transform-origin:center!important;
}
html body.datta-menu-open.public-site .datta-menu-btn span:nth-child(1){
  transform:translateY(11px) rotate(45deg)!important;
}
html body.datta-menu-open.public-site .datta-menu-btn span:nth-child(2){
  opacity:0!important;
  transform:scaleX(0)!important;
}
html body.datta-menu-open.public-site .datta-menu-btn span:nth-child(3){
  transform:translateY(-11px) rotate(-45deg)!important;
}

/* Accordion items hidden/shown */
html body.public-site .datta-side-section .datta-side-items-wrap{
  overflow:hidden!important;
  max-height:600px!important;
  transition:max-height .3s ease!important;
}
html body.public-site .datta-side-section.collapsed .datta-side-items-wrap{
  max-height:0!important;
}
html body.public-site .datta-side-section.collapsed .datta-side-title i.fa-chevron-down{
  transform:rotate(-90deg)!important;
}


/* ============================================================
   MOBILE: header igual à referência
   Logo + hambúrguer | Busca | ENVIE SUA NOTÍCIA — tudo numa linha
   ============================================================ */
@media(max-width:650px){
  /* Mostrar busca e botão no mobile */
  html body.public-site .public-header-actions{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    flex:1!important;
    justify-content:flex-end!important;
  }

  /* Header: uma linha só, não quebra */
  html body.public-site .public-brandbar.datta-new-top{
    height:auto!important;
    min-height:56px!important;
    max-height:none!important;
    padding:0!important;
  }
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{
    flex-direction:row!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    height:56px!important;
    min-height:56px!important;
    padding:0 10px!important;
    gap:8px!important;
  }

  /* Logo + hambúrguer lado a lado compactos */
  html body.public-site .datta-logo-menu-wrap{
    width:auto!important;
    flex-shrink:0!important;
    gap:8px!important;
    display:flex!important;
    align-items:center!important;
  }
  html body.public-site .public-logo img{
    width:110px!important;
    max-width:110px!important;
    height:auto!important;
  }
  html body.public-site .datta-menu-btn{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
  }
  html body.public-site .datta-menu-btn span{
    width:24px!important;
    height:3px!important;
  }

  /* Barra de busca: flex:1 para ocupar o espaço disponível */
  html body.public-site .public-brandbar.datta-new-top .site-search{
    flex:1!important;
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    height:30px!important;
    border-radius:999px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search input{
    font-size:11px!important;
    padding:0 10px!important;
    height:30px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search button{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    font-size:12px!important;
  }

  /* Botão ENVIE SUA NOTÍCIA: compacto */
  html body.public-site .btn-send-news{
    flex-shrink:0!important;
    height:30px!important;
    padding:0 8px!important;
    font-size:9px!important;
    line-height:1.1!important;
    white-space:nowrap!important;
  }
  html body.public-site .btn-send-news span{
    display:inline!important;
    font-size:9px!important;
  }
}

@media(max-width:400px){
  html body.public-site .public-logo img{
    width:90px!important;
    max-width:90px!important;
  }
  html body.public-site .btn-send-news{
    display:none!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search{
    flex:1!important;
  }
}


/* ============================================================
   MOBILE HEADER — igual à imagem de referência
   Logo grande + hambúrguer | Busca larga | ENVIE SUA NOTÍCIA
   Apenas para telas ≤ 768px
   ============================================================ */
@media(max-width:768px){

  /* Header: altura fixa como no desktop mas menor */
  html body.public-site .public-brandbar.datta-new-top{
    height:78px!important;
    min-height:78px!important;
    max-height:78px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{
    height:78px!important;
    min-height:78px!important;
    flex-direction:row!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    justify-content:flex-start!important;
    padding:0 12px!important;
    gap:12px!important;
  }

  /* Logo + hambúrguer: compactos mas visíveis */
  html body.public-site .datta-logo-menu-wrap{
    height:78px!important;
    display:flex!important;
    align-items:center!important;
    gap:12px!important;
    flex-shrink:0!important;
    width:auto!important;
  }
  html body.public-site .public-logo img{
    width:130px!important;
    max-width:130px!important;
    height:auto!important;
  }
  html body.public-site .datta-menu-btn{
    width:40px!important;
    height:40px!important;
    min-width:40px!important;
    gap:6px!important;
  }
  html body.public-site .datta-menu-btn span{
    width:28px!important;
    height:3px!important;
  }

  /* Ações: busca + botão, ocupam o resto da linha */
  html body.public-site .public-header-actions{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    flex:1!important;
    margin-left:0!important;
    min-width:0!important;
  }

  /* Busca: ocupa todo espaço disponível */
  html body.public-site .public-brandbar.datta-new-top .site-search{
    flex:1!important;
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    height:36px!important;
    min-height:36px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search input{
    font-size:12px!important;
    padding:0 44px 0 16px!important;
    height:100%!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search button{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    min-height:36px!important;
    font-size:14px!important;
  }

  /* Botão ENVIE SUA NOTÍCIA */
  html body.public-site .btn-send-news{
    display:inline-flex!important;
    flex-shrink:0!important;
    height:36px!important;
    min-height:36px!important;
    padding:0 12px!important;
    font-size:10px!important;
    white-space:nowrap!important;
    border-radius:999px!important;
  }
  html body.public-site .btn-send-news span{
    display:inline!important;
    font-size:10px!important;
    line-height:1.2!important;
  }
}

/* Telas muito pequenas: esconde o botão, mantém busca */
@media(max-width:380px){
  html body.public-site .public-logo img{
    width:100px!important;
    max-width:100px!important;
  }
  html body.public-site .btn-send-news{
    display:none!important;
  }
}

/* ============================================================
   CORREÇÃO FINAL REAL - TOPO MOBILE IGUAL À REFERÊNCIA
   Mantém logo + menu + busca + botão na mesma linha
   ============================================================ */
@media (max-width: 768px){
  html, body{max-width:100%!important;overflow-x:hidden!important;}

  html body.public-site .public-socialbar{
    height:28px!important;min-height:28px!important;max-height:28px!important;
    background:#fff!important;border-bottom:2px solid #00bfa6!important;overflow:hidden!important;
  }
  html body.public-site .public-socialbar-inner{
    height:28px!important;min-height:28px!important;padding:0 10px!important;
    display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-between!important;gap:8px!important;
  }
  html body.public-site .public-date{
    font-size:13px!important;line-height:1!important;font-weight:900!important;color:#000!important;white-space:nowrap!important;
  }
  html body.public-site .public-socials{
    display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:7px!important;white-space:nowrap!important;overflow:hidden!important;
  }
  html body.public-site .public-socials span{
    font-size:12px!important;font-weight:800!important;color:#111!important;margin:0 4px 0 0!important;white-space:nowrap!important;
  }
  html body.public-site .public-socials a{
    width:auto!important;height:auto!important;font-size:14px!important;line-height:1!important;color:#000!important;display:inline-flex!important;
  }

  html body.public-site .public-brandbar.datta-new-top{
    height:78px!important;min-height:78px!important;max-height:78px!important;
    padding:0!important;margin:0!important;overflow:hidden!important;
    background:#111b24 url('../imagens/fundo-cabecalho.png') center center/cover no-repeat!important;
    border-bottom:2px solid #00bfa6!important;
  }
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{
    width:100%!important;max-width:100%!important;height:78px!important;min-height:78px!important;
    padding:0 10px!important;margin:0 auto!important;display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;
    align-items:center!important;justify-content:flex-start!important;gap:9px!important;overflow:hidden!important;
  }
  html body.public-site .datta-logo-menu-wrap{
    flex:0 0 176px!important;width:176px!important;min-width:176px!important;max-width:176px!important;
    height:78px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:10px!important;
  }
  html body.public-site .public-logo{display:flex!important;align-items:center!important;flex:0 0 auto!important;}
  html body.public-site .public-logo img{
    width:124px!important;max-width:124px!important;height:auto!important;display:block!important;
  }
  html body.public-site .datta-menu-btn{
    width:40px!important;height:40px!important;min-width:40px!important;padding:0!important;border:0!important;background:transparent!important;
    display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;gap:6px!important;
  }
  html body.public-site .datta-menu-btn span{width:30px!important;height:3px!important;border-radius:8px!important;background:#fff!important;}

  html body.public-site .public-header-actions{
    flex:1 1 auto!important;min-width:0!important;width:auto!important;max-width:none!important;
    display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:flex-end!important;gap:8px!important;margin:0!important;overflow:hidden!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search{
    flex:1 1 auto!important;width:auto!important;min-width:0!important;max-width:none!important;
    height:36px!important;min-height:36px!important;border:2px solid #00bfa6!important;border-radius:999px!important;background:#fff!important;overflow:visible!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search input{
    height:100%!important;font-size:11px!important;line-height:1!important;padding:0 40px 0 14px!important;color:#6b7280!important;text-transform:uppercase!important;white-space:nowrap!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search button{
    width:36px!important;height:36px!important;min-width:36px!important;min-height:36px!important;right:-2px!important;font-size:14px!important;background:#000!important;color:#fff!important;border-radius:50%!important;
  }
  html body.public-site .btn-send-news{
    flex:0 0 112px!important;width:112px!important;min-width:112px!important;max-width:112px!important;
    height:36px!important;min-height:36px!important;padding:0 8px!important;border-radius:999px!important;
    font-size:10px!important;line-height:1.05!important;text-align:center!important;white-space:normal!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;
  }
  html body.public-site .btn-send-news span{display:block!important;font-size:10px!important;line-height:1.05!important;}

  html body.public-site .datta-white-menu-strip{
    height:38px!important;min-height:38px!important;max-height:38px!important;background:#fff!important;border-top:0!important;border-bottom:3px solid #00bfa6!important;overflow:visible!important;
  }
  html body.public-site .datta-white-menu-inner{
    height:38px!important;min-height:38px!important;max-height:38px!important;width:100%!important;max-width:100%!important;
    display:flex!important;align-items:center!important;justify-content:flex-start!important;padding:0 8px!important;gap:10px!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;
  }
  html body.public-site .datta-white-menu-inner::-webkit-scrollbar{display:none!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline{
    position:static!important;left:auto!important;top:auto!important;height:38px!important;min-height:38px!important;
    display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:3px!important;flex:0 0 auto!important;
    font-size:11px!important;line-height:1!important;font-weight:900!important;color:#111!important;white-space:nowrap!important;margin:0!important;padding:0!important;
  }
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-arrow{font-size:10px!important;color:#256bff!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-icon{font-size:12px!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-city{font-size:11px!important;color:#2469ff!important;text-decoration:underline!important;}

  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{
    flex:1 1 auto!important;min-width:0!important;height:38px!important;min-height:38px!important;max-height:38px!important;background:transparent!important;border:0!important;margin:0!important;overflow:hidden!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container{
    height:38px!important;min-height:38px!important;max-height:38px!important;width:100%!important;display:block!important;overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container::-webkit-scrollbar{display:none!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
    height:38px!important;min-height:38px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:28px!important;width:max-content!important;min-width:100%!important;padding:0!important;margin:0!important;background:transparent!important;overflow:visible!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    height:38px!important;line-height:38px!important;font-size:13px!important;font-weight:900!important;color:#111!important;text-transform:uppercase!important;padding:0 2px!important;white-space:nowrap!important;border:0!important;background:transparent!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a.ativo,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a:hover{
    border-bottom:4px solid #00bfa6!important;color:#111!important;background:transparent!important;
  }
}

@media (max-width: 480px){
  html body.public-site .public-socialbar{height:26px!important;min-height:26px!important;max-height:26px!important;}
  html body.public-site .public-socialbar-inner{height:26px!important;min-height:26px!important;padding:0 6px!important;gap:4px!important;}
  html body.public-site .public-date{font-size:12px!important;}
  html body.public-site .public-socials{gap:5px!important;}
  html body.public-site .public-socials span{font-size:11px!important;max-width:105px!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  html body.public-site .public-socials a{font-size:13px!important;}

  html body.public-site .public-brandbar.datta-new-top{height:72px!important;min-height:72px!important;max-height:72px!important;}
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner{height:72px!important;min-height:72px!important;padding:0 6px!important;gap:5px!important;}
  html body.public-site .datta-logo-menu-wrap{flex-basis:146px!important;width:146px!important;min-width:146px!important;max-width:146px!important;height:72px!important;gap:6px!important;}
  html body.public-site .public-logo img{width:106px!important;max-width:106px!important;}
  html body.public-site .datta-menu-btn{width:34px!important;height:34px!important;min-width:34px!important;gap:5px!important;}
  html body.public-site .datta-menu-btn span{width:26px!important;height:3px!important;}
  html body.public-site .public-header-actions{gap:5px!important;}
  html body.public-site .public-brandbar.datta-new-top .site-search{height:32px!important;min-height:32px!important;}
  html body.public-site .public-brandbar.datta-new-top .site-search input{font-size:10px!important;padding:0 34px 0 10px!important;}
  html body.public-site .public-brandbar.datta-new-top .site-search button{width:32px!important;height:32px!important;min-width:32px!important;min-height:32px!important;font-size:13px!important;}
  html body.public-site .btn-send-news{flex-basis:90px!important;width:90px!important;min-width:90px!important;max-width:90px!important;height:32px!important;min-height:32px!important;font-size:8.5px!important;padding:0 4px!important;}
  html body.public-site .btn-send-news span{font-size:8.5px!important;}

  html body.public-site .datta-white-menu-strip{height:36px!important;min-height:36px!important;max-height:36px!important;}
  html body.public-site .datta-white-menu-inner{height:36px!important;min-height:36px!important;max-height:36px!important;padding:0 4px!important;gap:6px!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline{height:36px!important;min-height:36px!important;font-size:9px!important;max-width:none!important;overflow:visible!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-city{font-size:9px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{height:36px!important;min-height:36px!important;max-height:36px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{gap:21px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{height:36px!important;line-height:36px!important;font-size:12px!important;}
}

@media (max-width: 380px){
  html body.public-site .public-logo img{width:92px!important;max-width:92px!important;}
  html body.public-site .datta-logo-menu-wrap{flex-basis:130px!important;width:130px!important;min-width:130px!important;max-width:130px!important;}
  html body.public-site .btn-send-news{flex-basis:76px!important;width:76px!important;min-width:76px!important;max-width:76px!important;font-size:7.5px!important;}
  html body.public-site .btn-send-news span{font-size:7.5px!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline{max-width:none!important;font-size:8.5px!important;overflow:visible!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{gap:16px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{font-size:11px!important;}
}

/* ============================================================
   CORREÇÃO DEFINITIVA - TOPO MOBILE IGUAL À REFERÊNCIA
   Mantém logo + menu + busca + botão na mesma linha no mobile
   ============================================================ */
@media (max-width: 768px){
  /* No modelo mobile não aparece a faixa de data/redes no topo */
  html body.public-site .public-socialbar{
    display:none!important;
    height:0!important;
    min-height:0!important;
    max-height:0!important;
    overflow:hidden!important;
    border:0!important;
  }

  html body.public-site .public-brandbar.datta-new-top{
    height:92px!important;
    min-height:92px!important;
    max-height:92px!important;
    display:block!important;
    overflow:hidden!important;
    background:#101923 url('../imagens/fundo-cabecalho.png') center center/cover no-repeat!important;
    border-bottom:2px solid #00bfa6!important;
  }

  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner,
  html body.public-site .public-brandbar.datta-new-top .container.public-brandbar-inner{
    width:100%!important;
    max-width:100%!important;
    height:92px!important;
    min-height:92px!important;
    max-height:92px!important;
    padding:0 10px!important;
    margin:0!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:12px!important;
    flex-wrap:nowrap!important;
    overflow:hidden!important;
  }

  html body.public-site .datta-logo-menu-wrap{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    height:92px!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:12px!important;
    margin:0!important;
    padding:0!important;
  }

  html body.public-site .public-brandbar.datta-new-top .public-logo,
  html body.public-site .public-logo{
    display:flex!important;
    align-items:center!important;
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
    margin:0!important;
    padding:0!important;
  }

  html body.public-site .public-brandbar.datta-new-top .public-logo img,
  html body.public-site .public-logo img{
    width:150px!important;
    max-width:150px!important;
    height:auto!important;
    max-height:78px!important;
    object-fit:contain!important;
    display:block!important;
  }

  html body.public-site .datta-menu-btn,
  html body.public-site button.datta-menu-btn{
    flex:0 0 44px!important;
    width:44px!important;
    min-width:44px!important;
    max-width:44px!important;
    height:44px!important;
    min-height:44px!important;
    max-height:44px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:column!important;
    gap:6px!important;
    margin:0!important;
    padding:0!important;
    background:transparent!important;
    border:0!important;
  }
  html body.public-site .datta-menu-btn span{
    width:34px!important;
    height:4px!important;
    border-radius:10px!important;
    background:#fff!important;
  }

  html body.public-site .public-brandbar.datta-new-top .public-header-actions,
  html body.public-site .public-header-actions{
    flex:1 1 auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    height:92px!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:10px!important;
    flex-wrap:nowrap!important;
    margin:0!important;
    padding:0!important;
    overflow:hidden!important;
  }

  html body.public-site .public-brandbar.datta-new-top .site-search,
  html body.public-site .site-search{
    flex:1 1 auto!important;
    width:auto!important;
    min-width:130px!important;
    max-width:none!important;
    height:42px!important;
    min-height:42px!important;
    max-height:42px!important;
    display:flex!important;
    align-items:center!important;
    margin:0!important;
    padding:0!important;
    background:#fff!important;
    border:2px solid #00bfa6!important;
    border-radius:999px!important;
    overflow:visible!important;
  }

  html body.public-site .public-brandbar.datta-new-top .site-search input,
  html body.public-site .site-search input{
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    padding:0 46px 0 20px!important;
    margin:0!important;
    border:0!important;
    background:transparent!important;
    font-size:13px!important;
    line-height:1!important;
    color:#6b7280!important;
    text-transform:uppercase!important;
    white-space:nowrap!important;
  }

  html body.public-site .public-brandbar.datta-new-top .site-search button,
  html body.public-site .site-search button{
    position:absolute!important;
    top:50%!important;
    right:-2px!important;
    transform:translateY(-50%)!important;
    width:42px!important;
    min-width:42px!important;
    height:42px!important;
    min-height:42px!important;
    border-radius:50%!important;
    background:#050505!important;
    color:#fff!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:0!important;
    margin:0!important;
    font-size:16px!important;
    border:0!important;
  }

  html body.public-site .public-brandbar.datta-new-top .btn-send-news,
  html body.public-site .btn-send-news{
    flex:0 0 132px!important;
    width:132px!important;
    min-width:132px!important;
    max-width:132px!important;
    height:42px!important;
    min-height:42px!important;
    max-height:42px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:row!important;
    gap:4px!important;
    margin:0!important;
    padding:0 12px!important;
    border-radius:999px!important;
    background:#00bfa6!important;
    color:#fff!important;
    font-size:12px!important;
    line-height:1!important;
    font-weight:900!important;
    text-align:center!important;
    text-transform:uppercase!important;
    white-space:nowrap!important;
  }
  html body.public-site .btn-send-news span{
    display:inline!important;
    font-size:12px!important;
    line-height:1!important;
  }
}

@media (max-width: 520px){
  html body.public-site .public-brandbar.datta-new-top,
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner,
  html body.public-site .public-brandbar.datta-new-top .container.public-brandbar-inner,
  html body.public-site .public-header-actions,
  html body.public-site .datta-logo-menu-wrap{
    height:76px!important;
    min-height:76px!important;
    max-height:76px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner,
  html body.public-site .public-brandbar.datta-new-top .container.public-brandbar-inner{
    padding:0 6px!important;
    gap:6px!important;
  }
  html body.public-site .datta-logo-menu-wrap{gap:5px!important;}
  html body.public-site .public-brandbar.datta-new-top .public-logo img,
  html body.public-site .public-logo img{
    width:112px!important;
    max-width:112px!important;
    max-height:64px!important;
  }
  html body.public-site .datta-menu-btn,
  html body.public-site button.datta-menu-btn{
    flex-basis:36px!important;
    width:36px!important;
    min-width:36px!important;
    max-width:36px!important;
    height:36px!important;
    min-height:36px!important;
    max-height:36px!important;
    gap:5px!important;
  }
  html body.public-site .datta-menu-btn span{width:28px!important;height:3px!important;}
  html body.public-site .public-brandbar.datta-new-top .public-header-actions,
  html body.public-site .public-header-actions{gap:5px!important;}
  html body.public-site .public-brandbar.datta-new-top .site-search,
  html body.public-site .site-search{
    min-width:118px!important;
    height:34px!important;
    min-height:34px!important;
    max-height:34px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search input,
  html body.public-site .site-search input{
    font-size:10px!important;
    padding:0 34px 0 10px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .site-search button,
  html body.public-site .site-search button{
    width:34px!important;
    min-width:34px!important;
    height:34px!important;
    min-height:34px!important;
    font-size:13px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .btn-send-news,
  html body.public-site .btn-send-news{
    flex:0 0 82px!important;
    width:82px!important;
    min-width:82px!important;
    max-width:82px!important;
    height:34px!important;
    min-height:34px!important;
    max-height:34px!important;
    padding:0 6px!important;
    font-size:8.5px!important;
    white-space:normal!important;
    flex-direction:column!important;
    gap:0!important;
  }
  html body.public-site .btn-send-news span{
    display:block!important;
    font-size:8.5px!important;
    line-height:1.05!important;
  }
}

@media (max-width: 390px){
  html body.public-site .public-brandbar.datta-new-top .public-logo img,
  html body.public-site .public-logo img{width:96px!important;max-width:96px!important;}
  html body.public-site .datta-menu-btn,
  html body.public-site button.datta-menu-btn{flex-basis:32px!important;width:32px!important;min-width:32px!important;max-width:32px!important;}
  html body.public-site .datta-menu-btn span{width:24px!important;}
  html body.public-site .public-brandbar.datta-new-top .site-search,
  html body.public-site .site-search{min-width:92px!important;}
  html body.public-site .public-brandbar.datta-new-top .btn-send-news,
  html body.public-site .btn-send-news{flex-basis:70px!important;width:70px!important;min-width:70px!important;max-width:70px!important;font-size:7.5px!important;}
  html body.public-site .btn-send-news span{font-size:7.5px!important;}
}

/* ============================================================
   AJUSTE FINAL MOBILE - topo igual à referência enviada
   - botão "Envie sua notícia" em uma linha
   - temperatura compacta
   - todos os itens do menu aparecem no mobile
   ============================================================ */
@media (max-width: 768px){
  html body.public-site .public-brandbar.datta-new-top{
    height:74px!important;
    min-height:74px!important;
    max-height:74px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner,
  html body.public-site .public-brandbar.datta-new-top .container.public-brandbar-inner{
    height:74px!important;
    min-height:74px!important;
    max-height:74px!important;
    padding:0 8px!important;
    gap:8px!important;
  }
  html body.public-site .datta-logo-menu-wrap{
    height:74px!important;
    min-height:74px!important;
    max-height:74px!important;
    gap:8px!important;
  }
  html body.public-site .public-logo img{
    width:128px!important;
    max-width:128px!important;
    max-height:68px!important;
  }
  html body.public-site .datta-menu-btn,
  html body.public-site button.datta-menu-btn{
    width:40px!important;
    min-width:40px!important;
    max-width:40px!important;
    height:40px!important;
    min-height:40px!important;
    max-height:40px!important;
  }
  html body.public-site .datta-menu-btn span{
    width:32px!important;
    height:4px!important;
  }
  html body.public-site .public-header-actions{
    height:74px!important;
    min-height:74px!important;
    max-height:74px!important;
    gap:8px!important;
  }
  html body.public-site .site-search{
    height:38px!important;
    min-height:38px!important;
    max-height:38px!important;
    min-width:150px!important;
  }
  html body.public-site .site-search button{
    width:38px!important;
    min-width:38px!important;
    height:38px!important;
    min-height:38px!important;
  }
  html body.public-site .btn-send-news,
  html body.public-site .public-brandbar.datta-new-top .btn-send-news{
    flex:0 0 150px!important;
    width:150px!important;
    min-width:150px!important;
    max-width:150px!important;
    height:38px!important;
    min-height:38px!important;
    max-height:38px!important;
    padding:0 14px!important;
    display:inline-flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    white-space:nowrap!important;
    font-size:12px!important;
    line-height:1!important;
  }
  html body.public-site .btn-send-news span{
    display:inline!important;
    font-size:12px!important;
    line-height:1!important;
    white-space:nowrap!important;
  }

  html body.public-site .datta-white-menu-strip{
    height:34px!important;
    min-height:34px!important;
    max-height:34px!important;
    overflow:visible!important;
  }
  html body.public-site .datta-white-menu-inner{
    height:34px!important;
    min-height:34px!important;
    max-height:34px!important;
    padding:0 8px!important;
    gap:8px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    scrollbar-width:none!important;
  }
  html body.public-site .datta-white-menu-inner::-webkit-scrollbar{display:none!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    height:34px!important;
    min-height:34px!important;
    max-height:34px!important;
    font-size:12px!important;
    line-height:34px!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-city,
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-text{
    font-size:12px!important;
    line-height:34px!important;
    white-space:nowrap!important;
  }

  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
    height:34px!important;
    min-height:34px!important;
    max-height:34px!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav{
    flex:1 1 auto!important;
    min-width:0!important;
    overflow:hidden!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container{
    overflow:hidden!important;
    width:100%!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    display:flex!important;
    justify-content:space-between!important;
    align-items:center!important;
    gap:0!important;
    padding:0!important;
    margin:0!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    flex:0 0 auto!important;
    height:34px!important;
    line-height:34px!important;
    padding:0 5px!important;
    font-size:12px!important;
    font-weight:900!important;
    white-space:nowrap!important;
  }
}

@media (max-width: 520px){
  html body.public-site .public-brandbar.datta-new-top,
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner,
  html body.public-site .public-brandbar.datta-new-top .container.public-brandbar-inner,
  html body.public-site .public-header-actions,
  html body.public-site .datta-logo-menu-wrap{
    height:56px!important;
    min-height:56px!important;
    max-height:56px!important;
  }
  html body.public-site .public-brandbar.datta-new-top .public-brandbar-inner,
  html body.public-site .public-brandbar.datta-new-top .container.public-brandbar-inner{
    padding:0 5px!important;
    gap:5px!important;
  }
  html body.public-site .datta-logo-menu-wrap{
    flex:0 0 156px!important;
    width:156px!important;
    min-width:156px!important;
    max-width:156px!important;
    gap:5px!important;
  }
  html body.public-site .public-logo img{
    width:112px!important;
    max-width:112px!important;
    max-height:50px!important;
  }
  html body.public-site .datta-menu-btn,
  html body.public-site button.datta-menu-btn{
    width:36px!important;
    min-width:36px!important;
    max-width:36px!important;
    height:36px!important;
    min-height:36px!important;
    max-height:36px!important;
    gap:5px!important;
  }
  html body.public-site .datta-menu-btn span{
    width:28px!important;
    height:3px!important;
  }
  html body.public-site .public-header-actions{
    gap:5px!important;
  }
  html body.public-site .site-search{
    height:32px!important;
    min-height:32px!important;
    max-height:32px!important;
    min-width:150px!important;
  }
  html body.public-site .site-search input{
    font-size:10px!important;
    padding:0 35px 0 10px!important;
  }
  html body.public-site .site-search button{
    width:32px!important;
    min-width:32px!important;
    height:32px!important;
    min-height:32px!important;
    font-size:12px!important;
  }
  html body.public-site .btn-send-news,
  html body.public-site .public-brandbar.datta-new-top .btn-send-news{
    flex:0 0 96px!important;
    width:96px!important;
    min-width:96px!important;
    max-width:96px!important;
    height:32px!important;
    min-height:32px!important;
    max-height:32px!important;
    padding:0 6px!important;
    font-size:8.5px!important;
    white-space:nowrap!important;
    flex-direction:row!important;
  }
  html body.public-site .btn-send-news span{
    display:inline!important;
    font-size:8.5px!important;
    white-space:nowrap!important;
  }

  html body.public-site .datta-white-menu-strip,
  html body.public-site .datta-white-menu-inner,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links{
    height:32px!important;
    min-height:32px!important;
    max-height:32px!important;
  }
  html body.public-site .datta-white-menu-inner{
    padding:0 4px!important;
    gap:3px!important;
  }
  html body.public-site .datta-white-menu-inner .datta-weather-inline{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    height:32px!important;
    min-height:32px!important;
    max-height:32px!important;
    font-size:8.2px!important;
    line-height:32px!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }
  html body.public-site .datta-weather-inline .datta-weather-arrow,
  html body.public-site .datta-weather-inline .datta-weather-icon{font-size:8.2px!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-city,
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-text{
    font-size:8.2px!important;
    line-height:32px!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
    gap:0!important;
    justify-content:space-between!important;
    width:100%!important;
    min-width:0!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    height:32px!important;
    line-height:32px!important;
    font-size:10.2px!important;
    padding:0 2px!important;
    letter-spacing:-.25px!important;
  }
}

@media (max-width: 390px){
  html body.public-site .datta-logo-menu-wrap{
    flex-basis:132px!important;
    width:132px!important;
    min-width:132px!important;
    max-width:132px!important;
  }
  html body.public-site .public-logo img{
    width:94px!important;
    max-width:94px!important;
  }
  html body.public-site .site-search{min-width:118px!important;}
  html body.public-site .btn-send-news,
  html body.public-site .public-brandbar.datta-new-top .btn-send-news{
    flex-basis:84px!important;
    width:84px!important;
    min-width:84px!important;
    max-width:84px!important;
    font-size:7.4px!important;
  }
  html body.public-site .btn-send-news span{font-size:7.4px!important;}
  html body.public-site .datta-white-menu-inner .datta-weather-inline{
    flex-basis:auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    font-size:7.5px!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-city,
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-text,
  html body.public-site .datta-weather-inline .datta-weather-arrow,
  html body.public-site .datta-weather-inline .datta-weather-icon{font-size:7.5px!important;}
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    font-size:8.6px!important;
    padding:0 1px!important;
  }
}

/* ============================================================
   PATCH FINAL MOBILE - menu sem duplicar + sem seta grande esquerda
   ============================================================ */
@media (max-width: 768px){
  html body.public-site #mainMobileScrollMenu,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-drag-scroll{
    animation:none!important;
    transform:none!important;
    display:flex!important;
    flex-wrap:nowrap!important;
    justify-content:space-between!important;
    align-items:center!important;
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    overflow:hidden!important;
    white-space:nowrap!important;
  }

  html body.public-site #mainMobileScrollMenu a:nth-child(n+5){
    display:none!important;
  }

  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-scroll-container,
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .container{
    overflow:hidden!important;
    width:100%!important;
    max-width:100%!important;
  }

  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    flex:0 1 auto!important;
    text-align:center!important;
  }

  /* Remove o círculo grande com seta para esquerda do banner/hero no mobile */
  html body.public-site .hero-controls button:first-child,
  html body.public-site .bslider-prev{
    display:none!important;
  }
}

@media (max-width: 520px){
  html body.public-site .datta-white-menu-inner{
    padding:0 3px!important;
    gap:4px!important;
  }
  html body.public-site .datta-white-menu-inner .datta-weather-inline{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    font-size:8px!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }
  html body.public-site .datta-weather-inline .datta-weather-arrow,
  html body.public-site .datta-weather-inline .datta-weather-icon,
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-city,
  html body.public-site .datta-white-menu-inner .datta-weather-inline .datta-weather-text{
    font-size:8px!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    font-size:9.5px!important;
    padding:0 1px!important;
    letter-spacing:-.35px!important;
  }
}

@media (max-width: 390px){
  html body.public-site .datta-white-menu-inner .datta-weather-inline{
    flex-basis:auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }
  html body.public-site nav#publicStickyMenu.public-navbar.datta-new-nav .nav-links a{
    font-size:8.2px!important;
    letter-spacing:-.45px!important;
  }
}

/* ============================================================
   PATCH FINAL RESPONSIVO DATTA TV - topo mobile, menu lateral,
   programas e banners - 2026-05-24
   ============================================================ */

/* Menu lateral: z-index e scroll */
body.public-site .datta-side-menu{
  z-index:2147483001!important;
  overflow-y:auto!important;
  -webkit-overflow-scrolling:touch!important;
}
body.datta-menu-open .datta-side-overlay{z-index:2147483000!important;}

/* Topo mobile igual à referência enviada */
@media(max-width:768px){
  body.public-site .public-socialbar{display:none!important;}

  body.public-site .public-brandbar.datta-new-top,
  body.public-site .public-brandbar{
    height:56px!important;
    min-height:56px!important;
    padding:0!important;
    border-bottom:2px solid #00bfa6!important;
    overflow:hidden!important;
  }
  body.public-site .public-brandbar-inner{
    width:100%!important;
    max-width:none!important;
    height:56px!important;
    min-height:56px!important;
    padding:0 4px!important;
    margin:0!important;
    display:grid!important;
    grid-template-columns:154px minmax(0,1fr) 94px!important;
    gap:4px!important;
    align-items:center!important;
  }
  body.public-site .datta-logo-menu-wrap{
    height:56px!important;
    min-width:0!important;
    display:grid!important;
    grid-template-columns:112px 36px!important;
    gap:4px!important;
    align-items:center!important;
    justify-content:start!important;
  }
  body.public-site .public-logo{display:block!important;width:112px!important;min-width:112px!important;overflow:hidden!important;}
  body.public-site .public-logo img{
    width:112px!important;
    max-width:112px!important;
    height:auto!important;
    display:block!important;
  }
  body.public-site .datta-menu-btn{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    background:transparent!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:center!important;
    align-items:center!important;
    gap:5px!important;
  }
  body.public-site .datta-menu-btn span{
    width:30px!important;
    height:4px!important;
    border-radius:4px!important;
    background:#fff!important;
    display:block!important;
  }
  body.public-site .public-header-actions{
    display:grid!important;
    grid-template-columns:minmax(0,1fr)!important;
    gap:0!important;
    min-width:0!important;
    width:100%!important;
  }
  body.public-site .site-search{
    height:36px!important;
    min-height:36px!important;
    width:100%!important;
    min-width:0!important;
    display:flex!important;
    align-items:center!important;
    border:2px solid #00bfa6!important;
    border-radius:999px!important;
    background:#fff!important;
    overflow:visible!important;
  }
  body.public-site .site-search input{
    height:32px!important;
    min-height:32px!important;
    border:0!important;
    padding:0 8px!important;
    font-size:10px!important;
    line-height:32px!important;
    min-width:0!important;
    flex:1 1 auto!important;
    background:#fff!important;
    color:#677085!important;
  }
  body.public-site .site-search button{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    margin-right:-2px!important;
    border-radius:50%!important;
    background:#000!important;
    color:#fff!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    font-size:15px!important;
    border:0!important;
  }
  body.public-site .btn-send-news{
    width:94px!important;
    min-width:94px!important;
    height:36px!important;
    min-height:36px!important;
    margin:0!important;
    padding:0 6px!important;
    border-radius:999px!important;
    font-size:9px!important;
    line-height:1!important;
    letter-spacing:-.2px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    white-space:nowrap!important;
    text-align:center!important;
  }
  body.public-site .btn-send-news span{display:inline!important;white-space:nowrap!important;}
  body.public-site .btn-send-news span + span::before{content:' ';}

  /* Faixa branca: temperatura + 4 links na mesma linha, sem duplicar */
  body.public-site .datta-white-menu-strip{
    height:26px!important;
    min-height:26px!important;
    max-height:26px!important;
    overflow:visible!important;
    background:#fff!important;
    border-top:0!important;
    border-bottom:2px solid #00bfa6!important;
    position:relative!important;
    z-index:50!important;
  }
  body.public-site .datta-white-menu-inner{
    width:100%!important;
    max-width:none!important;
    height:26px!important;
    min-height:26px!important;
    padding:0 4px!important;
    margin:0!important;
    display:flex!important;
    align-items:center!important;
    gap:6px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    scrollbar-width:none!important;
  }
  body.public-site .datta-white-menu-inner::-webkit-scrollbar{display:none!important;}
  body.public-site .datta-weather-inline{
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    flex:0 0 auto!important;
    height:26px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:2px!important;
    padding:0 0 0 2px!important;
    margin:0!important;
    overflow:visible!important;
    white-space:nowrap!important;
    font-size:9px!important;
    line-height:26px!important;
    color:#111!important;
  }
  body.public-site .datta-weather-arrow{font-size:9px!important;color:#196bff!important;display:inline-flex!important;align-items:center!important;}
  body.public-site .datta-weather-icon{font-size:10px!important;line-height:1!important;}
  body.public-site .datta-weather-text{font-size:9px!important;line-height:1!important;font-weight:800!important;white-space:nowrap!important;}
  body.public-site .datta-weather-city{font-size:9px!important;line-height:1!important;font-weight:900!important;white-space:nowrap!important;color:#1b5cff!important;text-decoration:underline!important;}

  body.public-site .public-navbar,
  body.public-site #publicStickyMenu{
    position:relative!important;
    top:auto!important;
    height:26px!important;
    min-height:26px!important;
    width:100%!important;
    border:0!important;
    background:#fff!important;
    overflow:hidden!important;
    z-index:auto!important;
  }
  body.public-site .public-navbar .nav-scroll-container{
    height:26px!important;
    min-height:26px!important;
    width:100%!important;
    overflow:hidden!important;
    padding:0!important;
    margin:0!important;
  }
  body.public-site .public-navbar .nav-links,
  body.public-site .public-navbar .nav-drag-scroll{
    height:26px!important;
    min-height:26px!important;
    width:100%!important;
    overflow:hidden!important;
    display:grid!important;
    grid-template-columns:repeat(4, minmax(0,1fr))!important;
    gap:0!important;
    white-space:nowrap!important;
    transform:none!important;
    animation:none!important;
  }
  body.public-site .public-navbar .nav-links a{
    height:26px!important;
    min-height:26px!important;
    padding:0 2px!important;
    margin:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    color:#111!important;
    background:#fff!important;
    font-size:9.4px!important;
    line-height:1!important;
    font-weight:950!important;
    text-transform:uppercase!important;
    border:0!important;
    text-decoration:none!important;
    overflow:hidden!important;
  }
  body.public-site .public-navbar .nav-links a.ativo,
  body.public-site .public-navbar .nav-links a:hover{
    color:#111!important;
    background:#fff!important;
    box-shadow:inset 0 -4px 0 #00bfa6!important;
  }

  /* Menu dos três risquinhos no celular: cobre a página, com X livre */
  body.public-site .datta-side-menu,
  body.datta-menu-open .datta-side-menu{
    position:fixed!important;
    top:0!important;
    left:0!important;
    width:218px!important;
    max-width:82vw!important;
    height:100dvh!important;
    max-height:100dvh!important;
    border-radius:0 0 16px 0!important;
    padding-bottom:18px!important;
    transform:translateX(-110%)!important;
  }
  body.datta-menu-open .datta-side-menu{
    transform:translateX(0)!important;
  }
  body.public-site .datta-side-overlay{
    position:fixed!important;
    inset:0!important;
  }
  body.public-site .datta-side-anuncie{
    height:35px!important;
    font-size:18px!important;
    margin:8px 10px 10px!important;
  }
  body.public-site .datta-side-title{
    height:32px!important;
    font-size:18px!important;
    margin:0 10px 6px!important;
  }
  body.public-site .datta-side-item{
    min-height:31px!important;
    padding:7px 10px 7px 22px!important;
    margin:0 10px 5px!important;
    font-size:14px!important;
  }

  /* Remove seta grande de voltar do hero/banner no mobile */
  body.public-site .hero-controls button:first-child,
  body.public-site .hero-publicidade .hero-controls button:first-child{
    display:none!important;
  }
  body.public-site .hero-controls,
  body.public-site .hero-publicidade .hero-controls{
    right:10px!important;
    bottom:10px!important;
  }
  body.public-site .hero-controls button,
  body.public-site .hero-publicidade .hero-controls button{
    width:32px!important;
    height:32px!important;
    min-width:32px!important;
    font-size:14px!important;
  }
}

@media(max-width:390px){
  body.public-site .public-brandbar-inner{grid-template-columns:132px minmax(0,1fr) 86px!important;gap:3px!important;}
  body.public-site .datta-logo-menu-wrap{grid-template-columns:92px 34px!important;gap:3px!important;}
  body.public-site .public-logo{width:92px!important;min-width:92px!important;}
  body.public-site .public-logo img{width:92px!important;max-width:92px!important;}
  body.public-site .btn-send-news{width:86px!important;min-width:86px!important;font-size:8px!important;padding:0 4px!important;}
  body.public-site .site-search input{font-size:9px!important;padding:0 6px!important;}
  body.public-site .datta-white-menu-inner{overflow-x:auto!important;overflow-y:hidden!important;scrollbar-width:none!important;}
  body.public-site .datta-weather-inline{width:auto!important;min-width:0!important;max-width:none!important;flex:0 0 auto!important;font-size:8.4px!important;overflow:visible!important;white-space:nowrap!important;}
  body.public-site .datta-weather-text,
  body.public-site .datta-weather-city{font-size:8.4px!important;}
  body.public-site .public-navbar .nav-links a{font-size:8.6px!important;}
}

/* Página Programas/Identidades responsiva */
.identflix-page,
.identprog-page{overflow-x:hidden!important;}
.identflix-hero{overflow:hidden!important;}
.identflix-hero-content{max-width:100%!important;}
.identflix-programas{scrollbar-width:none!important;}
.identflix-programas::-webkit-scrollbar{display:none!important;}
.identflix-programa-card{overflow:hidden!important;}
.identflix-programa-inner img{width:100%!important;height:100%!important;object-fit:cover!important;max-width:none!important;max-height:none!important;}

.identprog-page{
  min-height:calc(100vh - 120px)!important;
  background-color:#000!important;
  background-image:linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.66) 45%,rgba(0,0,0,.72) 100%), var(--identprog-bg)!important;
  background-size:cover!important;
  background-position:center top!important;
  background-repeat:no-repeat!important;
  padding:32px clamp(16px,4vw,46px) 48px!important;
}
.identprog-top{max-width:1260px!important;margin:0 auto 26px!important;padding:0!important;}
.identprog-title-copy h1{font-size:clamp(34px,6vw,72px)!important;line-height:.94!important;margin:22px 0 6px!important;}
.identprog-title-copy p{font-size:clamp(14px,1.8vw,18px)!important;max-width:650px!important;margin:0!important;}
.identprog-season{max-width:1260px!important;margin:0 auto 26px!important;}
.identprog-grid{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(240px,1fr))!important;gap:14px!important;}
.identprog-card{min-width:0!important;width:100%!important;}
.identprog-thumb{aspect-ratio:16/9!important;overflow:hidden!important;}
.identprog-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;}

@media(max-width:900px){
  .identflix-hero{min-height:auto!important;padding-top:48px!important;padding-bottom:20px!important;}
  .identflix-hero-content{width:100%!important;padding:0 14px!important;}
  .identflix-hero-copy{width:100%!important;max-width:100%!important;min-height:0!important;margin-top:0!important;}
  .identflix-hero-copy h1{font-size:36px!important;}
  .identflix-hero-copy p{font-size:14px!important;max-width:95%!important;}
  .identflix-actions{gap:8px!important;margin-bottom:18px!important;}
  .identflix-btn{height:26px!important;min-height:26px!important;padding:0 13px!important;font-size:10px!important;}
  .identflix-section-title{font-size:24px!important;margin:0 14px 10px!important;}
  .identflix-programas-wrap{padding:0 14px!important;}
  .identflix-programas{gap:10px!important;padding-bottom:10px!important;}
  .identflix-programa-card{flex:0 0 70vw!important;height:142px!important;border-radius:18px!important;padding:6px!important;}
  .identflix-programa-inner{border-radius:13px!important;padding:0!important;}
  .identflix-program-section{position:relative!important;top:auto!important;min-height:auto!important;align-items:flex-start!important;}
  .identflix-program-section-inner{width:100%!important;padding:28px 14px 34px!important;}
  .identflix-program-head{margin-bottom:14px!important;}
  .identflix-program-head h2{font-size:34px!important;}
  .identflix-program-head a{font-size:12px!important;padding:9px 12px!important;}
  .identflix-episodes{gap:10px!important;padding-bottom:10px!important;}
  .identflix-episode-card{flex:0 0 76vw!important;}

  .identprog-page{padding:18px 14px 40px!important;min-height:calc(100vh - 84px)!important;background-position:center top!important;}
  .identprog-back{height:34px!important;padding:0 13px!important;font-size:13px!important;}
  .identprog-title-copy h1{font-size:38px!important;margin:18px 0 6px!important;}
  .identprog-title-copy p{font-size:14px!important;line-height:1.35!important;}
  .identprog-season h2{font-size:18px!important;margin:18px 0 10px!important;}
  .identprog-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  .identprog-info{padding:10px!important;}
  .identprog-info h3{font-size:13px!important;line-height:1.2!important;}
  .identprog-info p{font-size:11px!important;}
}
@media(max-width:520px){
  .identprog-grid{grid-template-columns:1fr!important;}
  .identprog-card{max-width:330px!important;}
}

/* =========================================================
   CORREÇÃO MOBILE - SETAS DO BANNER PRINCIPAL
   Mantém as duas setas pequenas no canto inferior direito
   e remove apenas o botão/seta grande lateral do slider.
   ========================================================= */
@media (max-width: 768px){
  body.public-site .hero .hero-controls,
  body.public-site .hero-publicidade .hero-controls{
    display:flex!important;
    position:absolute!important;
    right:8px!important;
    bottom:8px!important;
    left:auto!important;
    top:auto!important;
    gap:6px!important;
    z-index:20!important;
    transform:none!important;
  }

  body.public-site .hero .hero-controls button,
  body.public-site .hero-publicidade .hero-controls button,
  body.public-site .hero .hero-controls button:first-child,
  body.public-site .hero-publicidade .hero-controls button:first-child{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:32px!important;
    height:32px!important;
    min-width:32px!important;
    max-width:32px!important;
    border-radius:50%!important;
    background:rgba(0,0,0,.68)!important;
    border:0!important;
    color:#fff!important;
    font-size:13px!important;
    line-height:1!important;
    padding:0!important;
    margin:0!important;
    position:relative!important;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    bottom:auto!important;
    transform:none!important;
  }

  body.public-site .hero .hero-controls button i,
  body.public-site .hero-publicidade .hero-controls button i{
    font-size:13px!important;
    line-height:1!important;
    margin:0!important;
    transform:none!important;
  }

  /* remove somente as setas laterais grandes dos banners extras no mobile */
  body.public-site .bslider-wrap > .bslider-btn.bslider-prev,
  body.public-site .bslider-wrap > .bslider-btn.bslider-next{
    display:none!important;
  }
}

/* =========================================================
   PATCH MOBILE FINAL - menu lateral com X visível e hero sem seta grande
   ========================================================= */
@media (max-width: 768px){
  /* Menu lateral sidebar no mobile */
  html body.public-site .datta-side-menu,
  html body.datta-menu-open.public-site .datta-side-menu{
    position:fixed!important;
    top:0!important;
    left:0!important;
    width:340px!important;
    max-width:85vw!important;
    height:100dvh!important;
    max-height:100dvh!important;
    z-index:2147483640!important;
    transform:translateX(-105%)!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    border-radius:0 0 22px 0!important;
    padding:24px 20px 28px 20px!important;
    background:#1a1f28!important;
  }
  html body.datta-menu-open.public-site .datta-side-menu{
    transform:translateX(0)!important;
  }
  html body.public-site .datta-side-head{
    position:sticky!important;
    top:0!important;
    z-index:2147483641!important;
    min-height:auto!important;
    padding:0 0 14px!important;
    background:#1a1f28!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:14px!important;
    margin:0 0 18px!important;
  }
  html body.public-site .datta-side-logo img{
    width:180px!important;
    max-width:180px!important;
    height:auto!important;
  }
  html body.public-site .datta-side-close,
  html body.public-site button.datta-side-close{
    position:relative!important;
    top:auto!important;
    right:auto!important;
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    min-height:42px!important;
    padding:0!important;
    margin:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:transparent!important;
    border:0!important;
    color:#fff!important;
    opacity:1!important;
    visibility:visible!important;
    z-index:2147483647!important;
    pointer-events:auto!important;
    font-size:32px!important;
    line-height:1!important;
    flex-shrink:0!important;
  }
  html body.public-site .datta-side-close i{display:none!important;}
  html body.public-site .datta-side-close::before{
    content:"×"!important;
    display:block!important;
    color:#fff!important;
    font-size:36px!important;
    font-weight:400!important;
    line-height:36px!important;
  }
  html body.public-site .datta-side-overlay{
    display:block!important;
    z-index:2147483000!important;
  }

  /* Evita aparecer o X do botão hambúrguer por cima do menu aberto */
  html body.datta-menu-open.public-site .datta-menu-btn span:nth-child(1),
  html body.datta-menu-open.public-site .datta-menu-btn span:nth-child(2),
  html body.datta-menu-open.public-site .datta-menu-btn span:nth-child(3){
    transform:none!important;
    opacity:1!important;
  }

  /* Hero principal: somente duas setinhas pequenas no canto inferior direito */
  html body.public-site .hero,
  html body.public-site .hero-publicidade{
    overflow:hidden!important;
  }
  html body.public-site .hero .hero-controls,
  html body.public-site .hero-publicidade .hero-controls{
    display:flex!important;
    position:absolute!important;
    right:10px!important;
    bottom:10px!important;
    left:auto!important;
    top:auto!important;
    transform:none!important;
    gap:6px!important;
    z-index:40!important;
  }
  html body.public-site .hero .hero-controls button,
  html body.public-site .hero-publicidade .hero-controls button,
  html body.public-site .hero .hero-controls button:first-child,
  html body.public-site .hero-publicidade .hero-controls button:first-child{
    display:inline-flex!important;
    position:relative!important;
    inset:auto!important;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    bottom:auto!important;
    transform:none!important;
    width:32px!important;
    height:32px!important;
    min-width:32px!important;
    max-width:32px!important;
    min-height:32px!important;
    max-height:32px!important;
    border-radius:50%!important;
    background:rgba(0,0,0,.72)!important;
    border:0!important;
    padding:0!important;
    margin:0!important;
    align-items:center!important;
    justify-content:center!important;
    color:#fff!important;
    font-size:13px!important;
    line-height:1!important;
  }
  html body.public-site .hero .hero-controls button i,
  html body.public-site .hero-publicidade .hero-controls button i{
    font-size:13px!important;
    width:auto!important;
    height:auto!important;
    line-height:1!important;
  }

  /* Remove qualquer seta grande lateral dos sliders de banner no mobile */
  html body.public-site .bslider-btn,
  html body.public-site .bslider-wrap .bslider-btn,
  html body.public-site .bslider-prev,
  html body.public-site .bslider-next,
  html body.public-site button.bslider-prev,
  html body.public-site button.bslider-next{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }
}


/* ============================================================
   CORREÇÃO DEFINITIVA MOBILE - X MENU E SETA GRANDE DO HERO
   ============================================================ */
@media (max-width: 768px){
  html body.public-site button.datta-side-close,
  html body.public-site .datta-side-close,
  html body.datta-menu-open.public-site button.datta-side-close,
  html body.datta-menu-open.public-site .datta-side-close{
    position:relative!important;
    top:auto!important;
    right:auto!important;
    z-index:2147483647!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    min-height:42px!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    outline:0!important;
    background:transparent!important;
    color:#fff!important;
    font-size:36px!important;
    font-family:Arial, Helvetica, sans-serif!important;
    font-weight:300!important;
    line-height:36px!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    text-indent:0!important;
    overflow:visible!important;
    flex-shrink:0!important;
  }
  html body.public-site .datta-side-close::before,
  html body.public-site .datta-side-close::after{
    content:none!important;
    display:none!important;
  }
  html body.public-site .datta-side-head{
    padding-right:0!important;
    overflow:visible!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
  }

  /* Esta é a bolinha grande que aparece no meio do banner: remover no mobile */
  html body.public-site .bslider-prev,
  html body.public-site button.bslider-prev,
  html body.public-site .bslider-wrap > .bslider-prev,
  html body.public-site .bslider-wrap button.bslider-prev,
  html body.public-site .bslider-wrap .bslider-btn.bslider-prev,
  .bslider-prev,
  button.bslider-prev{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    width:0!important;
    height:0!important;
    min-width:0!important;
    min-height:0!important;
    max-width:0!important;
    max-height:0!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    transform:scale(0)!important;
    overflow:hidden!important;
  }

  /* Manter os controles pequenos do hero no canto inferior direito */
  html body.public-site .hero .hero-controls,
  html body.public-site .hero-publicidade .hero-controls{
    display:flex!important;
    position:absolute!important;
    right:8px!important;
    bottom:8px!important;
    left:auto!important;
    top:auto!important;
    transform:none!important;
    gap:6px!important;
    z-index:80!important;
  }
  html body.public-site .hero .hero-controls button,
  html body.public-site .hero-publicidade .hero-controls button{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    position:relative!important;
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    max-width:30px!important;
    max-height:30px!important;
    padding:0!important;
    margin:0!important;
    border-radius:50%!important;
    border:0!important;
    background:rgba(0,0,0,.72)!important;
    color:#fff!important;
    font-size:13px!important;
    line-height:1!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:none!important;
  }
}

/* =========================================================
   CORREÇÃO REAL MOBILE - remove a bolinha grande dos banners
   A bolinha marcada é dos sliders de banner (.bslider-btn), não dos
   controles pequenos do hero. Mantém só as duas setinhas pequenas
   do hero no canto inferior direito.
   ========================================================= */
@media (max-width: 768px){
  html body.public-site .bslider-wrap .bslider-btn,
  html body.public-site .bslider-wrap .bslider-prev,
  html body.public-site .bslider-wrap .bslider-next,
  html body.public-site .home-banner-topo-abaixo-destaques .bslider-btn,
  html body.public-site .home-destaque-banner-slot .bslider-btn,
  html body.public-site button.bslider-btn,
  html body.public-site button.bslider-prev,
  html body.public-site button.bslider-next{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    width:0!important;
    height:0!important;
    min-width:0!important;
    min-height:0!important;
    max-width:0!important;
    max-height:0!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    overflow:hidden!important;
  }

  html body.public-site .hero .hero-controls,
  html body.public-site .hero-publicidade .hero-controls{
    display:flex!important;
    position:absolute!important;
    right:8px!important;
    bottom:8px!important;
    left:auto!important;
    top:auto!important;
    transform:none!important;
    gap:6px!important;
    z-index:90!important;
  }

  html body.public-site .hero .hero-controls button,
  html body.public-site .hero-publicidade .hero-controls button,
  html body.public-site .hero .hero-controls button:first-child,
  html body.public-site .hero-publicidade .hero-controls button:first-child,
  html body.public-site .hero .hero-controls button:last-child,
  html body.public-site .hero-publicidade .hero-controls button:last-child{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    position:relative!important;
    inset:auto!important;
    transform:none!important;
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    max-width:30px!important;
    max-height:30px!important;
    border-radius:50%!important;
    background:rgba(0,0,0,.72)!important;
    color:#fff!important;
    border:0!important;
    padding:0!important;
    margin:0!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
  }

  html body.public-site .hero .hero-controls button i,
  html body.public-site .hero-publicidade .hero-controls button i{
    font-size:13px!important;
    line-height:1!important;
    width:auto!important;
    height:auto!important;
    margin:0!important;
    padding:0!important;
  }

  html body.public-site .datta-side-close,
  html body.public-site button.datta-side-close,
  html body.datta-menu-open.public-site .datta-side-close,
  html body.datta-menu-open.public-site button.datta-side-close{
    display:flex!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    z-index:2147483647!important;
    color:#fff!important;
    background:transparent!important;
    top:10px!important;
    right:10px!important;
  }
}


/* ============================================================
   CORREÇÃO DEFINITIVA 100% MOBILE - remove a bolinha grande
   Esconde os controles antigos do hero APENAS no mobile e usa
   dois botões novos pequenos no canto inferior direito.
   ============================================================ */
.hero-mobile-controls{display:none;}
@media (max-width:768px){
  html body.public-site .hero > .hero-controls,
  html body.public-site .hero-publicidade > .hero-controls,
  html body.public-site .hero > .hero-controls-desktop,
  html body.public-site .hero-publicidade > .hero-controls-desktop{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }

  html body.public-site .hero > .hero-mobile-controls,
  html body.public-site .hero-publicidade > .hero-mobile-controls{
    display:flex!important;
    position:absolute!important;
    right:8px!important;
    bottom:8px!important;
    left:auto!important;
    top:auto!important;
    gap:6px!important;
    z-index:999!important;
    width:auto!important;
    height:auto!important;
    transform:none!important;
  }

  html body.public-site .hero > .hero-mobile-controls button,
  html body.public-site .hero-publicidade > .hero-mobile-controls button{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    min-height:30px!important;
    max-width:30px!important;
    max-height:30px!important;
    border-radius:50%!important;
    background:rgba(0,0,0,.72)!important;
    border:0!important;
    color:#fff!important;
    padding:0!important;
    margin:0!important;
    font-size:13px!important;
    line-height:1!important;
    position:static!important;
    transform:none!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
  }

  html body.public-site .hero > .hero-mobile-controls button i,
  html body.public-site .hero-publicidade > .hero-mobile-controls button i{
    font-size:13px!important;
    line-height:1!important;
    width:auto!important;
    height:auto!important;
    display:block!important;
    margin:0!important;
    padding:0!important;
    transform:none!important;
  }

  /* Remove qualquer controle lateral grande de sliders de banner no mobile */
  html body.public-site .bslider-wrap > .bslider-btn,
  html body.public-site .bslider-wrap > button.bslider-btn,
  html body.public-site .bslider-btn.bslider-prev,
  html body.public-site .bslider-btn.bslider-next{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }
}
@media (min-width:769px){
  .hero-mobile-controls{display:none!important;}
}

/* ============================================================
   CORREÇÃO MOBILE IDENTIDADES/PROGRAMAS
   - Remove área preta sobre o vídeo
   - Exibe setas nos carrosséis de programas e episódios
   - Cards de episódios responsivos (mostra parte do próximo)
   - Episódios colados no menu (sem spacer gigante)
   ============================================================ */

/* --- HERO: remove área preta acima do vídeo no mobile --- */
@media (max-width: 768px) {
  html body.public-site .identflix-hero {
    min-height: 56vw !important;
    height: auto !important;
    padding-top: 0 !important;
  }
  html body.public-site .identflix-spacer {
    min-height: 0 !important;
    height: 0 !important;
    display: none !important;
  }
  html body.public-site .identflix-content {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 14px !important;
    width: 100% !important;
  }
  html body.public-site .identflix-bg-video {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    width: 100vw !important;
    height: 56.25vw !important;
    min-width: 100% !important;
    min-height: 56.25vw !important;
    transform: translateX(-50%) !important;
    object-fit: cover !important;
  }
  html body.public-site .identflix-overlay {
    top: 0 !important;
  }
  html body.public-site .identflix-hero-copy h1,
  html body.public-site .identflix-content h1 {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
  html body.public-site .identflix-actions {
    margin-top: 10px !important;
    margin-bottom: 14px !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  html body.public-site .identflix-btn-more {
    min-width: 0 !important;
  }

  /* --- CARROSSEL DE PROGRAMAS: setas visíveis --- */
  html body.public-site .identflix-side-arrow {
    display: inline-flex !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 34px !important;
    height: 34px !important;
    z-index: 10 !important;
    background: rgba(0,0,0,.65) !important;
    border: 1px solid rgba(255,255,255,.3) !important;
    color: #fff !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }
  html body.public-site .identflix-side-left {
    left: 2px !important;
  }
  html body.public-site .identflix-side-right {
    right: 2px !important;
  }
  html body.public-site .identflix-programas-wrap {
    position: relative !important;
    padding: 0 40px !important;
  }

  /* Cards de programas: mostra parte do próximo */
  html body.public-site .identflix-programas {
    gap: 10px !important;
    padding-bottom: 8px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  html body.public-site .identflix-programas::-webkit-scrollbar { display: none !important; }
  html body.public-site .identflix-programa-card {
    flex: 0 0 72vw !important;
    min-width: 72vw !important;
    height: 135px !important;
    scroll-snap-align: start !important;
  }

  /* --- SETAS DOS EPISÓDIOS: titlebar visível --- */
  html body.public-site .identflix-row-arrows {
    display: flex !important;
  }
  html body.public-site .identflix-episode-titlebar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
  }
  html body.public-site .identflix-episode-titlebar h3 {
    display: block !important;
    font-size: 16px !important;
    color: #fff !important;
    margin: 0 !important;
  }
  html body.public-site .identflix-row-arrows button {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.55) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 12px !important;
  }

  /* Cards de episódios: mostra parte do próximo */
  html body.public-site .identflix-episodes {
    display: flex !important;
    overflow-x: auto !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  html body.public-site .identflix-episodes::-webkit-scrollbar { display: none !important; }
  html body.public-site .identflix-episode-card {
    flex: 0 0 72vw !important;
    min-width: 72vw !important;
    scroll-snap-align: start !important;
  }

  /* Seção de cada programa: sem altura fixa (sticky) */
  html body.public-site .identflix-program-section {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
  }
  html body.public-site .identflix-program-section-inner {
    width: 100% !important;
    padding: 24px 14px 32px !important;
  }
  html body.public-site .identflix-program-head-clean {
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }
  html body.public-site .identflix-program-head-clean h2 {
    font-size: 28px !important;
    line-height: 1.05 !important;
  }
  html body.public-site .identflix-program-head-clean a {
    font-size: 13px !important;
    padding: 8px 14px !important;
  }

  /* Seção row-titlebar no hero: setas visíveis */
  html body.public-site .identflix-row-titlebar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
  }
  html body.public-site .identflix-row-titlebar .identflix-row-arrows {
    display: flex !important;
  }
}

/* ============================================================
   AJUSTE SOLICITADO - Mobile Identidades
   1) vídeo do hero cobrindo todo o hero no mobile
   2) cards de Produções DATTATV quadrados no mobile
   3) setas laterais do carrossel removidas
   ============================================================ */
body.public-site .identflix-side-arrow,
body.public-site .identflix-programas-wrap > .identflix-side-arrow{
  display:none!important;
  visibility:hidden!important;
  pointer-events:none!important;
}

@media(max-width:900px){
  body.public-site .identflix-hero{
    min-height:calc(100svh - 64px)!important;
  }
  body.public-site .identflix-content{
    min-height:calc(100svh - 64px)!important;
  }
  body.public-site .identflix-bg-video{
    position:absolute!important;
    inset:50% auto auto 50%!important;
    width:max(100vw, 177.78svh)!important;
    height:max(100svh, 56.25vw)!important;
    min-width:100vw!important;
    min-height:100svh!important;
    transform:translate(-50%,-50%) scale(1.04)!important;
    object-fit:cover!important;
    opacity:.92!important;
  }
  body.public-site .identflix-bg-image{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    background-size:cover!important;
    background-position:center center!important;
  }
  body.public-site .identflix-programas{
    gap:12px!important;
  }
  body.public-site .identflix-programa-card{
    flex:0 0 160px!important;
    min-width:160px!important;
    width:160px!important;
    height:160px!important;
    border-radius:18px!important;
    padding:7px!important;
  }
  body.public-site .identflix-programa-inner{
    border-radius:13px!important;
  }
}

@media(max-width:520px){
  body.public-site .identflix-programa-card{
    flex:0 0 42vw!important;
    min-width:42vw!important;
    width:42vw!important;
    height:42vw!important;
    max-width:180px!important;
    max-height:180px!important;
  }
}


/* ============================================================
   AJUSTE FINAL SOLICITADO - PROGRAMAS MOBILE
   - URL/menu agora usam programas.php
   - vídeo cobre todo o quadro do hero no mobile
   - cards dos programas quadrados no mobile
   ============================================================ */
@media (max-width: 900px){
  html body.public-site main.identflix-page,
  html body.public-site .identflix-page{
    background:#000!important;
    margin-top:0!important;
  }

  html body.public-site .identflix-hero{
    position:relative!important;
    min-height:calc(100vh - 64px)!important;
    height:auto!important;
    margin:0!important;
    padding:0!important;
    overflow:hidden!important;
    background:#000!important;
    border-bottom:3px solid var(--cor-primaria,#00bfa6)!important;
  }

  html body.public-site .identflix-bg-video{
    position:absolute!important;
    z-index:0!important;
    left:50%!important;
    top:50%!important;
    right:auto!important;
    bottom:auto!important;
    width:177.78vh!important;
    height:100vh!important;
    min-width:100vw!important;
    min-height:100%!important;
    max-width:none!important;
    max-height:none!important;
    transform:translate(-50%,-50%) scale(1.18)!important;
    transform-origin:center center!important;
    object-fit:cover!important;
    border:0!important;
    opacity:.96!important;
    filter:brightness(1.12) contrast(1.05) saturate(1.04)!important;
    pointer-events:none!important;
    background:#000!important;
  }

  html body.public-site .identflix-bg-image{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    background-size:cover!important;
    background-position:center center!important;
  }

  html body.public-site .identflix-content{
    position:relative!important;
    z-index:2!important;
    width:100%!important;
    min-height:calc(100vh - 64px)!important;
    margin:0!important;
    padding:12px 0 12px 14px!important;
    box-sizing:border-box!important;
    background:transparent!important;
  }

  html body.public-site .identflix-spacer{
    min-height:38vh!important;
  }

  html body.public-site .identflix-row-titlebar{
    padding-right:14px!important;
  }

  html body.public-site .identflix-programas-wrap{
    padding:0!important;
    margin:0!important;
  }

  html body.public-site .identflix-programas{
    display:flex!important;
    gap:10px!important;
    padding:0 14px 10px 0!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    scroll-snap-type:x proximity!important;
    -webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;
  }
  html body.public-site .identflix-programas::-webkit-scrollbar{display:none!important;}

  html body.public-site .identflix-programa-card{
    flex:0 0 38vw!important;
    min-width:38vw!important;
    width:38vw!important;
    height:38vw!important;
    max-width:178px!important;
    max-height:178px!important;
    min-height:124px!important;
    border-radius:18px!important;
    padding:6px!important;
    scroll-snap-align:start!important;
    overflow:hidden!important;
  }

  html body.public-site .identflix-programa-inner{
    width:100%!important;
    height:100%!important;
    border-radius:13px!important;
    padding:0!important;
    overflow:hidden!important;
  }

  html body.public-site .identflix-programa-inner img{
    width:100%!important;
    height:100%!important;
    max-width:none!important;
    max-height:none!important;
    object-fit:cover!important;
    object-position:center center!important;
    display:block!important;
  }
}

@media (max-width: 520px){
  html body.public-site .identflix-bg-video{
    width:177.78vh!important;
    height:100vh!important;
    min-width:100vw!important;
    min-height:100%!important;
    transform:translate(-50%,-50%) scale(1.24)!important;
  }

  html body.public-site .identflix-programa-card{
    flex:0 0 40vw!important;
    min-width:40vw!important;
    width:40vw!important;
    height:40vw!important;
    max-width:176px!important;
    max-height:176px!important;
    min-height:126px!important;
  }
}

@media (max-width: 390px){
  html body.public-site .identflix-programa-card{
    flex:0 0 42vw!important;
    min-width:42vw!important;
    width:42vw!important;
    height:42vw!important;
    min-height:122px!important;
  }
}

/* ============================================================
   CORREÇÃO IPHONE / SAFARI - MENU SUPERIOR MOBILE
   Evita links colados: ÚLTIMASPROGRAMASANUNCIE AQUICONTATO
   ============================================================ */
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
@media (max-width: 768px){
  body.public-site .datta-white-menu-strip{
    width:100%!important;
    overflow:hidden!important;
  }
  body.public-site .datta-white-menu-inner{
    display:flex!important;
    align-items:center!important;
    gap:6px!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    padding:0 4px!important;
    box-sizing:border-box!important;
  }
  body.public-site .datta-weather-inline{
    flex:0 0 auto!important;
    max-width:132px!important;
    min-width:0!important;
    overflow:hidden!important;
    white-space:nowrap!important;
    font-size:10px!important;
  }
  body.public-site .datta-weather-text{
    display:inline-block!important;
    max-width:88px!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    vertical-align:middle!important;
  }
  body.public-site .datta-weather-city{
    font-size:10px!important;
  }
  body.public-site .public-navbar,
  body.public-site #publicStickyMenu,
  body.public-site .datta-new-nav{
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:calc(100vw - 142px)!important;
    overflow:hidden!important;
    background:#fff!important;
    border:0!important;
  }
  body.public-site .public-navbar .nav-scroll-container,
  body.public-site .datta-new-nav .nav-scroll-container{
    width:100%!important;
    max-width:100%!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;
  }
  body.public-site .public-navbar .nav-scroll-container::-webkit-scrollbar,
  body.public-site .datta-new-nav .nav-scroll-container::-webkit-scrollbar{display:none!important;}
  body.public-site .public-navbar .nav-links,
  body.public-site .public-navbar .nav-drag-scroll,
  body.public-site .datta-new-nav .nav-links,
  body.public-site .datta-new-nav .nav-drag-scroll{
    display:flex!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:0!important;
    width:max-content!important;
    min-width:max-content!important;
    max-width:none!important;
    height:34px!important;
    min-height:34px!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }
  body.public-site .public-navbar .nav-links a,
  body.public-site .datta-new-nav .nav-links a{
    flex:0 0 auto!important;
    flex-shrink:0!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    height:34px!important;
    min-height:34px!important;
    min-width:auto!important;
    padding:0 12px!important;
    margin:0!important;
    color:#111!important;
    background:transparent!important;
    font-size:11px!important;
    line-height:1!important;
    font-weight:900!important;
    letter-spacing:0!important;
    word-spacing:0!important;
    text-decoration:none!important;
    white-space:nowrap!important;
    border-left:0!important;
    border-bottom:3px solid transparent!important;
  }
  body.public-site .public-navbar .nav-links a.ativo,
  body.public-site .datta-new-nav .nav-links a.ativo{
    color:#111!important;
    border-bottom-color:var(--verde,#00BFA6)!important;
  }
}
@media (max-width: 390px){
  body.public-site .datta-weather-inline{max-width:118px!important;font-size:9px!important;}
  body.public-site .datta-weather-text{max-width:76px!important;}
  body.public-site .public-navbar,
  body.public-site #publicStickyMenu,
  body.public-site .datta-new-nav{max-width:calc(100vw - 126px)!important;}
  body.public-site .public-navbar .nav-links a,
  body.public-site .datta-new-nav .nav-links a{font-size:10.5px!important;padding:0 10px!important;}
}

body.public-site .noticia-page-wrap .noticia-conteudo a,
body.public-site .noticia-page-wrap .noticia-conteudo a:visited{
  color:#00bfa6!important;
  cursor:pointer!important;
  font-weight:900!important;
  pointer-events:auto!important;
  text-decoration:underline!important;
  text-decoration-thickness:2px!important;
  text-underline-offset:3px!important;
}

@media (max-width: 768px){
  html body.public-site .datta-side-menu{
    width:min(318px,86vw)!important;
    max-width:86vw!important;
    padding:14px 16px 18px!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    background:#1a1f28!important;
  }
  html body.public-site .datta-side-head{
    position:relative!important;
    top:auto!important;
    z-index:2!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 44px!important;
    align-items:center!important;
    gap:10px!important;
    margin:0 0 12px!important;
    padding:0 0 10px!important;
    background:transparent!important;
    overflow:visible!important;
  }
  html body.public-site .datta-side-logo{
    display:block!important;
    min-width:0!important;
    max-width:100%!important;
  }
  html body.public-site .datta-side-logo img{
    position:static!important;
    display:block!important;
    width:min(185px, calc(86vw - 82px))!important;
    max-width:100%!important;
    height:auto!important;
    margin:0!important;
  }
  html body.public-site .datta-side-close,
  html body.public-site button.datta-side-close{
    position:static!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    min-width:44px!important;
    height:44px!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    background:transparent!important;
    color:#fff!important;
    font-size:34px!important;
    line-height:1!important;
    transform:none!important;
  }
  html body.public-site .datta-side-anuncie,
  html body.public-site .datta-side-title,
  html body.public-site .datta-side-title-link,
  html body.public-site .datta-side-item{
    position:relative!important;
    z-index:1!important;
    clear:both!important;
  }
}

body.public-site .identprog-title-copy .identprog-logo{
  display:block!important;
  width:min(390px,34vw)!important;
  max-width:100%!important;
  max-height:120px!important;
  height:auto!important;
  margin:0 0 26px!important;
  object-fit:contain!important;
  filter:drop-shadow(0 5px 18px rgba(0,0,0,.85))!important;
}
body.public-site .identprog-title-copy h1{
  margin-top:0!important;
}
@media (max-width: 900px){
  body.public-site .identprog-page{
    background-image:linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.66) 45%,rgba(0,0,0,.72) 100%), var(--identprog-bg-mobile, var(--identprog-bg))!important;
  }
  body.public-site .identprog-title-copy .identprog-logo{
    width:min(62vw,260px)!important;
    max-height:72px!important;
    margin-bottom:18px!important;
  }
}

body.public-site .identprog-season-titlebar{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:14px!important;
  margin:0 0 12px!important;
}
body.public-site .identprog-season-titlebar h2{
  margin:0!important;
}
body.public-site .identprog-season-arrows{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
}
body.public-site .identprog-season-arrows button{
  width:40px!important;
  height:40px!important;
  border-radius:50%!important;
  border:1px solid rgba(255,255,255,.28)!important;
  background:rgba(0,0,0,.64)!important;
  color:#fff!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  box-shadow:0 8px 20px rgba(0,0,0,.45)!important;
}
body.public-site .identprog-season-arrows button:hover{
  background:#00bfa6!important;
  border-color:#00bfa6!important;
  color:#00130f!important;
}
body.public-site .identprog-grid{
  display:flex!important;
  grid-template-columns:none!important;
  gap:14px!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scroll-behavior:smooth!important;
  scroll-snap-type:x proximity!important;
  padding:0 4px 8px!important;
  scrollbar-width:none!important;
}
body.public-site .identprog-grid::-webkit-scrollbar{
  display:none!important;
}
body.public-site .identprog-card{
  flex:0 0 260px!important;
  width:260px!important;
  min-width:260px!important;
  scroll-snap-align:start!important;
}
@media (max-width:900px){
  body.public-site .identprog-season-titlebar{
    margin-bottom:10px!important;
  }
  body.public-site .identprog-season-arrows button{
    width:36px!important;
    height:36px!important;
  }
  body.public-site .identprog-card{
    flex:0 0 72vw!important;
    width:72vw!important;
    min-width:72vw!important;
    max-width:none!important;
  }
  body.public-site .identflix-program-section .identflix-episode-titlebar h3{
    display:none!important;
  }
}
