@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap");
@import url("https://fonts.cdnfonts.com/css/gotham");
@import url("https://fonts.cdnfonts.com/css/satoshi");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "MontSerrat", sans-serif;
}

.hamburger-menu {
  display: none;
}

.app-iphones a {
  display: flex;
}

#nav-mobile {
  display: none;
}

#nav-mobile.active {
  transform: translateX(0);
}

.destaque-atual {
  display: none;
}

.pagination-lines {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.line {
  width: 40px;
  height: 4px;
  background-color: #0a2b5b;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.line:hover {
  background-color: #16386d;
  cursor: pointer;
}

.line.selected {
  background-color: #fff;
  box-shadow: none;
}

.image-box {
  background-color: #061b3a;
  padding: 24px;
  border-radius: 12px;
  width: fit-content;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
}

.player-info {
  color: white;
  margin-top: 20px;
  padding-left: 60px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-left: 1px solid #fff;
}

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 8px;
}

.dot-status {
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  animation: pulsarDot 2s ease-in-out infinite;
}

@keyframes pulsarDot {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.status strong {
  margin-left: 4px;
  color: #ffcc63;
}

.player-info h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.player-info p {
  margin-top: 0;
  font-size: 16px;
  color: #ccc;
}

.buttons-player {
  display: flex;
  gap: 16px;
}

.buttons-player button {
  background-color: #ffcc63;
  color: #061b3a;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s;
}

.buttons-player button:hover {
  transform: scale(1.05);
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #061b3a;
}

.container {
  width: 90%;
  max-width: 1134px;
  margin: auto;
}

.logo {
  width: 180px;
  height: auto;
}

header {
  color: #fff;
  padding: 10px 0;
  margin-top: 20px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 200;
  font-size: 15px;
  line-height: 28px;
}

header nav ul li {
  display: inline;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 25px;
}

.selected-header {
  background: #e70048;
  border-radius: 45px;
  box-shadow: inset 0px 0px 12.4px rgba(0, 0, 0, 0.3);
}

.textos-mobile-pos-imagem {
  display: none;
  /* Escondido no desktop */
}

.destaque {
  color: white;
  margin-bottom: 30px;
}

.imagem {
  min-width: 580px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("images/imagens_player/player_1.png");
  background-size: cover;
  border-radius: 50%;
  background-position: center;
  position: relative;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  /* cor inicial */
}

.playing {
  animation: pulsar 1.5s ease-in-out infinite;
}

.imagem .play-btn {
  position: absolute;
  top: 60%;
  left: 0%;
  width: 140px;
  height: 140px;
  transition: all 0.3s ease;
}

.play-btn img {
  width: 100%;
  height: 100%;
}

.play-btn:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.play-btn:active {
  transition: all 0.1s ease;
  transform: scale(0.95);
  filter: brightness(0.9);
}

.imagem .play-btn a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  box-sizing: border-box;
  width: fit-content;
}

.destaque .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 20px;
}

.textos-container {
  position: relative;
  width: 50%;
  min-height: 300px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destaque .container .texto {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
}

.texto {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: 100%;
}

.texto-atual {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.destaque .container .texto p {
  margin: 20px 0;
  width: 90%;
  letter-spacing: 2px;
  word-spacing: 2px;
  text-align: justify;
  line-height: 1.5;
  font-size: 0.8em;
}

.destaque-noticias {
  font-weight: bolder;
}

#destaque-tudo {
  font-weight: bolder;
  color: #ffcc63;
  word-spacing: 1px;
}

.confirm-button {
  background-color: #ffcc63;
  color: #061b3a;
  font-size: 0.7em;
  border: none;
  padding: 10px 20px;
  border-radius: 45px;
  font-weight: 800;
  padding: 15px 53px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 20px;
}

.confirm-button:hover {
  transform: scale(1.05);
}

.redes {
  width: 100%;
  height: 120px;
  background-image: url("images/redesfundo.png");
  background-size: cover;
  margin-bottom: 50px;
  background-position: center;
  background-repeat: no-repeat;
}

.fundo-redes {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Fundo amarelo */
.amarelo {
  position: absolute;
  top: 20;
  left: 0;
  width: 100%;
  height: 90%;
  transform: rotate(1deg);
  background-color: #ffc85f;
  box-shadow: inset 0px 0px 12.4px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Faixa vermelha inclinada */
.vermelho {
  position: absolute;
  top: 20;
  left: 0;
  width: 120%;
  height: 90%;
  background-color: #e70048;
  transform: rotate(-1deg);
  z-index: 1;
  box-shadow: inset 0px 0px 12.4px rgba(0, 0, 0, 0.5);
}

/* Conteúdo */
.conteudo {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.conteudo button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: white;
  color: #f41d4e;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.redes-highlight {
  color: #ffcc63;
}

.redes-icons {
  width: fit-content;
  display: flex;
  margin-top: 35px;
  gap: 0;
  align-items: center;
}

.redes-icons a {
  text-decoration: none;
  height: fit-content;
  padding: 0px 40px;
}

#facebook {
  height: 40px;
  border-left: 3px solid #b40038;
  border-right: 3px solid #b40038;
}

.video-js .vjs-tech {
  border-radius: 20px;
}

.vjs-poster img {
  border-radius: 20px;
}

#facebook img {
  height: 90%;
  margin: -2px 0 0 0;
}

#instagram img {
  height: 100%;
}

.redes-icons a img {
  width: 150px;
  height: 100%;
}

.video-play {
  margin-top: 120px;
}

.video-play .container h2 {
  color: #ffcc63;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
}

.video-play .container p {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  margin-top: 20px;
}

#video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contornada {
  color: rgba(0, 0, 0, 0);
  /* Mantém o texto transparente */
  font-family: "Arial", sans-serif;
  /* Mantém a fonte */
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff,
    -1px 1px 0 #fff, 1px 1px 0 #fff;
}

#red-fill {
  color: #e40047;
}

#blue-fill {
  color: #061b3a;
}

#prog-fill {
  color: #09234a;
}

.texto-destaque {
  color: #ffcc63;
  font-weight: 700;
}

.video {
  width: 100%;
  max-width: 1134px;
  height: 600px;
  background-color: black;
  border-radius: 20px;
  border: white 5px solid;
  margin-top: 100px;
}

.linha-horizontal {
  width: 80%;
  max-width: 800px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  margin: 140px auto 130px auto;
}

.eventos .container h2 {
  color: #ffcc63;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 38px;
  margin: 80px 0;
}

.evento-card {
  background: #bdbdbd;
  border-radius: 8px;
  border: 4px solid #fff;
  min-height: 150px;
  aspect-ratio: 16/9;
  display: none;
  /* escondido por padrão */
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: #888;
  position: relative;
  user-select: none;
  overflow: hidden;
}

.evento-card.visible {
  display: flex;
}

/* Overlay para informações do evento no hover */
.evento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.evento-card:hover .evento-overlay {
  opacity: 1;
}

.evento-info {
  padding: 15px;
  color: white;
  text-align: center;
  width: 100%;
  font-size: 0.8em;
}

.evento-nome {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 8px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.evento-local,
.evento-horario {
  font-size: 0.9em;
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.evento-local i,
.evento-horario i {
  font-size: 0.8em;
  opacity: 0.9;
}

/* mostra só os visíveis */

.eventos .container p {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

button#prevBtn,
button#nextBtn {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 10px 18px;
  margin: 0 10px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.paginationDots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
}

.box-rede a {
  display: inline;
  text-decoration: none;
  color: #fff;
}

.anuncios {
  margin-top: 50px;
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.anuncios-box {
  display: flex;

  gap: 50px;
  align-items: center;
  animation: slideInfinite 20s linear infinite;
  width: max-content;
  will-change: transform;
}

.anuncios-box-original,
.anuncios-box-duplicacao {
  display: flex;
  width: max-content;
  gap: 50px;
  align-items: center;
}

.anuncios-box:hover {
  animation-play-state: paused;
}

.noticia-ultima-att {
  font-weight: 700;
}

.noticia-categoria {
  font-weight: 600;
  padding-top: 7px;
  padding-right: 7px;
  padding-bottom: 7px;
  border-right: 2px solid #ffcc63;
}

.ultima-att {
  color: #ffcc63;
}

@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.anuncio-card {
  color: #353535;
  background-color: #ffffff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  width: 585px;
  height: 180px;
  flex: 0 0 585px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.anuncio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.noticias {
  background-color: #e40047;
  height: auto;
  padding-bottom: 150px;
  padding-top: 80px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 90%);
  /* box-shadow: inset 0px 0px 12.4px rgba(0, 0, 0, 0.68); */
}

.noticias-texto {
  font-size: 4em;
  line-height: 0.7;
  margin-bottom: 50px;
}

.destaque-texto {
  color: #ffcc63;
  font-size: 1.2em;
}

.noticias-botao {
  background-color: #ffcc63;
  border: none;
  color: #e40047;
  font-size: 0.3em;
  font-weight: bold;
  padding: 20px 52px;
  border-radius: 45px;
}

.noticias-botao-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.noticias-botao-box p {
  font-size: 0.3em;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.noticias-texto {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.noticias-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.noticias-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.noticia-card.grande {
  width: calc(100% - 80px);
  max-width: 527px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  gap: 20px;
}

.noticias-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.noticia-card.pequeno {
  width: calc(100% - 150px);
  max-width: 327px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  gap: 20px;
}

.pequeno .noticia-img {
  height: 65%;
  width: 100%;
  background-color: black;
  border-radius: 20px;
  border: 3px solid #ffffff;

  background-size: cover;
  background-position: center;
}

.grande .noticia-img {
  height: 75%;
  width: 100%;
  background-color: black;
  border-radius: 20px;
  border: 3px solid #ffffff;
  background-size: cover;
  background-position: center;
}

.noticia-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.grande h3 {
  margin: 0;
  font-size: 1.5em;
}

.noticias-ver-mais-botao {
  background-color: #061b3a;
  padding: 15px 85px;
  border: none;
  border-radius: 45px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  transition: all 0.3s ease;
}

.noticias-ver-mais-botao:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.noticias-ver-mais-botao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 60px auto 10px;
}

.anuncie-texto h2 {
  font-size: 4em;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 20px;
}

.linha-horizontal-anuncie {
  width: 300px;
  height: 2px;
  background: #ffcc63;
}

.linha-horizontal-potencialize {
  width: 300px;
  height: 4px;
  background: #ffffff;
  border-radius: 15px;
}

/* Classes específicas para cada linha com margins responsivas */
.linha-destaque-1 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.linha-destaque-2,
.linha-destaque-3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
  .linha-horizontal-potencialize {
    width: 250px;
  }

  .linha-destaque-1 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .linha-destaque-2,
  .linha-destaque-3 {
    margin-top: 15px;
    margin-bottom: 8px;
  }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
  .linha-horizontal-potencialize {
    width: 200px;
    height: 3px;
  }

  .linha-destaque-1 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .linha-destaque-2,
  .linha-destaque-3 {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

.anuncie-conosco {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#linha-white {
  color: #ffff;
}

.potencialize {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.potencialize p {
  color: #ffffff;
  font-size: 1em;
}

.anuncie-form {
  background-color: #051634;
  padding: 40px 0;
  font-family: "Arial", sans-serif;
}

.anuncie-form .container {
  max-width: 1135px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.form-anuncie {
  display: flex;
  gap: 40px;
  width: 100%;
  color: white;
  margin: 60px 0 40px 0;
}

.form-left {
  color: #ffffff;
  width: 50%;
  gap: 10px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.form-left label {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 200;
}

.form-right label {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 200;
}

.form-left input {
  height: 60px;
  width: 100%;
  background-color: #051634;
  border: 2px solid #ffffff;
  border-radius: 45px;
  padding: 0 20px;
  font-size: 1.3em;
  color: #ffffff;
}

.form-right textarea {
  height: 60%;
  width: 100%;
  background-color: #051634;
  border: 2px solid #ffffff;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 1.3em;
  color: #ffffff;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.btn {
  padding: 15px 50px;
  width: calc(50% - 40px);
  flex-grow: 1;
  border-radius: 37px;
  background-color: #ffcc63;
  color: #061b3a;
  font-weight: bold;
  border: none;
}

.btn:hover {
  cursor: pointer;
}

.form-right {
  height: 400px;
  width: 50%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.publicidade-card {
  width: 100%;
  height: 300px;
  display: none;
  background-color: #a8a8a8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pub-show {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
}

.publicidade-slider-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slider-controls {
  gap: 20px;
}

.publicidade-dot {
  width: 15px;
  height: 15px;
  background-color: #0b2d60;
  border-radius: 50%;
  margin-top: 50px;
  margin-bottom: 50px;
  cursor: pointer;
}

.selected {
  box-shadow: 0 0 10px #ffcc63;
  background-color: #ffcc63;
}

.app {
  width: 100%;
  height: 540px;
  background-image: url("images/banner_app.png");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0px 0px 12.4px rgba(0, 0, 0, 0.68);
}

.app-texto {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

.app-texto h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-align: left;
}

.app-texto p {
  font-size: 1.1em;
  font-weight: 400;
  text-align: left;
  width: 80%;
}

.app-texto p strong {
  font-weight: 700;
}

.app .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 50px;
}

.app-iphones {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.app-iphones img {
  height: 500px;
}

.linha-horizontal-app {
  width: 150px;
  height: 6px;
  border-radius: 3px;
  background: #ffcc63;
}

.mapa-container {
  width: 430px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

footer {
  background-color: #09234a;
}

footer .container {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: "Satoshi";
  display: flex;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mapa-container {
  margin-top: 40px;
}

footer h4 {
  color: white;
  font-size: 1.7em;
}

.linha-horizontal-footer {
  width: 50px;
  height: 4px;
  background-color: #ffcc63;
  border-radius: 2px;
  margin-top: 10px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 30px;
  color: #ffffff;
  font-size: 0.8em;
  padding-right: 80px;
  border-right: 2px solid #061b3a;
}

.footer-right {
  display: flex;
  justify-content: center;
  width: 50%;
  gap: 120px;
  padding-left: 80px;
  color: #ffffff;
  font-size: 0.8em;
  list-style: none;
}

.footer-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.footer-right ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  box-sizing: border-box;
  display: block;
  font-size: 1.5em;
}

.siga-ferramentas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-direction: column;
}

.siga-ferramentas .siga-nos .linha-horizontal-footer {
  margin-bottom: 30px;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 1000;
  transition: bottom 0.5s ease-in-out;
}

@keyframes pulsar {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.4);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(255, 0, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 128, 0);
  }
}

.radio-player-bar {
  background-color: #1e1e1e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  font-family: "Montserrat", sans-serif;
  border-top: 3px solid #e70048;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.radio-player-bar.visible {
  transform: translateY(0);
}

.radio-player-bar.hidden {
  transform: translateY(100%);
}

.radio-player-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9em;
  flex: 1;
}

.radio-player-live {
  color: #e70048;
  font-weight: bold;
  margin-bottom: 4px;
}

.radio-player-title {
  font-size: 1.1em;
  font-weight: bold;
}

.radio-player-play-btn {
  background-color: #e70048;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.4em;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.radio-player-play-btn:hover {
  transform: scale(1.05);
}

#radioVolume {
  width: 120px;
  cursor: pointer;
  accent-color: #e70048;
}

.radio-player-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
}

.radio-player-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e70048;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
  font-size: 1.5em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.radio-player-indicator:hover {
  transform: scale(1.1);
}

.radio-player-indicator.visible {
  display: flex;
}

/* Estilos para mensagens do formulário */
.mensagem-formulario {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

.mensagem-formulario .icone {
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.mensagem-formulario .texto {
  flex: 1;
  white-space: pre-line;
}

.mensagem-formulario .fechar {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 12px;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.mensagem-formulario.mensagem-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mensagem-formulario.mensagem-success .fechar {
  color: #155724;
}

.mensagem-formulario.mensagem-success .fechar:hover {
  background-color: rgba(21, 87, 36, 0.1);
}

.mensagem-formulario.mensagem-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.mensagem-formulario.mensagem-error .fechar {
  color: #721c24;
}

.mensagem-formulario.mensagem-error .fechar:hover {
  background-color: rgba(114, 28, 36, 0.1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-anuncie input:focus,
.form-anuncie textarea:focus {
  outline: none;
  border-color: #ffcc63;
  box-shadow: 0 0 0 3px rgba(255, 204, 99, 0.2);
}

.form-anuncie input::placeholder,
.form-anuncie textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #cccccc;
  color: #666666;
}

.btn:not(:disabled):hover {
  background-color: #e6b84d;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.erro-texto {
  color: #e40047;
  text-shadow: black 1px 1px 2px;
  font-size: 1.1em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sucesso-texto {
  color: #4be783;
  text-shadow: black 1px 1px 2px;
  font-size: 1.1em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#footer-copyright {
  background-color: rgba(0, 0, 0, 0, 0);
  color: #fff;
  padding: 20px 0;
  display: flex;
}

.copyright-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.5);
}

.copyright-box ul {
  list-style: none;
  display: flex;
  gap: 0;
}

.copyright-box ul li a {
  display: flex;
  padding: 0 5px;
  border-right: rgba(255, 255, 255, 0.5) 1px solid;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.copyright-box ul li:last-child a {
  border: none;
}

/* Estilos Aba Notícias */

.campo-pesquisa {
  padding: 15px 75px;
  border-radius: 54px;
  position: relative;
  border: none;
}

.btn-pesquisa {
  position: absolute;
}

/* ============================================
   ESTILOS PARA BARRA DE PESQUISA
   ============================================ */

.barra-pesquisa {
  background: #061b3a;
  padding: 30px 0;
}

.pesquisa-form {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}

.search-container {
  position: relative;
  width: 45%;
}

.search-container input:focus+button+.sugestoes-container,
.search-container .sugestoes-container:hover {
  display: block;
}

.campo-pesquisa {
  width: 100%;
  padding: 15px 60px 15px 20px;
  /* Espaço extra à direita para o botão */
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
  color: #333;
  box-sizing: border-box;
}

.campo-pesquisa:focus {
  border-color: #e70048;
  box-shadow: 0 0 0 3px rgba(231, 0, 72, 0.2);
}

.campo-pesquisa::placeholder {
  color: #999;
}

.btn-pesquisa {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #e70048;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-pesquisa:hover {
  background: #c30039;
  transform: translateY(-50%) scale(1.05);
}

.btn-pesquisa:active {
  transform: translateY(-50%) scale(0.95);
}

.btn-pesquisa svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   ESTILOS PARA SUGESTÕES DE PESQUISA
   ============================================ */

.sugestoes-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.sugestao-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.sugestao-item:last-child {
  border-bottom: none;
}

.sugestao-item:hover {
  background-color: #f8f9fa;
}

.sugestao-item.active {
  background-color: #e3f2fd;
}

.sugestao-imagem {
  width: 50px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.sugestao-conteudo {
  flex: 1;
  min-width: 0;
}

.sugestao-titulo {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 0 4px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sugestao-categoria {
  font-size: 12px;
  color: #e70048;
  font-weight: 500;
  margin-bottom: 2px;
}

.sugestao-data {
  font-size: 11px;
  color: #999;
}

.sem-sugestoes {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

.loading-sugestoes {
  padding: 15px 20px;
  text-align: center;
  color: #666;
}

.loading-sugestoes::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #e70048;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.noticia-box .container {
  height: 450px;
  display: flex;
}

.imagem-fundo-efeito {
  height: 100%;
  width: 45%;
  background-image: url("images/noticia-placeholder.png");
  opacity: 0.5;
  background-size: cover;
  background-position: 10px;
  position: absolute;
  right: 0;
  left: auto;
  z-index: -1;
}

.imagem-fundo-efeito::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(6, 27, 58, 1) 0%,
      rgba(6, 27, 58, 0.8) 30%,
      rgba(6, 27, 58, 0.2) 70%,
      rgba(6, 27, 58, 0) 100%);
}

.btn-noticias {
  color: #fff;
  font-size: 4em;
  margin: 20px;
  transition: all 0.3s ease;
  user-select: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.btn-noticias:active {
  transform: scale(0.95);
}

/* Sobre Nós */

.title-page {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: #fff;
  margin-top: 45px;
}

.title-page h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 200;
}

.title-destaque-secoes {
  font-size: 2em;
  color: #ffcc63;
  font-weight: 800;
}

.linha-pequena-horizontal-branca {
  width: 133px;
  height: 11px;
  background-color: #fff;
  border-radius: 25px;
  margin-top: 80px;
}

.box-sobre-texto {
  text-align: justify;
  font-size: 1.7em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-top: 80px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 2;

  width: 80%;
  margin: 80px auto;
}

.primeira-letra {
  color: #ffcc63;
  font-size: 1.6em;
  font-weight: 800;
}

/* Anunciantes */

.anunciantes-box-title {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 110px auto;
}

.anunciantes-text {
  font-size: 3em;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 800;
  color: #ffcc63;
}

.linha-horizontal-anunciantes {
  width: 250px;
  height: 6px;
  background-color: #09234a;
  border-radius: 32px;
}

.efeito-footer {
  height: 140px;
  width: 100%;
  position: relative;
}

.vermelho-footer {
  position: absolute;
  background-color: #e70048;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

.amarelo-footer {
  position: absolute;
  background-color: #ffcc63;
  width: 100%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(0 30%, 100% 100%, 100% 100%, 0 100%);
}

.container-contato {
  width: 80%;
  margin: auto;
  font-family: "Montserrat", sans-serif;
}

.container-contato p {}

.contato-descricao {
  color: #fff;
  text-align: center;
  font-weight: 200;
  font-size: 1.4em;
  margin: 70px 0;
}

.box-sub-title {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
}

.anuncie-fake-btn {
  width: 70%;
  max-width: 442px;
  font-weight: 800;
  font-size: 1.4em;
  padding: 20px 52px;
  background-color: #ffcc63;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
}

.box-sub-info {
  flex: 1;
  color: #fff;
  font-size: 1.4em;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.destaque-sub {
  font-weight: 700;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.form-top {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  margin-bottom: 60px;
}

.form-top img {
  width: 37px;
  height: 37px;
}

.form-top h3 {
  font-size: 1.3em;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input label {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

.form-input input,
.form-input select {
  padding: 20px 25px;
  border-radius: 45px;
  font-size: 1.5em;
}

.form-input textarea {
  padding: 10px 25px;
  height: 150px;
  border-radius: 10px;
  font-size: 1.2em;
}

#arquivo {
  color: white;
}

.custom-file-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

input[type="file"]#arquivo {
  display: none;
}

.custom-file-button {
  background-color: #ffc857;
  color: #000;
  padding: 12px 25px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.custom-file-button:hover {
  background-color: #fcbf49;
}

.upload-icon {
  width: 20px;
  height: 20px;
}

#file-name {
  color: #ccc;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
}

.linha-horizontal-form {
  margin-top: 50px;
  height: 2px;
  width: 100%;
  background-color: rgb(204, 204, 204);
  border-radius: 25px;
}

.form-box-check {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Montserrat", sans-serif;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
  font-size: 1em;
  line-height: 1.5em;
}

/* Oculta o checkbox original */
.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin-top: 3px;
  padding: 5px;
}

/* Checkmark com ::after */
.check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Estilo do texto de destaque */
.check .destaque {
  color: #ffc857;
  font-weight: bold;
  cursor: pointer;
}

.form-box-submit {
  display: flex;
  justify-content: flex-end;
}

.form-section {
  margin-bottom: 50px;
}

#botao-envio {
  background-color: #ffcc63;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 45px;
  border: none;
  gap: 10px;
  align-self: flex-end;
}

#botao-envio span {
  font-weight: 600;
  font-size: 1.2em;
}

#botao-envio img {
  width: 30px;
  height: 30px;
}

.contato-box {
  padding-bottom: 70px;
}

.categoria-box {
  margin-top: 40px;
  margin-bottom: 45px;
}

.categoria {
  width: fit-content;
  background-color: #ffcc63;
  padding: 10px 20px;
  font-size: 1.2em;
  border-radius: 25px;
  font-family: "Montserrat";
  margin: auto;
}

#categoria-text {
  font-weight: 700;
  color: #061b3a;
}

.titulo-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#titulo-text {
  color: #fff;
  font-family: "Montserrat";
  font-size: 2.5em;
  text-align: justify;
  font-weight: 600;
}

#subtitulo-text {
  color: #fff;
  font-family: "MontSerrat";
  font-weight: 400;
  font-size: 1.4em;
}

#titulo-info {
  color: #fff;
  font-family: "MontSerrat";
  font-weight: 600;
  font-size: 1.15em;
}

#titulo-destaque {
  color: #ffcc63;
}

.redes-box-titulo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  height: 60px;
  margin-top: 45px;
}

.box-rede {
  color: #fff;
  background-color: #092857;
  font-family: "Montserrat";
  font-weight: 600;
  height: auto;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.noticia-corpo {
  margin-top: 60px;
}

.noticia-corpo-imagem {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url("images/noticia-placeholder-selecionada.png");
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  border: #fff 3px solid;
}

.noticia-corpo p {
  font-family: "MontSerrat";
  color: #fff;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
  margin-top: 5px;
}

.noticia-corpo p br {
  display: block;
  margin-bottom: 15px;
  content: "";
}

#primeira-letra-noticia {
  color: #ffcc63;
  font-size: 1.6em;
  font-weight: 800;
}

.ultimas-noticias-selecionada {
  margin-top: 70px;
  height: 300px;
  background-color: #c30039;
  width: 100%;
}

.mais-noticias {
  margin-top: 80px;
  margin-bottom: 80px;
}

.ultimas-noticias-selecionada .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.box-ultimas-noticias-selecionada {
  display: flex;
  align-items: center;
  color: white;
  width: fit-content;
  padding: 5px 20px;
  font-family: "Montserrat";
  width: 100%;
}

.box-ultimas-noticias-text {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.box-ultimas-noticias-text h3 {
  font-size: 1.4em;
}

.box-ultimas-noticias-text h4 {
  font-size: 1.2em;
  font-weight: 400;
  width: fit-content;
  padding-right: 20px;
  border-right: 3px solid #ffcc63;
}

.programacao {
  margin-top: 80px;
  margin-bottom: 80px;
}

.dia {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
  background-color: #0a2b5b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.seletor-dia-prog {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.programacao-box-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.programacao-card {
  height: 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.programacao-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: blue;
  border-radius: 25px;
  flex-shrink: 0;
}

.programacao-card-info {
  font-family: "Montserrat";
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 40px;
  justify-content: space-between;
  border-left: 3px solid #fff;
  gap: 15px;
  color: #fff;
}

#noticias-programacao {
  height: 850px;
  background-color: #09234a;
  clip-path: none;
  border-bottom: 4px solid #fff;
}

.linha-horizontal-programacao {
  width: 10%;
  height: 4px;
  border-radius: 25px;
  background-color: #ffcc63;
}

#noticias-programacao .noticias-botao {
  color: #061b3a;
}

/* Notícias */
.noticia-em-destaque {
  font-family: "MontSerrat";
  width: 60%;
  color: white;
  font-size: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}

.slider-control-noticia-em-destaque {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.line-noticias {
  width: 9%;
  border-radius: 25px;
  height: 6px;
  background: #0a2b5b;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.line-noticias:hover {
  background-color: #16386d;
}

.line-noticias.active-slide {
  background-color: #fff;
}

#categoria-noticias {
  padding: 10px 30px;
  border-left: 2px solid #fff;
  color: #ffcc63;
}

#chamada-noticias {
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s ease;
}

#chamada-noticias:hover {
  color: #ffcc63;
}

#destaque-noticia-descricao {
  font-size: 0.7em;
  font-weight: 700;
}

.clima-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-top: 30px;
}

.clima-icons {
  display: flex;
  gap: 40px;
}

.clima-icons img {
  height: 150px;
}

.temperatura-box {
  display: flex;
}

#temperatura-valor {
  font-size: 8em;
  font-family: "Gotham";
  font-weight: bold;
  color: #ffcc63;
}

.temperatura-infos {
  color: #fff;
  font-weight: 500;
  font-size: 1.3em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  font-family: "Montserrat";
  padding-top: 25px;
}

.info {
  font-weight: 200;
}

.temperatura-buttons {
  padding-top: 25px;
}

.temperatura-buttons button {
  background-color: transparent;
  border: none;
  font-size: 1.2em;
  color: #fff;
}

.clima-cidade {
  color: #ffcc63;
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Montserrat";
  margin-top: 20px;
}

#data-atualizacao {
  color: #fff;
  font-weight: 200;
  margin-left: 10px;
  font-size: 0.8em;
}

.clima-info-right {
  margin-top: 20px;
  color: #fff;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "MontSerrat", sans-serif;
}

.clima-info-right h3 {
  font-size: 1.5em;
}

.dia-semana-clima {
  font-size: 1.3em;
  font-weight: 300;
}

.clima-right clima {
  font-size: 1.5em;
}

.tempo {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffcc63;
}

.clima-infos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.info-grid-item {
  font-family: "MontSerrat", sans-serif;
  padding: 10px 10px 10px 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.info-grid-item::before {
  content: "";
  height: 100%;
  width: 9px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #092857;
  border-radius: 25px;
}

.img-info {
  width: 17px;
}

.info-box {
  display: flex;
  gap: 10px;
}

.clima .container {
  margin-bottom: 80px;
}

/* Ocultar layout móvel por padrão */
.clima-mobile {
  display: none;
}

.moedas-box {
  width: 100%;
  height: auto;
  background-color: #092857;
  margin-top: 45px;
  margin-bottom: 100px;
  padding-block: 10px;
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  font-family: "Montserrat";
  gap: 150px;
}

.moedas-box ul {
  list-style: none;
  color: white;
  font-size: 15px;
  min-width: 100%;
  font-size: 1.2em;
  padding-block: 8px;
  justify-content: space-between;
  display: flex;

  animation: scroll 20s linear infinite;
}

.moedas-box ul li {
  flex-shrink: 0;
}

.img-variacao {
  width: 19px;
}

.variacao-moeda {
  color: #ffcc63;
}

.nome-moeda {
  font-weight: 700;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - 150px));
  }
}

.categorias {
  display: flex;
  gap: 40px;
  padding: 0 100px;
  margin-bottom: 100px;
}

.categoria-button {
  flex: 1;
  background-color: #092857;
  padding: 20px;
  border: none;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categoria-button:hover {
  transform: scale(1.1);
}

.categoria-button a {
  text-decoration: none;
  color: white;
  font-family: "MontSerrat", sans-serif;
  font-size: 1em;
}

.noticias-box-big {
  height: 750px;
  margin-bottom: 100px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.noticia-big {
  grid-row-start: 1;
  grid-row-end: 3;
  border: 3px solid #fff;
  border-radius: 10px;
  position: relative;
}

.noticia-big-imagem {
  width: 100%;
  height: 70%;
  background-image: url("images/noticia-big-placeholder.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: inset 0 -35px 17px -19px #061b3a;
  /* sombra interna no fundo */
}

.noticia-big-texto {
  width: 100%;
  height: 30%;
  position: absolute;
  background-color: #061b3a;
  bottom: 0;
  left: 0;
  border-radius: 10px;
}

.noticia-big-texto {
  padding: 20px 50px;
}

.big-categoria {
  font-size: 1.7em;
  color: #ffcc63;
  font-weight: 700;
}

.titulo-noticia-big {
  color: #fff;
  font-size: 1.6em;
  text-align: justify;
  line-height: 1.5;
  margin-top: 20px;
}

.noticia-side-imagem {
  width: 100%;
  border: 2px solid #fff;
  border-radius: 10px;
  background-image: url(images/noticia-placeholder.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1;
}

.noticia-side-texto {
  padding: 20px 0 0 0;
  height: auto;
  font-family: "MontSerrat", sans-serif;
  color: #fff;
}

.noticia-side-texto h3 {
  font-size: 1.3em;
}

.noticia-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mais-noticias-box-title {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.mais-noticias-text {
  font-size: 2.5em;
  color: #ffcc63;
  font-style: italic;
  padding: 0 50px;
  font-family: "Montserrat", sans-serif;
}

.linha-horizontal-mais-noticias {
  flex: 1;
  height: 6px;
  border-radius: 25px;
  background-color: #ffcc63;
}

.noticia-small-content {
  width: 100%;
  height: 310px;
  display: flex;
}

.noticia-small-imagem {
  width: 50%;
  height: 100%;
  border-radius: 15px;
  border: 2px solid #fff;
  background-image: url("images/noticia-placeholder.png");
  background-size: cover;
  background-position: center;
}

.noticia-small-texto {
  width: 50%;
  height: 100%;

  padding: 50px;
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-direction: column;
  font-family: "MontSerrat", sans-serif;
}

.noticia-small-categoria {
  color: #ffcc63;
  font-size: 1.6em;
  font-weight: 600;
}

.noticia-small-titulo {
  color: #fff;
  font-size: 1.2em;
  text-align: justify;
}

.noticia-small-info {
  color: #fff;
  font-size: 1.4em;
  font-weight: 300;
}

#botao-pag-noticias {
  background-color: #ffcc63;
  color: #061b3a;
  text-transform: uppercase;
  font-family: "MontSerrat", sans-serif;
  margin: 80px auto;
}

.bloco-noticias-small {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

#noticias-section-page {
  padding-bottom: 200px;
}

/* Player */

.player-novo {
  display: flex;
  position: fixed;
  right: 0;
  top: 150px;
  transform: translateX(calc(100% - 60px));
  transition: all 0.3s ease;
  z-index: 99;
}

.player-active {
  transform: translateX(0);
}

/* Player Draggable Styles */
.player-draggable {
  touch-action: none;
  /* Previne comportamentos de touch padrão */
  user-select: none;
  /* Previne seleção de texto */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.player-draggable.dragging {
  transition: none !important;
  /* Remove transição durante o arrastar */
  z-index: 999;
  /* Garante que fica por cima durante o drag */
}

.player-draggable.dragging .aovivo-button {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.aovivo-button {
  height: 130px;
  width: 50px;
  background-color: red;
  padding: 15px;
  border-top-left-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 20px;
  position: relative;
}

/* Indicador visual para arrastar - apenas em mobile */
@media (max-width: 768px) {
  .player-draggable .aovivo-button {
    cursor: grab;
    cursor: -webkit-grab;
  }

  .player-draggable.dragging .aovivo-button {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    background-color: #ff3333;
  }

  .player-draggable.dragging .aovivo-button::before {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 0 rgba(255, 255, 255, 0.9),
      0 12px 0 rgba(255, 255, 255, 0.9);
  }
}

.aovivo-button:hover {
  cursor: pointer;
}

.aovivo-button img {
  height: 100%;
  width: auto;
}

.player-novo-controls {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 130px;
  background-color: #09234a;
}

.player-novo-controls {
  display: flex;
  padding: 10px 20px;
}

.button-player-novo {
  background-color: #ffcc63;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: all 0.1s ease;
}


.button-player-novo.playing {
  animation: pulsarPlayerNovo 1.5s ease-in-out infinite;
}

.button-player-novo img {
  width: 25px;
  height: 25px;
}

.player-text {
  display: flex;
  flex-direction: column;
  font-family: "MontSerrat", sans-serif;
  user-select: none;
}

.player-text-top {
  color: #ffcc63;
  font-weight: 800;
}

.player-text-bottom {
  color: #ffffff;
  font-weight: 500;
}

.volume-button-novo {
  background-color: #ffcc63;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
}

.volume-button-novo.playing {
  animation: pulsarVolumeNovo 2s ease-in-out infinite;
}

.volume-button-novo img {
  width: 20px;
  height: 20px;
}

@keyframes pulsarPlayerNovo {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 99, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 204, 99, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 99, 0);
  }
}

@keyframes pulsarVolumeNovo {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 99, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 99, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 99, 0);
  }
}

.volume-button-novo img {
  width: 20px;
  height: 20px;
}

.button-player-novo:hover {
  cursor: pointer;
}

.button-player-novo:active {
  transform: scale(0.95);
}

.volume-button-novo:hover {
  cursor: pointer;
}

.volume-button-novo:active {
  transform: scale(0.95);
}

.dashboard-fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-fixed:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.dashboard-fixed:active {
  transform: scale(0.98);
}

.dashboard-fixed a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
}

.dashboard-fixed a img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.dashboard-fixed:hover a img {
  opacity: 0.9;
}

.noticia-corpo-text {
  margin-top: 50px;
}

#destaque-noticia-page {
  color: #ffcc63;
}

.noticias-categoria {
  margin-top: 100px;
}

.botao-ativo {
  background-color: #ffcc63;
}

.botao-ativo .categoria-button-text {
  color: #09234a !important;
}

.categoria-button-text {
  color: #fff;
  font-size: 1.2em;
  font-family: "MontSerrat", sans-serif;
}

/* ============================================
   ESTILOS PARA PROGRAMAÇÃO SPA
   ============================================ */

.no-programas {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
  font-style: italic;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dia.ativo {
  background-color: #ffcc63 !important;
  color: #061b3a !important;
  font-weight: bold;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 204, 99, 0.4);
}

.dia {
  transition: all 0.3s ease;
  cursor: pointer;
}

.dia:hover {
  background-color: #ffcc63;
  color: #061b3a;
  transform: scale(1.05);
}

.programacao-card-image {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.descricao-programa-card {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.programacao-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animação de loading para programação */
.loading-programacao {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1em;
}

.loading-programacao::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffcc63;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 15px;
}

/* Melhorias no grid da programação */
.programacao-box-cards {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade melhorada para programação */
@media (max-width: 768px) {
  .programacao-box-cards {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .seletor-dia-prog {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .dia {
    min-width: 60px;
    font-size: 0.9em;
  }
}

.siga-nos h4 {
  margin-bottom: 20px;
  font-family: "Satoshi", sans-serif;
}

footer h4 {
  font-family: "Satoshi", sans-serif;
  margin-bottom: 20px;
}

.footer-left p {
  font-family: "Satoshi", sans-serif !important;
}

.localizacao h4::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: red;
  display: block;
  margin-right: 20px;
  border-radius: 50%;
  margin-top: 4px;
}

.localizacao h4 {
  display: flex;
  align-items: center;
}

.modal-contato-enviado {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.288);
  display: none;
  align-items: center;
  top: 0;
  left: 0;
  justify-content: center;
}

.modal-contato-enviado img {
  width: 400px;
}

.modal-contato-nao-enviado {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.288);
  display: none;
  align-items: center;
  top: 0;
  left: 0;
  justify-content: center;
}

.modal-contato-nao-enviado img {
  width: 400px;
}

div.ultimas-noticias-selecionada {
  background-color: #e40047;
  position: relative;
}

.prv-btn-ultima,
.prox-btn-ultima {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3em;
  user-select: none;
}

.prv-btn-ultima {
  left: 30px;
  transform: scaleX(-1) translateY(-50%);
}

.prox-btn-ultima {
  right: 30px;
}

.pri {
  border-right: 3px solid #ffcc63;
}

.ultimas-noticias-selecionada-container {
  display: none !important;
}

.visivel {
  display: grid !important;
}

/* Ajustes */

#novidade-das {
  font-weight: 300;
  color: white;
  font-size: 0.8em;
  text-transform: none;
}

#novidades {
  color: #ffcc63;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.8em;
}

#fique-por-dentro {
  font-size: 1.3em;
  font-weight: 600;
}

#aplicativo-text {
  font-size: 1.8em;
  color: #ffcc63;
}

#aplicativo-subtext {
  letter-spacing: normal;
}

#baixe-text {
  font-size: 1.3em;
  font-weight: 600;
}

#radio-text {
  font-size: 1.4em;
  font-weight: 500;
}

#povo-text {
  font-size: 1.6em;
  color: #ffcc63;
  font-weight: 800;
}

#povo-subtext {
  letter-spacing: normal;
}

/* Radio Online */
.ro-logo {
  padding-block: 50px;
  display: flex;
  justify-content: center;
}

.ro-logo img {
  width: 30%;
  height: auto;
}

/* Botão de mute fixo no canto superior esquerdo */
.mute-button-fixed {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #ffcc63;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mute-button-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mute-button-fixed:active {
  transform: scale(0.95);
}

.mute-button-fixed img {
  width: 25px;
  height: 25px;
}

.mute-button-fixed.muted {
  background-color: #ff4444;
}

/* Responsividade para o botão de mute */
@media (max-width: 768px) {
  .mute-button-fixed {
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
  }

  .mute-button-fixed img {
    width: 20px;
    height: 20px;
  }
}

.ro-player {
  width: 100%;
  height: 350px;
  position: relative;
  font-family: "MontSerrat", sans-serif;
  color: white;
}

.ro-fundo-amarelo {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: #ffcc63;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.ro-fundo-vermelho {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: #e70048;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}

.ro-player-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.ro-player-button {
  position: relative;
  width: 9%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffcc63;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 5px rgba(255, 204, 99, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ro-player-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px 8px rgba(255, 204, 99, 0.8);
}

.ro-player-button.playing {
  background-color: #ff6b63;
  box-shadow: 0 0 10px 5px rgba(255, 107, 99, 0.7);
  animation: pulse 2s infinite;
}

.ro-player-button.playing:hover {
  box-shadow: 0 0 15px 8px rgba(255, 107, 99, 0.8);
}

.ro-player-button img {
  height: 100%;
  width: 100%;
}

.ro-player-text {
  display: flex;
  font-size: 1.5em;
}

.ro-subtext h2 {
  margin-bottom: 40px;

}

.ro-player-text>*:nth-child(1),
.ro-player-text>*:nth-child(2) {
  padding: 0 50px;
}

.ro-player-text img {
  width: 40px;
}

#ro-ouca-text {
  transition: color 0.3s ease;
}

#ro-ao-vivo {
  transition: all 0.3s ease;
}

.ro-player-button.playing~.ro-player-text #ro-ouca-text {
  color: #ff6b63;
  font-weight: bold;
}

.ro-player-button.playing~.ro-player-text #ro-ao-vivo {
  color: #ff6b63;
  font-weight: bold;
  animation: blink 1.5s infinite;
}

.ro-whats {
  border-left: 2px solid #fff;
}

.ro-whats-image {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-top: 10px;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

#ro-contato {
  color: #ffcc63;
  font-weight: 600;
}

#ro-ao-vivo {
  font-weight: 700;
}

#ro-ouca-text {
  color: #ffcc63;
  font-weight: 700;
}

#ro-video {
  margin: 20px 0 0 0;
}

.ro-text-top {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: white;
  font-weight: 500;
  text-align: center;
}

#ro-povo {
  color: #ffcc63;
  font-weight: 700;
}

.ro-video-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ro-subtext {
  font-size: 2em;
  text-align: center;
  color: white;
  margin-top: 40px;
  margin-bottom: 40px;
}

.ro-subtext p {
  font-size: 0.7em;
}

#ro-pub {
  max-width: 1134px;
  width: 80%;

  margin: auto;
}

.ro-botoes {
  max-width: 1134px;
  width: 80%;
  height: 60px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.ro-baixe {
  grid-column-start: 1;
  grid-column-end: 3;

  background-color: #e70048;
  border-radius: 45px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  cursor: pointer;
}

#ro-app {
  color: #ffcc63;
  font-weight: 700;
}

.ro-baixe img,
.ro-compartilhar img {
  height: 60%;
}

.ro-subir img {
  height: 30%;
}

.ro-compartilhar {
  background-color: #ffcc63;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ro-subir {
  background-color: #ffcc63;
  border-radius: 45px;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#radio-online-button {
  text-decoration: none;
  color: #000;
}

.box-rede img {
  height: 35%;
}

#ro-footer-copyright {
  width: 100vw;
  max-width: 100%;
  margin-top: 50px;
  background-color: #09234a;
  color: #fff;
  padding: 20px 0;
  display: flex;
}

.ro-logo a {
  margin: auto;
  display: flex;
  justify-content: center;
}

/* Responsividade */

@media (max-width: 1024px) {
  .imagem {
    min-width: 380px;
  }

  .texto {
    gap: 0;
  }

  .linha-destaque-1 {
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .texto h2 {
    font-size: 0.9em;
  }

  .noticias-top {
    gap: 20px;
  }

  .noticias-texto h2 {
    font-size: 1em;
  }

  .anuncie-texto h2 {
    font-size: 3em;
  }

  .anuncie-fake-btn {
    width: 40%;
    padding: 10px 20px;
    font-size: 1.2em;
  }

  .box-sub-info {
    text-align: right;
  }

  .categorias {
    padding: 0 40px;
  }

  .categoria-button {
    padding: 15px;
  }

  .categoria-button-text {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .container {
    width: 80%;
  }

  .imagem {
    width: 100%;
  }

  #nav-desktop {
    display: none;
  }

  .app {
    height: auto;
    padding-top: 100px;
  }

  .app-texto {
    font-size: 1.3em;
  }

  .noticias-top {
    flex-direction: column;
  }

  .app .container {
    flex-direction: column;
  }

  footer .container {
    flex-direction: column;
  }

  .footer-left {
    padding-right: 0;
    width: 100%;
    align-items: center;
    border-right: none;
  }

  .footer-left .logo {
    width: 50%;
  }

  .footer-left p {
    font-family: "Satoshi", sans-serif !important;
    width: 100%;
    font-size: 1.5em;
    text-align: left;
  }

  .mapa-container {
    margin: auto;
    width: 100%;
    height: 200px;
  }

  .footer-right {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
    justify-content: space-between;
  }

  .form-anuncie {
    flex-direction: column;
  }

  .form-left {
    width: 100%;
  }

  .form-right {
    width: 100%;
  }

  .publicidade-card {
    height: 250px;
  }

  .copyright-box {
    flex-direction: column;
  }

  .copyright-box ul li a {
    padding: 0 10px 0 0;
  }

  .copyright-box ul {
    gap: 10px;
  }

  .noticia-card.grande {
    max-width: 100%;
    width: 100%;
  }

  .grande .noticia-img {
    height: 80%;
  }

  .noticias-bot .noticia-card.pequeno:last-child {
    display: none;
  }

  .noticias-texto {
    flex-direction: column;
    gap: 70px;
    font-size: 6em;
    text-align: justify;
  }

  .noticias-botao-box {
    font-size: 0.5em;
    gap: 15px;
  }

  .noticias-bot {
    gap: 40px;
  }

  .noticias-texto {
    margin-bottom: 60px;
  }

  .video {
    height: 400px;
  }

  .eventos .container p {
    margin-top: 50px;
  }

  .destaque .container {
    flex-direction: column;
    align-items: center;
  }

  .texto p,
  .texto button,
  .texto .player-info {
    display: none;
  }

  /* Nova seção para textos móveis que aparecem após a imagem */
  .textos-mobile-pos-imagem {
    display: block;
    width: 100%;
    margin-top: 30px;
    position: relative;
    min-height: 200px;
    background: transparent;
  }

  .texto-mobile {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
  }

  .texto-mobile-atual {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .texto-mobile p {
    color: white;
    margin: 20px 0;
    letter-spacing: 2px;
    word-spacing: 2px;
    text-align: justify;
    line-height: 1.5;
    font-size: 1em;
    display: block !important;
    /* Força a exibição dos parágrafos */
  }

  .texto-mobile .confirm-button {
    background-color: #ffcc63;
    color: #061b3a;
    font-size: 0.9em;
    border: none;
    padding: 15px 30px;
    border-radius: 45px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 20px;
    display: block !important;
    /* Força a exibição dos botões */
  }

  .texto-mobile .confirm-button:hover {
    transform: scale(1.05);
  }

  /* Estilos específicos para o player-info no mobile */
  .texto-mobile .player-info {
    display: block !important;
    /* Força a exibição do player-info */
    color: white;
    margin-top: 20px;
    padding-left: 60px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-left: 1px solid #fff;
  }

  .texto-mobile .buttons-player {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
  }

  .texto-mobile .buttons-player button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .texto-mobile .buttons-player button:hover {
    background-color: white;
    color: #061b3a;
  }

  .textos-container {
    align-self: auto;
  }

  .destaque .container .texto {
    font-size: 2.5em;
  }

  .texto h2 {
    text-align: center;
  }

  .textos-container {
    width: 100%;
  }

  .linha-horizontal-potencialize {
    margin-left: auto;
    margin-right: auto;
  }

  .image-box {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .hamburger-menu {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .hamburger-menu img {
    width: 30px;
    height: 30px;
  }

  .pagina-atual {
    padding: 7px 15px;
    border-radius: 25px;
    background-color: #e40047;
  }

  #nav-mobile {
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    width: 200px;
    height: 450px;
    padding-top: 25px;
    background-color: #ffcc63;
    z-index: 100;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transition: all 0.3s ease;
    transform: translateX(200px);
  }

  .voltar-mobile {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 70px;
    cursor: pointer;
  }

  .lista-mobile {
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    justify-content: center;
  }

  .lista-mobile li {
    padding-block: 25px;
    text-align: center;
    border-bottom: #d4a545 solid 1px;
    border-collapse: collapse;
    width: 70%;
  }

  .lista-mobile li:last-child {
    border-bottom: none;
  }

  .box-sobre-texto {
    width: 100%;
    font-size: 1.3em;
  }

  #noticias-programacao {
    height: auto;
  }

  #noticias-programacao .noticia-card.grande:last-child {
    display: none;
  }

  .noticias-texto h2 {
    font-size: 1.2em;
  }

  .noticias-botao-box {
    font-size: 0.7em;
  }

  .categorias {
    padding: 0 10px;
    gap: 15px;
  }

  .categoria-button {
    padding: 10px;
    font-size: 0.8em;
  }

  .noticias-box-big {
    height: 1200px;
    margin-bottom: 100px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
  }

  .noticia-big {
    grid-row-start: auto;
    grid-row-end: auto;
  }

  .noticia-side:last-child {
    display: none;
  }

  #noticias-section-page {
    padding-bottom: 260px;
  }

  /* Clima responsivo - ocultar layout desktop e mostrar mobile */
  .clima-grid {
    display: none;
  }

  .clima-infos-grid {
    display: none;
  }

  .clima-mobile {
    display: block;
  }

  .clima-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .clima-cidade-mobile {
    color: #ffcc63;
    font-size: 1.5em;
    font-weight: bold;
    font-family: "Montserrat";
    flex: 1;
  }

  #data-atualizacao-mobile {
    color: #fff;
    font-weight: 200;
    font-size: 0.7em;
    display: block;
    margin-top: 5px;
  }

  .clima-info-right-mobile {
    color: #fff;
    text-align: right;
    font-family: "MontSerrat", sans-serif;
  }

  .clima-info-right-mobile h3 {
    font-size: 1.4em;
    margin-bottom: 5px;
  }

  .dia-semana-clima-mobile {
    font-size: 1em;
    font-weight: 300;
    margin: 0 0 5px 0;
  }

  .tempo-mobile {
    font-size: 1.3em;
    font-weight: 600;
    color: #ffcc63;
    margin: 0;
  }

  .clima-main-mobile {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 20px;
  }

  .clima-icon-mobile {
    height: 120px;
    grid-column: 1;
  }

  .temperatura-box-mobile {
    grid-column: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  #temperatura-valor-mobile {
    font-size: 5.5em;
    font-family: "Gotham";
    font-weight: bold;
    color: #ffcc63;
    line-height: 0.8;
  }

  .temperatura-buttons-mobile {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .temperatura-buttons-mobile button {
    background-color: transparent;
    border: none;
    font-size: 1.1em;
    color: #fff;
  }

  .temperatura-infos-mobile {
    color: #fff;
    font-weight: 500;
    font-size: 0.9em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
    font-family: "Montserrat";
  }

  .icon-temp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .temperatura-infos-mobile p {
    margin: 0;
  }

  .temperatura-infos-mobile .info {
    font-weight: 200;
  }

  .noticia-em-destaque {
    font-size: 1em;
  }

  .search-container {
    width: 100%;
  }

  .clima .container {
    margin-bottom: 40px;
  }
}

@media (max-width: 440px) {
  .imagem {
    min-width: 100%;
  }

  .button-player-novo {
    height: auto;
    aspect-ratio: 1/1;
  }

  .app-iphones a {
    display: flex;
  }

  .texto h2 {
    font-size: 0.6em;
  }

  .textos-container {
    min-height: 150px;
  }

  /* Ajustes para textos móveis em telas muito pequenas */
  .textos-mobile-pos-imagem {
    margin-top: 20px;
    min-height: 120px;
  }

  .texto-mobile {
    padding: 5px;
  }

  .texto-mobile p {
    font-size: 0.9em;
    margin: 15px 0;
  }

  .texto-mobile .confirm-button {
    font-size: 0.8em;
    padding: 12px 25px;
  }

  .texto-mobile .buttons-player button {
    font-size: 0.7em;
    padding: 8px 12px;
  }

  .texto-mobile .player-info {
    padding-left: 40px;
  }

  .logo {
    width: 140px;
  }

  .conteudo {
    font-size: 0.8em;
  }

  .redes-icons a {
    padding: 0 20px;
  }

  .redes-icons a img {
    width: 90px;
  }

  #facebook img {
    height: 22px;
    margin: 7px 0 0 0;
  }

  .video {
    height: auto;
    aspect-ratio: 16/9;
    border: solid white 3px;
    margin-top: 30px;
  }

  .evento-card {
    min-height: 80px;
    border: solid white 2px;
  }

  .app-iphones img {
    height: 300px;
  }

  .noticias-texto h2 {
    font-size: 0.6em;
  }

  .noticia-card.grande {
    font-size: 0.7em;
  }

  .noticias-bot {
    font-size: 0.6em;
  }

  .noticia-card.grande {
    height: 300px;
  }

  .noticia-card.pequeno {
    height: 200px;
    font-size: 0.8em;
  }

  .eventos-grid {
    gap: 15px;
    margin: 40px 0;
  }

  .pequeno .noticia-img {
    min-height: 125px;
  }

  footer {
    font-size: 0.6em;
  }

  #footer-copyright {
    font-size: 0.6em;
  }

  .play-btn img {
    width: 90px;
    height: 90px;
  }

  .video-play .container p {
    font-size: 0.8em;
  }

  .video-play .container h2 {
    font-size: 2em;
  }

  .eventos .container h2 {
    font-size: 2em;
  }

  .eventos .container p {
    font-size: 0.8em;
  }

  .anuncio-card {
    flex: 0;
    width: 200px;
    flex: 0 0 250px;
    font-size: 0.5em;
    height: 80px;
    border-radius: 5px;
  }

  /* .anuncios-box-original,
  .anuncios-box-duplicacao {
    gap: 25px;
  } */

  .anuncio-card {
    flex: 0 0 250px;
    /* Mantive a melhor declaração flex aqui */
    width: 250px;
    /* Garante consistência */
    font-size: 0.5em;
    height: 80px;
    border-radius: 5px;
  }

  .anuncios-box-original,
  .anuncios-box-duplicacao {
    gap: 25px;
  }

  .anuncios-box {}

  .anuncios {
    margin: 30px 0 40px 0;
  }

  .publicidade-card {
    height: 150px;
  }

  .linha-horizontal {
    margin: 40px auto;
  }

  .btn-noticias {
    font-size: 2em;
    margin: 0px;
    width: 30px;
    height: 30px;
  }

  .noticia-em-destaque {
    width: 100%;
  }

  .clima-mobile {
    font-size: 0.7em;
  }

  .categorias {
    flex-wrap: wrap;
  }

  .slider-controls {
    gap: 10px;
    font-size: 0.8em;
  }

  .slider-controls {
    gap: 5px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .noticias-botao-box {
    font-size: 0.4em;
  }

  .noticias-botao {
    padding: 10px 10px;
  }

  .noticias-ver-mais-botao {
    padding: 15px 45px;
    font-size: 0.8em;
  }

  .noticias-grid {
    gap: 20px;
  }

  .noticias-ver-mais-botao img {
    width: 20px;
  }

  .linha-horizontal-anuncie {
    display: none;
  }

  .anuncie-conosco {
    justify-content: center;
  }

  .anuncie-texto h2 {
    font-size: 1.5em;
    text-align: center;
    text-wrap: nowrap;
  }

  #linha-white {
    display: none;
  }

  .potencialize {
    font-size: 0.6em;
  }

  .form-left input {
    height: 50px;
  }

  .form-left label {
    font-size: 0.9em;
  }

  .btn {
    padding: 15px 0px;
  }

  .clima {
    margin-top: 30px;
  }

  .video-play {
    margin-top: 30px;
  }

  .imagem-fundo-efeito {
    width: 50%;
    background-position: center;
  }

  .noticia-box .container {
    height: 300px;
  }

  .app-texto p {
    width: 100%;
    font-size: 0.8em;
  }

  .app-texto h2 {
    font-size: 1.4em;
  }

  .bloco-noticias-small {
    font-size: 0.6em;
  }

  .noticia-small-texto {
    padding: 15px;
  }

  #botao-pag-noticias {
    margin: 40px auto;
  }

  .bloco-noticias-small {
    font-size: 0.7em;
  }

  .noticia-small-texto {
    height: 70px;
  }

  .noticia-small-content {
    flex-direction: column;
  }

  .noticia-small-imagem {
    width: 100%;
  }

  .noticia-small-texto {
    height: auto;
    gap: 10px;
    padding: 15px 0 0 0;
    width: 100%;
  }

  .mais-noticias-text {
    font-size: 1.5em;
    padding: 0 10px;
  }

  .linha-horizontal-mais-noticias {
    height: 3px;
  }

  .mais-noticias-box-title {
    margin-bottom: 50px;
  }

  .noticias-box-big {
    margin-bottom: 50px;
  }

  .noticia-side {
    height: 250px;
  }

  .noticia-big-texto {
    height: fit-content;
    position: static;
  }

  .noticias-box-big {
    height: fit-content;
    font-size: 0.7em;
  }

  .noticia-big {
    display: flex;
    flex-direction: column;
  }

  .categoria-button {
    text-wrap: nowrap;
  }

  #noticias-section-page {
    padding-bottom: 80px;
  }

  .noticias {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 95%);
  }

  .noticias-categoria {
    margin-top: 50px;
  }

  .player-novo {
    transform: translateX(calc(100% - 50px));
    top: 200px;
  }

  .player-active {
    transform: translateX(0);
  }

  .ultimas-noticias-selecionada {
    height: 150px;
    font-size: 0.5em;
  }

  .moedas-box {
    font-size: 0.5em;
  }

  .img-variacao {
    width: 10px;
  }

  .moedas-box ul {
    gap: 20px;
  }

  .moedas-box {
    width: max-content;
    gap: 20px;
  }

  .moedas-box ul {
    width: max-content;
    min-width: auto;
  }

  .ultimas-noticias-selecionada {
    margin-top: 50px;
  }

  .moedas-box {
    margin-bottom: 50px;
    margin-top: 25px;
  }

  .noticias {
    overflow: hidden;
  }

  #titulo-text {
    font-size: 1.5em;
  }

  #subtitulo-text {
    font-size: 0.9em;
  }

  #titulo-info {
    font-size: 0.7em;
  }

  .box-rede {
    font-size: 0.7em;
    border-radius: 15px;
  }

  .noticia-corpo-imagem {
    border-radius: none;
    border: none;
  }

  .noticia-corpo p {
    font-size: 0.9em;
  }

  .title-page {
    font-size: 0.7em;
  }

  .linha-pequena-horizontal-branca {
    height: 6px;
    margin-top: 30px;
  }

  .dia {
    width: 60px;
    height: 60px;
    font-size: 0.5em;
  }

  .temp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .imagem .play-btn {
    width: auto;
    height: auto;
  }

  .noticia-em-destaque {
    font-size: 0.7em;
  }

  .ro-player {
    height: 150px;
    font-size: 0.5em;
  }

  .ro-player-text {
    flex-direction: column;
  }

  .ro-player-text>*:nth-child(1),
  .ro-player-text>*:nth-child(2) {
    padding: 0;
  }

  .ro-player-text img {
    width: 20px;
  }

  .ro-player-button {
    width: 80px;
  }

  .ro-whats {
    padding-left: 20px !important;
    margin-top: 10px;
  }

  .ro-whats-image {
    margin-top: 5px;
  }

  .ro-text-top {
    font-size: 1.5em;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    font-size: 1.7em
  }

  #ro-video {
    width: 80%;
  }

  .ro-subtext {
    font-size: 1em;
  }

  .ro-botoes {
    font-size: 0.6em;
    grid-template-columns: 1fr 1fr;
  }

  .ro-baixe img,
  .ro-compartilhar img {
    height: 30%;
  }

  .ro-subtext p {
    font-size: 0.6em;
  }

  .ro-subir img {
    height: 20%;
  }

  .ro-logo img {
    width: 60%;
  }

  .ro-botoes {
    height: auto;
  }

  .ro-baixe,
  .ro-compartilhar,
  .ro-subir {
    height: 50px;
  }

  .ro-baixe {
    font-size: 1.1em;
  }

  #ro-footer-copyright {
    font-size: 0.6em;
  }

  .botao-n-text {
    display: none;
  }

  .siga-nos a img {
    width: 40%;
  }

  .siga-ferramentas {
    align-items: flex-start;
  }

  #noticias-programacao {
    padding-bottom: 40px;
  }

  .evento-overlay {
    font-size: 0.5em;
  }

  .evento-nome {
    margin-top: 5px;
  }

  .eventos .container p {
    margin-top: 5px;
  }

  .footer-left p {
    margin-bottom: 40px;
  }

  .whatsapp-fixed a img {
    width: 80px;
  }

  .contato-title .container .title-page {
    font-size: 0.55em;
  }

  .contato-descricao {
    font-size: 1em;
  }

  .anuncie-fake-btn {
    width: fit-content;
    padding: 0;
    padding: 0 20px;
  }

  .box-sub-title {
    gap: 0;
    font-size: 0.5em;
  }

  .container-contato {
    width: 100%;
  }

  .box-sub-info {
    gap: 0;
  }

  .form-input input,
  .form-input select {
    font-size: 0.8em;
    padding: 10px;
  }

  .form-input textarea {
    padding: 10px 10px;
    height: 100px;
    font-size: 0.8em;
  }

  .form-box form {
    gap: 20px;
  }

  .form-input label {
    font-size: 0.9em;
  }

  .form-box-check {
    font-size: 0.7em;
  }

  #botao-envio {
    padding: 10px 20px;
  }

  #botao-envio img {
    width: 20px;
    height: 20px;
  }

  #botao-envio span {
    font-size: 1em;
  }

  .noticias-texto {
    line-height: 1;
  }
}