/* Widget de clima minimalista - barra superior. Reverter: apagar pasta clima/. */
.fone-clima-col {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
.fone-clima-col .fone-sup {
  margin-top: 0;
  white-space: nowrap;
}
#clima-widget {
  display: none;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
#clima-widget.clima-pronto {
  display: flex;
}
#clima-widget .clima-icone {
  width: 1.9rem;
  height: 1.9rem;
  line-height: 1;
  flex: 0 0 auto;
}
#clima-widget .clima-icone svg {
  width: 100%;
  height: 100%;
  display: block;
}
#clima-widget .clima-temp {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

@media only screen and (max-width: 480px) {
  .fone-clima-col {
    flex-wrap: wrap;
    margin-top: 1rem;
  }
}
