
/* Olhar Alerta Layouts */
.oa-wrap, .oa-wrap * { box-sizing: border-box; }
.oa-wrap { font-family: 'Poppins', sans-serif; width: 100%; margin: 20px auto; padding: 0 14px; }
.oa-wrap a { text-decoration: none; }
.oa-wrap img { display:block; width:100%; height:100%; object-fit:cover; }

/* Featured grid */
.oa-featured-grid .oa-grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:18px;
  align-items:stretch;
}

.oa-featured-main{
  position:relative;
  min-height: 420px;
  border-radius: 0;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  transform: translateZ(0);
}
.oa-featured-main:hover { }
.oa-featured-main .oa-coverlink{
  position:absolute; inset:0;
  z-index:2;
}
.oa-featured-main .oa-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.20) 55%, rgba(0,0,0,.05));
  z-index:1;
}
.oa-featured-main .oa-main-content{
  position:absolute;
  left:22px; right:22px; bottom:18px;
  z-index:3;
}
.oa-title { margin: 8px 0 10px; line-height:1.1; letter-spacing:-.2px; }
.oa-title a { color:#fff; }
.oa-title-main { font-size: 34px; font-weight: 800; }
.oa-title-side { font-size: 22px; font-weight: 800; }
.oa-title-card { font-size: 22px; font-weight: 800; color:#111; }

.oa-cats{ display:flex; gap:8px; flex-wrap:wrap; }
.oa-pill{
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border:1px solid rgba(0,0,0,.12);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background:#fff;
  color:#111;
}
.oa-featured-main .oa-pill{ background:#fff; border-color:transparent; }
.oa-posts-row .oa-pill{ background:#fff; }

.oa-meta{
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.oa-featured-side .oa-meta, .oa-posts-row .oa-meta{
  color: rgba(17,17,17,.75);
}
.oa-meta .oa-author{
  color: inherit;
  font-weight: 700;
  border-bottom: 3px solid #f7d23e;
  padding-bottom: 1px;
}
.oa-meta .oa-sep{ margin:0 6px; opacity:.7; }

/* ------------------------------------------------------------
   OA Post Header (Single)
   Shortcode: [oa_post_header]
   - Escopado por classe para evitar override do Elementor
------------------------------------------------------------- */
.oa-post-header,
.oa-post-header *{ box-sizing:border-box; }

.oa-post-header{
  --oa-ph-accent:#ff6511;
  --oa-ph-muted:#9a9a9a;
  --oa-ph-border:#cfcfcf;
  --oa-ph-title:#000000;
  width:100%;
  margin:0 !important;
  padding:0 !important;
  font-family:'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.oa-post-header__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:0 0 10px 0 !important;
}

.oa-post-header__kicker{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 !important;
  font-size:16px !important; /* menor e mais parecido com o exemplo */
  font-weight:500 !important; /* menos "duro" */
  line-height:1.2 !important;
  letter-spacing:0.3px;
  text-transform:uppercase;
}


.oa-post-header__kicker .oa-post-header__base{ color:#6b7280 !important; font-weight:500 !important; }
.oa-post-header__kicker .oa-post-header__sep{ color:#9ca3af !important; font-weight:400 !important; margin:0 2px; }
.oa-post-header__kicker .oa-post-header__cat{ color:#ff6807 !important; font-weight:600 !important; }

.oa-post-header__share{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.oa-post-header__share-label{
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.02em;
  color:#222 !important;
  text-transform:uppercase;
  margin-right:2px;
}

.oa-post-header__share a{
  width:26px;
  height:26px;
  border-radius:999px;
  border:2px solid var(--oa-ph-border);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none !important;
  color:#333 !important;
  transition:transform .15s ease, background .15s ease;
}
.oa-post-header__share a:hover{ transform:translateY(-1px); background:rgba(0,0,0,.04); }

.oa-post-header__share i{
  font-size:13px !important;
  line-height:1 !important;
  display:block;
}

.oa-post-header__divider{
  height:2px;
  background:var(--oa-ph-border);
  width:100%;
  margin:10px 0 14px 0 !important;
}

.oa-post-header__title{
  position:relative;
  margin:0 !important;
  padding-left:18px !important;
  font-size: 46px !important;
  font-weight: 700 !important;
  line-height:1.05 !important;
  color:var(--oa-ph-title) !important;
  letter-spacing:-.01em;
}

.oa-post-header__title:before{
  content:"";
  position:absolute;
  left:0;
  top:.12em;
  width:6px;
  height:calc(100% - .24em);
  background:var(--oa-ph-accent);
  border-radius:2px;
}

.oa-post-header__meta{
  margin:10px 0 0 0 !important;
  font-size:13px !important;
  font-weight:800 !important;
  text-transform:uppercase;
  color:#000 !important;
  letter-spacing:.02em;
}

@media (max-width: 768px){
  .oa-post-header__kicker{ font-size:20px !important; }
  .oa-post-header__title{ font-size:32px !important; }
  .oa-post-header__top{ flex-direction:column; align-items:flex-start; }
  .oa-post-header__share{ margin-top:6px; }
}

.oa-featured-side{
  border-radius: 0;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  min-height: 420px;
}
.oa-featured-side .oa-thumb{
  display:block;
  height: 220px;
  overflow:hidden;
}
.oa-featured-side .oa-thumb img{
  transition: transform .35s ease;
}
.oa-featured-side:hover .oa-thumb img,
.oa-card:hover .oa-thumb img{
  transform: scale(1.06);
}
.oa-side-content{
  padding: 16px 16px 18px;
}
.oa-side-content .oa-title a{ color:#111; }
.oa-excerpt{
  margin: 10px 0 0;
  color: rgba(17,17,17,.72);
  font-size: 13px;
  line-height:1.45;
}

/* Posts row */
.oa-posts-row .oa-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

/* Mato Grosso (hero + 3 cards) */
.oa-mato-grosso .oa-mt-hero{ margin-bottom: 18px; }
.oa-mato-grosso .oa-mt-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.oa-card{
  border-radius: 0;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}
.oa-card .oa-thumb{ display:block; height: 220px; overflow:hidden; }
.oa-card .oa-thumb img{ transition: transform .35s ease; }
.oa-card-content{ padding: 14px 16px 18px; }
.oa-card-content .oa-title a{ color:#111; }

/* Web Stories */
.oa-stories{ margin-top: 10px; margin-bottom: 12px; }
.oa-stories-track{
  display:flex;
  gap:18px;
  overflow:auto;
  padding: 6px 2px 10px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.oa-story{
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  text-align:center;
  min-width: 92px;
  font-family: inherit;
}
.oa-story-ring{
  width: 74px;
  height: 74px;
  border-radius:999px;
  padding: 4px;
  background: #fff;
  border: 3px solid #ff6807ff; /* aro stories */
  display:grid;
  place-items:center;
  margin: 0 auto 6px;
}
.oa-story-img{
  width: 100%;
  height: 100%;
  border-radius:999px;
  object-fit:cover;
}
.oa-story-fallback{
  width: 100%;
  height: 100%;
  border-radius:999px;
  background: #111;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
}
.oa-story-label{
  display:block;
  font-size: 12px;
  font-weight: 600;
  color:#111;
  max-width: 92px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* Últimas notícias (coluna) - pensado para Blocksy sem sobrescrever estilos do tema */
.oa-latestnews, .oa-latestnews *{ box-sizing: border-box; }
.oa-latestnews{
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}
.oa-latestnews__header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.oa-latestnews__title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: #1f4b8f;
}
.oa-latestnews__plus{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(0,0,0,.20);
  border-radius: 4px;
  color: rgba(17,17,17,.75);
  font-weight: 800;
  line-height: 1;
}
.oa-latestnews__plus:hover{ color: rgba(17,17,17,.95); }

.oa-latestnews__item{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.oa-latestnews__item:last-child{ border-bottom: 0; }

.oa-latestnews__time{
  display:block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17,17,17,.55);
  margin-bottom: 6px;
}
.oa-latestnews__link{
  display:block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  color: #f12b13;
}
.oa-latestnews__link:hover{
  text-decoration: underline;
}

/* Modal */
.oa-story-modal[hidden]{ display:none !important; }
.oa-story-modal{
  position:fixed;
  inset:0;
  z-index: 99999;
}
.oa-story-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
}
.oa-story-modal-card{
  position:relative;
  width:min(980px, calc(100% - 40px));
  height:min(640px, calc(100% - 40px));
  margin: 20px auto;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
}
.oa-story-hero{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position:center;
}
.oa-story-gradient{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.24) 55%, rgba(0,0,0,.10));
  pointer-events:none;
}
.oa-story-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}
.oa-story-top{
  position:absolute;
  top:14px;
  left:16px;
  right: 70px;
  z-index:3;
  color:#fff;
}
.oa-story-brand{ display:flex; gap:10px; align-items:center; }
.oa-story-logo{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow:hidden;
  background:#d11;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
  flex: 0 0 36px;
}
.oa-story-logo img{ width:100%; height:100%; object-fit:cover; }
.oa-story-brandtext{ display:flex; gap:10px; align-items:center; font-size: 14px; opacity:.95; }
.oa-story-author{ font-weight:700; }
.oa-story-time{ opacity:.85; }

.oa-story-bottom{
  position:absolute;
  left:18px;
  right:18px;
  bottom: 26px;
  z-index:3;
  color:#fff;
  max-width: 720px;
}
.oa-story-cat{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 700;
}
.oa-story-title{
  margin: 12px 0 10px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}
.oa-story-excerpt{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.oa-story-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  color:#fff;
  background: rgba(0,0,0,.15);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .oa-featured-grid .oa-grid{ grid-template-columns: 1fr; }
  .oa-featured-main{ min-height: 360px; }
  .oa-featured-side{ min-height: auto; }
  .oa-posts-row .oa-row{ grid-template-columns: 1fr; }
  .oa-mato-grosso .oa-mt-row{ grid-template-columns: 1fr; }
  .oa-card .oa-thumb{ height: 200px; }
  .oa-story-modal-card{ height: min(640px, calc(100% - 28px)); width: calc(100% - 28px); margin:14px auto; }
  .oa-story-title{ font-size: 26px; }
}



@media (max-width: 560px){
  /* HERO (Featured grid) - mobile fix: avoid text overflowing */
  .oa-featured-main{ min-height: 300px; }
  .oa-featured-main .oa-main-content{
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .oa-title{ line-height: 1.15; }
  .oa-title-main{ font-size: 22px; }
  .oa-title-side{ font-size: 18px; }

  /* Clamp long titles so they never "estouram" o card */
  .oa-title a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .oa-title-main a{ -webkit-line-clamp: 3; }
  .oa-title-side a{ -webkit-line-clamp: 2; }

  .oa-cats{ gap: 6px; }
  .oa-pill{
    height: 24px;
    font-size: 11px;
    padding: 0 8px;
  }

  .oa-meta{ font-size: 12px; }
}


/* Most read (Mais lidas) */
.oa-most-read{
  background:#fff;
  padding:22px 22px;
  border-radius:0;
  margin-top:20px;
}
.oa-most-read-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}
.oa-most-read-title{
  margin:0;
  font-size:56px;
  line-height:1;
  font-weight:800;
  color:#f12b13;
  letter-spacing:-1px;
  text-transform:lowercase;
}
.oa-most-read-line{flex:1;height:2px;background:#f12b13;display:block;}
.oa-most-read-items{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:28px;
}
.oa-most-read-item{
  position:relative;
  min-height:120px;
  padding-left:52px;
}
.oa-most-read-rank{
  position:absolute;
  left:0;
  top:-14px;
  font-size:110px;
  font-weight:800;
  line-height:1;
  color:#f12b13 !important;
  opacity:0.35 !important;
  -webkit-text-fill-color:#f12b13 !important;
  pointer-events:none;
  user-select:none;
}
.oa-most-read-content{
  position:relative;
  z-index:2;
}
.oa-most-read-cat{
  font-weight:800;
  font-size:14px;
  letter-spacing:0.4px;
  color:#f12b13;
  margin-bottom:6px;
  text-transform:uppercase;
}
.oa-most-read-link{
  display:inline-block;
  font-size:19px;
  font-weight:700;
  line-height:1.15;
  color:#1b1b1b;
}
.oa-most-read-link:hover{ text-decoration:underline; }

/* Responsive */
@media (max-width: 1024px){
  .oa-most-read-title{ font-size:44px; }
  .oa-most-read-items{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .oa-most-read{ padding:18px 14px; }
  .oa-most-read-title{ font-size:34px; }
  .oa-most-read-items{ grid-template-columns: 1fr; gap:18px; }
  .oa-most-read-item{ padding-left:46px; }
  .oa-most-read-rank{
  position:absolute;
  left:0;
  top:-14px;
  font-size:110px;
  font-weight:800;
  line-height:1;
  color:#f12b13 !important;
  opacity:0.35 !important;
  -webkit-text-fill-color:#f12b13 !important;
  pointer-events:none;
  user-select:none;
}
  .oa-most-read-link{ font-size:18px; }
}



.oa-most-read .oa-most-read__rank,
.oa-most-read__item .oa-most-read__rank{
    color:#f12b13 !important;
    opacity:1 !important;
    -webkit-text-fill-color:#f12b13 !important;
}


/* Web Stories - Navegação (setas) */
.oa-story-modal-card{ position: relative; }
.oa-story-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:25;
  transition:transform .15s ease, background .15s ease, opacity .15s ease;
}
.oa-story-nav:hover{
  background:rgba(255,122,0,.85);
  transform:translateY(-50%) scale(1.03);
}
.oa-story-prev{ left:12px; }
.oa-story-next{ right:12px; }
.oa-story-nav.oa-nav-disabled,
.oa-story-nav:disabled{
  opacity:.35;
  cursor:default;
  background:rgba(0,0,0,.35);
  transform:translateY(-50%);
}
.oa-story-nav svg{ display:block; }
@media (max-width: 640px){
  .oa-story-nav{ width:40px; height:40px; }
  .oa-story-prev{ left:8px; }
  .oa-story-next{ right:8px; }
}


/* Full-width divider below Web Stories (keeps stories container width intact) */
.oa-web-stories-divider{
  position:relative;
  height:1px;
  margin:28px 0;
  background:rgba(0,0,0,.12);
}

.oa-web-stories-divider::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background-color:inherit;
  margin-left:0;
  margin-right:0;
}


/* =========================
   WhatsApp Floating Button
   ========================= */
.oa-wa-float, .oa-wa-float * { box-sizing: border-box; }
.oa-wa-float{
  position: fixed;
  bottom: var(--oa-wa-bottom, 24px);
  width: var(--oa-wa-size, 62px);
  height: var(--oa-wa-size, 62px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  background: #25D366;
  color: #fff !important;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.oa-wa-float:hover{
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.oa-wa-float i{
  font-size: calc(var(--oa-wa-size, 62px) * 0.46);
  line-height: 1;
}

/* Position */
.oa-wa-pos-right{ right: var(--oa-wa-side, 24px); }
.oa-wa-pos-left{ left: var(--oa-wa-side, 24px); }

/* Pulse rings like the screenshot */
.oa-wa-float::before,
.oa-wa-float::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius: 999px;
  border: 3px solid rgba(37,211,102,.45);
  opacity: 0;
  transform: scale(.85);
  animation: oaWaPulse 1.8s ease-out infinite;
  pointer-events: none;
}
.oa-wa-float::after{
  inset:-18px;
  border-width: 3px;
  animation-delay: .5s;
  border-color: rgba(37,211,102,.28);
}

@keyframes oaWaPulse{
  0%{ opacity: .85; transform: scale(.72); }
  70%{ opacity: 0; transform: scale(1.25); }
  100%{ opacity: 0; transform: scale(1.25); }
}


/* === Destaque único (1 notícia) === */
.oa-destaque-single {
    width: 100%;
    margin: 18px 0 22px;
}
.oa-destaque-single__inner {
    max-width: var(--oa-container, 1140px);
    margin: 0 auto;
    padding: 0 12px;
    text-align: center;
}
.oa-destaque-single .oa-cats {
    justify-content: center;
}
.oa-pill.oa-pill--destaque {
    background: #c31d14 !important;
    color: #ffffff !important;
}
.oa-destaque-single__title {
    color:#242628 !important;
    margin: 10px 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}
.oa-destaque-single__title a {
    color: inherit;
    text-decoration: none;
}
.oa-destaque-single__excerpt {
    margin: 0 auto 14px;
    max-width: 980px;
    color: #333;
    font-size: 18px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.oa-destaque-single__divider {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.12);
}

/* Responsive */
@media (max-width: 768px) {
    .oa-destaque-single__title { font-size: 26px; }
    .oa-destaque-single__excerpt { font-size: 16px; }
}


/* === OA PATCH: DESTAQUE SINGLE ALIGN/DIVIDER === */
.oa-destaque-single .oa-destaque-single__pillwrap{
    text-align: left;
}
/* mantém título centralizado */
.oa-destaque-single .oa-destaque-single__title{
    text-align: center;
}
/* divisor full width (viewport) */
.oa-destaque-single .oa-destaque-single__divider{
    width: 100%;
    margin-left: 0;
}
/* === /OA PATCH: DESTAQUE SINGLE ALIGN/DIVIDER === */

/* OA – Web Stories ring color */
.web-stories-list .story-circle,
.web-stories-carousel .story-circle,
.oa-webstories .story-circle,
.oa-web-stories .story-circle{
  border-color:#ff6807ff !important;
  outline-color:#ff6807ff !important;
}

/* OA – Forçar vermelho identidade visual */
.oa-section h2,
.oa-section h3,
.oa-section-title,
.oa-section-title::after,
.oa-section-title span,
.oa-section .oa-title{
  color:#f12b13 !important;
  border-color:#f12b13 !important;
}

/* divisor abaixo do autor nos cards */
.oa-card .oa-meta::after,
.oa-card .oa-author::after,
.oa-card .oa-author span::after,
.oa-author-line{
  background:#f12b13 !important;
}

/* OA – Destaque: ajustes solicitados */
.oa-destaque h1,
.oa-destaque h2,
.oa-destaque h3,
.oa-featured h1,
.oa-featured h2,
.oa-featured h3,
.oa-featured-title{
  color:#242628 !important;
}

/* Pílula do destaque */
.oa-destaque .oa-pill,
.oa-destaque .oa-badge,
.oa-featured .oa-pill,
.oa-featured .oa-badge{
  background-color:#c31d14 !important;
  border-color:#c31d14 !important;
  color:#ffffff !important;
}

/* OA – Destaque override (força máxima) */
.oa-destaque-single .oa-destaque-single__title, .oa-destaque-single .oa-destaque-single__title a{color:#242628 !important;}
.oa-destaque-single .oa-pill--destaque{background:#c31d14 !important; border-color:#c31d14 !important; color:#fff !important;}


/* OA – Hover do título (forçado) */
.oa-destaque-single .oa-destaque-single__title:hover,
.oa-destaque-single .oa-destaque-single__title a:hover,
.oa-section h2:hover,
.oa-section h3:hover,
.oa-card-title:hover,
.oa-card-title a:hover{
  color:#df7b00 !important;
}


/* OA – Detalhe abaixo do nome do autor nos cards */
.oa-card .oa-author::after,
.oa-card .oa-meta-author::after,
.oa-card .oa-meta::after,
.oa-author-line{
  background-color:#ff6511 !important;
}


/* === AJUSTE FINAL HEADER NOTÍCIA === */
.oa-post-header-wrap,
.oa-post-header-wrap * {
    font-family: 'Poppins', sans-serif !important;
}

.oa-post-header-wrap [role="heading"],
.oa-post-title {
    font-size: 35px !important;
    font-weight: 500 !important;
}


/* === CORES OFICIAIS REDES SOCIAIS === */
.oa-post-share a.facebook {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.oa-post-share a.twitter {
    background: #000000;
    color: #fff;
    border-color: #000000;
}

.oa-post-share a.whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.oa-post-share a:hover {
    opacity: 0.85;
}


/* === CORES BOTÕES COMPARTILHAMENTO (FIX DEFINITIVO) === */
.oa-post-share .oa-share-btn.facebook {
    background-color: #1877F2 !important;
    border-color: #1877F2 !important;
    color: #ffffff !important;
}

.oa-post-share .oa-share-btn.twitter {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.oa-post-share .oa-share-btn.whatsapp {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #ffffff !important;
}

.oa-post-share .oa-share-btn:hover {
    opacity: .85;
}


/* === FORCE SHARE COLORS (ELEMENTOR SAFE) === */
.oa-post-header-wrap .oa-post-share a.facebook {background:#1877F2!important;color:#fff!important;border-color:#1877F2!important;}
.oa-post-header-wrap .oa-post-share a.twitter  {background:#000!important;color:#fff!important;border-color:#000!important;}
.oa-post-header-wrap .oa-post-share a.whatsapp {background:#25D366!important;color:#fff!important;border-color:#25D366!important;}


/* === OA POST HEADER: SHARE BUTTONS CORES OFICIAIS === */
.oa-post-header__share .oa-share-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: opacity .2s ease, transform .2s ease;
}

.oa-post-header__share .oa-share-btn.facebook { background: #1877F2 !important; border-color: #1877F2 !important; color: #fff !important; }
.oa-post-header__share .oa-share-btn.whatsapp { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; }
.oa-post-header__share .oa-share-btn.email    { background: #6b7280 !important; border-color: #6b7280 !important; color: #fff !important; }

.oa-post-header__share .oa-share-btn:hover { opacity: .85; transform: translateY(-1px); }
.oa-post-header__share .oa-share-btn i { color: inherit !important; font-size: 13px !important; line-height: 1 !important; }


/* === VEJA TAMBÉM | COR PADRÃO === */
.oa-veja-tambem-title,
.oa-veja-tambem-title h2 {
    color: #f55d12ff !important;
}

.oa-veja-tambem-divider,
.oa-veja-tambem-title:after {
    background-color: #f55d12ff !important;
}


/* === FORCE VEJA TAMBÉM (BLOCKSY + ELEMENTOR SAFE) === */
body .oa-veja-tambem-title,
body .oa-veja-tambem-title h2 {
    color: #f55d12ff !important;
}

body .oa-veja-tambem-divider {
    background-color: #f55d12ff !important;
}


/* === FIX DEFINITIVO: ÚLTIMAS NOTÍCIAS PRETO (BLOCKSY) === */
.oa-latest__title {
    --theme-heading-color: #000000;
    color: #000000 !important;
}

.oa-latest__title h1,
.oa-latest__title h2,
.oa-latest__title h3,
.oa-latest__title span {
    color: #000000 !important;
}


/* === PILULA DESTAQUE (COR ATUALIZADA) === */
.oa-pill-destaque,
.oa-pill-featured,
.oa-card .oa-pill.destaque {
    background-color: #ff6807ff !important;
    color: #ffffff !important;
    border-color: #ff6807ff !important;
}


/* === FIX DEFINITIVO: PÍLULA DESTAQUE === */
/* Força cor independente de inline/variável do tema */
.oa-pill,
.oa-pill span,
.oa-card .oa-pill {
    background-color: #ff6807ff !important;
    border-color: #ff6807ff !important;
    color: #ffffff !important;
}


/* === ÚLTIMAS NOTÍCIAS (CORES AJUSTADAS) === */

/* Título do bloco */
.oa-latestnews__head-title,
.oa-latestnews__title,
.oa-latest__title {
    color: #000000 !important;
}

/* Títulos das notícias */
.oa-latestnews__link,
.oa-latestnews__item a {
    color: #ff6807ff !important;
}

.oa-latestnews__item a:hover {
    opacity: .85;
}


/* === FIX FINAL: ÚLTIMAS NOTÍCIAS (BLOCKSY SAFE) === */

/* Título do bloco */
.oa-latestnews,
.oa-latestnews__head,
.oa-latestnews__head-title,
.oa-latest__title {
    --theme-heading-color: #000000;
    color: #000000 !important;
}

/* Links das notícias */
.oa-latestnews,
.oa-latestnews__item {
    --theme-link-initial-color: #ff6807ff;
}

.oa-latestnews__item a,
.oa-latestnews__link {
    color: #ff6807ff !important;
}

.oa-latestnews__item a:hover {
    color: #ff6807ff !important;
    opacity: .9;
}


/* === FIX DEFINITIVO: TÍTULO ÚLTIMAS NOTÍCIAS PRETO === */
/* Esse bloco usa o mesmo head de 'Mais Lidas' (.oa-most-read-head) */
.oa-most-read-head,
.oa-most-read-head h3,
.oa-most-read-title {
    --theme-heading-color: #000000;
    color: #000000 !important;
}

/* Garantia extra caso o tema aplique link/hover */
.oa-most-read-head h3 a {
    color: #000000 !important;
}


/* Ajuste de suavização do título do single */
.oa-single-post-title,
.oa-single-post-title h1 {
    font-weight: 600; /* reduz dureza */
    letter-spacing: -0.2px;
}


/* Ajuste fino: reduzir levemente o tamanho do título do single */
.oa-single-post-title,
.oa-single-post-title h1 {
    font-size: clamp(26px, 3.2vw, 34px);
}


/* Veja também - alinhar cor do divisor com o título */
.oa-veja-tambem-title::after,
.oa-related-title::after,
.oa-veja-tambem-divider {
    background-color: #ff6807 !important;
}


/* =========================================================
   WEB STORIES – Override absoluto do aro (para vencer tema/inline/SVG)
   ========================================================= */
:root{ --oa-webstories-ring:#ff6807ff; }

.web-stories-list .story-circle,
.web-stories-carousel .story-circle,
.oa-webstories .story-circle,
.oa-web-stories .story-circle{
  border: 3px solid var(--oa-webstories-ring) !important;
  outline: 3px solid var(--oa-webstories-ring) !important;
  outline-offset: 0 !important;
  box-shadow: 0 0 0 3px var(--oa-webstories-ring) !important;
}

/* Se o aro for SVG (stroke) */
.web-stories-list .story-circle svg *,
.web-stories-carousel .story-circle svg *,
.oa-webstories .story-circle svg *,
.oa-web-stories .story-circle svg *{
  stroke: var(--oa-webstories-ring) !important;
}

/* Alguns layouts usam pseudo-elementos para o aro */
.web-stories-list .story-circle::before,
.web-stories-carousel .story-circle::before,
.oa-webstories .story-circle::before,
.oa-web-stories .story-circle::before,
.web-stories-list .story-circle::after,
.web-stories-carousel .story-circle::after,
.oa-webstories .story-circle::after,
.oa-web-stories .story-circle::after{
  border-color: var(--oa-webstories-ring) !important;
  background: transparent !important;
  box-shadow: 0 0 0 3px var(--oa-webstories-ring) !important;
}

/* Fallback: se o aro estiver no próprio link/imagem */
.web-stories-list a,
.web-stories-carousel a,
.oa-webstories a,
.oa-web-stories a{
  --ring-color: var(--oa-webstories-ring);
}


/* ===============================
   TV ONLINE PAGE
   =============================== */
.oa-tv-hero{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  margin-bottom:32px;
}
.oa-tv-hero img{
  width:100%;
  height:460px;
  object-fit:cover;
}
.oa-tv-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.15));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:28px;
  color:#fff;
}
.oa-tv-pill{
  background:#ff6807ff;
  padding:6px 16px;
  border-radius:999px;
  font-weight:600;
  width:max-content;
  margin-bottom:10px;
}
.oa-tv-hero-title{
  font-size:32px;
  font-weight:700;
  line-height:1.2;
}
.oa-tv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-bottom:30px;
}
.oa-tv-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.oa-tv-thumb{
  position:relative;
}
.oa-tv-thumb img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.oa-tv-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#fff;
  background:rgba(0,0,0,.25);
}
.oa-tv-title{
  padding:14px;
  font-size:16px;
  font-weight:600;
}
@media(max-width:900px){
  .oa-tv-grid{grid-template-columns:1fr;}
  .oa-tv-hero img{height:280px;}
}


@media (max-width: 560px){
  .oa-tv-hero-overlay{ padding: 16px; }
  .oa-tv-hero-title{ font-size: 22px; line-height: 1.15; }
  .oa-tv-hero-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
  }
  .oa-tv-pill{ padding: 6px 12px; font-size: 12px; }
}



/* TV Online Page title (before hero) */
.oa-tv-page-title{
  margin: 0 0 18px;
}
.oa-tv-page-title .oa-section-title{
  margin: 0;
  font-weight: 700;
  color: #242628;
}
.oa-tv-page-title .oa-section-divider{
  height: 3px;
  width: 100%;
  background: #ff6807ff;
  margin-top: 8px;
  border-radius: 999px;
}


.oa-tv-page-head{margin-bottom:14px;}


/* ===== TV ONLINE FIX: evita overlay cinza (corrige .oa-tv-play global) ===== */
.oa-tv-online .oa-thumb,
.oa-tv-online-page-grid .oa-thumb{
  position: relative !important;
  display: block !important;
}
.oa-tv-play{
  position: absolute !important;
  left: 12px !important;
  top: 12px !important;
  inset: auto !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,.55) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
  border: 1px solid rgba(255,255,255,.25) !important;
}
.oa-tv-play i{
  color:#fff !important;
  font-size:16px !important;
}


/* OA Social Card – fundo preto */
.oa-social-card{
  background-color:#000000 !important;
}


/* OA Social Card – backup override (in case inline style changes) */
.oa-siga-card{ background-color:#000000 !important; }


/* TV Online - Botão +Vídeos */
.oa-tv-more-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:18px 0 4px;
  grid-column:1 / -1;
}
.oa-tv-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 22px;
  border-radius:999px;
  font-family:Poppins,system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  font-weight:700;
  font-size:14px;
  text-decoration:none !important;
  border:2px solid #ff6807ff;
  color:#ff6807ff;
  background:transparent;
  transition:transform .15s ease, background-color .15s ease, color .15s ease;
}
.oa-tv-more-btn:hover{
  transform:translateY(-1px);
  background-color:#ff6807ff;
  color:#ffffff;
}


/* Página GN TV - não transformar título em minúsculo */
.oa-tv-page-head .oa-most-read-title{ text-transform:none !important; }


/* ===============================
   OA Post Header – ajuste de título
   v1.3.57
================================ */
.oa-post-header h1,
.oa-post-header .oa-post-title {
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1.25;
    letter-spacing: -0.2px;
    color: #242628;
}

@media (min-width: 1200px) {
    .oa-post-header h1,
    .oa-post-header .oa-post-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .oa-post-header h1,
    .oa-post-header .oa-post-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}

/* FIX: permitir maiúsculas nos títulos das seções */
.oa-section-title,
.oa-section-title h2,
.oa-section-title h3 {
    text-transform: none !important;
}

/* FIX DEFINITIVO: respeitar maiúsculas nos títulos (Blocksy + OA) */
.oa-section-title,
.oa-section-title *,
.oa-section-title h1,
.oa-section-title h2,
.oa-section-title h3,
.oa-section-title h4,
.oa-section-title h5,
.oa-section-title h6,
.ct-section-title,
.ct-section-title * {
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* FIX: respeitar maiúsculas/minúsculas exatamente como digitado nas Configurações */
.oa-most-read-title,
.oa-latestnews__title,
.oa-tv-hero-title,
.oa-story-title,
.oa-destaque-single__title,
.oa-siga-title,
.oa-title,
.oa-title * {
    text-transform: none !important;
}



/* Banners rotativos (444x185) */
.oa-banners{ width:100%; max-width:444px; margin: 0 auto; }
.oa-banners-track{ position:relative; width:100%; aspect-ratio: 444 / 185; overflow:hidden; border-radius: 0; background: #f2f2f2; }
.oa-banners .oa-banner{ position:absolute; inset:0; display:block; opacity:0; transform: translateZ(0); transition: opacity .45s ease; }
.oa-banners .oa-banner.is-active{ opacity:1; }
.oa-banners .oa-banner img{ width:100%; height:100%; object-fit: cover; display:block; }


/* OA BANNERS – force square corners (override theme styles) */
.oa-banners,
.oa-banners figure,
.oa-banners picture,
.oa-banners img,
.oa-banners a,
.oa-banners-track{
  border-radius: 0 !important;
}

.oa-banners-track{ overflow:hidden !important; }

.oa-banners img{
  clip-path: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}


/* === FIX MOBILE: evitar que OA Social Card / Veja Também subam por cima de vídeo no Elementor === */
@media (max-width: 782px){
  /* dentro de container flex do Elementor, força ocupar linha inteira */
  .elementor .oa-social-card,
  .elementor .oa-siga-card,
  .elementor .oa-veja-tambem{
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-top: 18px !important;
    position: relative !important;
    z-index: 1 !important;
  }
  /* se o bloco anterior for vídeo/embed, garante respiro sem mexer na altura do vídeo */
  .elementor .elementor-widget-video + .elementor-widget-shortcode .oa-social-card,
  .elementor .elementor-widget-video + .elementor-widget-shortcode .oa-veja-tambem,
  .elementor .elementor-widget-html + .elementor-widget-shortcode .oa-social-card,
  .elementor .elementor-widget-html + .elementor-widget-shortcode .oa-veja-tambem{
    margin-top: 22px !important;
  }
}


/* OA FIX: prevent divider overflow breaking layouts with sidebars */
.oa-destaque-single__divider{max-width:100%;}
