/* Verax Weather Bar — topo azul com fonte INMET */
.verax-weather-bar{
  --weather-red:#F24D2A;
  --weather-blue:#0b4f8a;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
  min-width:0;
  max-width:100%;
  color:inherit;
  font-family:var(--font-body, Inter, Arial, sans-serif);
  font-size:.78rem;
  line-height:1.15;
  opacity:.96;
  white-space:nowrap;
}

.verax-weather-bar__main{
  display:flex;
  align-items:center;
  gap:.42rem;
  min-width:0;
}

.verax-weather-bar__icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  color:#fff;
  flex:0 0 auto;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.15);
}

.verax-weather-bar__icon svg{
  width:15px;
  height:15px;
}

.verax-weather-bar__text{
  display:flex;
  align-items:center;
  gap:.25rem;
  min-width:0;
}

.verax-weather-bar__label{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  opacity:.76;
}

.verax-weather-bar__temp{
  font-weight:900;
  letter-spacing:-.015em;
}

.verax-weather-bar__city{
  font-weight:900;
}

.verax-weather-bar__source{
  font-size:.68rem;
  opacity:.68;
  margin-left:.18rem;
}

.verax-weather-bar__locate{
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  font-size:.68rem;
  font-weight:800;
  padding:0;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:2px;
  opacity:.78;
}

.verax-weather-bar__locate:hover{
  opacity:1;
}

.verax-weather-bar__sponsor{
  display:flex;
  align-items:center;
  gap:.25rem;
  opacity:.8;
  font-size:.68rem;
}

.verax-weather-bar.is-loading .verax-weather-bar__temp,
.verax-weather-bar.is-loading .verax-weather-bar__city{
  opacity:.72;
}

@media (max-width:900px){
  .verax-weather-bar__source,
  .verax-weather-bar__locate{
    display:none;
  }
}

@media (max-width:760px){
  header > div:first-child .container{
    flex-wrap:wrap;
    gap:.35rem .75rem;
  }

  .verax-weather-bar{
    order:3;
    width:100%;
    justify-content:flex-start;
    font-size:.76rem;
  }

  .verax-weather-bar__text{
    flex-wrap:wrap;
  }
}

@media (max-width:420px){
  .verax-weather-bar__label,
  .verax-weather-bar__source,
  .verax-weather-bar__locate{
    display:none;
  }
}


/* V8 — oferecimento configurável via Banners > posição "Barra do Tempo" */
.verax-weather-bar__sponsor{
  border-left:1px solid rgba(255,255,255,.22);
  padding-left:.65rem;
  margin-left:.15rem;
}

.verax-weather-bar__sponsor a,
.verax-weather-bar__sponsor span{
  color:inherit;
  text-decoration:none;
  font-weight:800;
  opacity:.88;
}

.verax-weather-bar__sponsor a:hover{
  text-decoration:underline;
  text-underline-offset:2px;
  opacity:1;
}

@media (max-width:980px){
  .verax-weather-bar__sponsor{
    display:none !important;
  }
}
