 body {
   margin: 0;
   font-family: Arial, sans-serif;
   background-color: black;
 }

 header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 20px;
   background-color: #f2f2f2;
 }

 .logo {
   width: 350px;
 }

 .header-center {
   flex: 1;
   text-align: center;
   font-weight: bold;
 }

 /*---------------------------------------------------------------------------- */

 /*------------------------------RADIO------------------------------- */
.radio-container {
  position: relative;
  width: 370px;
  height: 150px;
  margin: 10px auto;
}

.logo-radio {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.btn-play {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: black;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.2s ease;
}

.btn-play:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

 /*---------------------------------------------------------------------------- */
 .social-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 20px;
   background-color: #000000;
 }

 .social-icons {
   display: flex;
   gap: 150px;
 }

 .social-icons img {
   width: 35px;
   height: 35px;
   padding-left: 60px;
   /* distância da borda esquerda */
 }
/*------------------------------------------------------------------------------------*/
  
/*btn-anuncie */

.anuncie-container2 {
  width: 50%;
  display: flex;
  align-items:right;
  justify-content:right;
  background-color: black; /* igual ao lado esquerdo para manter o layout coeso */
  padding:0 ;
  box-sizing: border-box;
}

.botao-anuncie2 {
  background-color: #00c851;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  height: 27px;
  width: 300px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

 /* ------------------------------------------------------ */
.container-vertical {
  width: 100%;
  display: flex;
  justify-content: space-between; /* Espaço entre os sliders */
  align-items: center;
  margin: 0px 0;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.imagem-vertical-individual,
.imagem-horizontal-individual {
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  width: 100%;
}

.slider-container.vertical .imagem-vertical-individual {
  width: 250px;
  height: 450px;
  aspect-ratio: 3 / 4;
}

.slider-container.horizontal .imagem-horizontal-individual {
  width: 800px;
  aspect-ratio: 16 / 9;
  height: 450px;
}

.slide.active {
  opacity: 1;
  position: relative;
}


/*---------------------------------------------------------------------------------------*/
 .faixa-eventos {
   margin-top: 0px;
   background-color: black;
   color: white;
   padding: 15px 20px;
   font-weight: bold;
   font-size: 18px;
   text-align: left;
 }

 /*---------------------------------------------------------------------------------------*/
 /* Faixa de Eventos em destaque Imagens*/

 .slider-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.container-imagens-1 {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.container-imagens-1.ativo {
  opacity: 1;
  z-index: 1;
}

.imagem-vertical-2 {
  width: 19%;
  height: 400px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}



 /*---------------------------------------------------------------------------------------*/
 /* ADS */

 .anuncio-grande {
   width: 100%;
   /*a largura visível */
   max-width: 100%;
   height: 180px;
   /* triplica a altura da faixa */
   overflow-x: hidden;
   /* impede que o anúncio ultrapasse caso o container não suporte */
   background-color: black;
   /* fundo preto pra visualização */
   opacity: 0.3;
   /* deixa levemente transparente (opcional) */
 }

 /* ------------------------------------------------------------------------------------ */

 
 /* cabecalho do Calendario */
 
.cabecalho-calendario {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(0, 0, 0);
  padding: 15px 20px;
  box-sizing: border-box;
}

.titulo {
  color: white;
  font-size: 20px;
  width: 50%;
  margin: 0;
}

.botao-imagem {
  display: block;
  width: 50%;
  text-align: right;
}

.botao-imagem img {
  height: 120px; /* ajuste conforme sua imagem */
  max-width: 900px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.botao-imagem img:hover {
  transform: scale(1.05);
}

/* ------------------------------------------------------------------------------------ */

.anuncie-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black; /* igual ao lado esquerdo para manter o layout coeso */
  padding: 10px 20px;
  box-sizing: border-box;
}

.botao-anuncie {
  background-color: #00c851;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  height: 27px;
  width: 800px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.botao-anuncie:hover {
  background-color: #007e3c;
}


.filtros-anuncie {
  display: flex;
  width: 100%;
}

/* ------------------------------------------------------------------------------------ */

 /* Calendario */


 .calendario-container {
   max-width: 100%;
   /* opcional para limitar estourar a tela */
 }

 .titulo{
  width: 50%;
 }
 .filtros { 
   width: 50%;
   /* igual ao .calendario */
 }

 .titulo {
   background-color: black;
   color: white;
   padding: 15px 20px;
   font-size: 20px;
   margin: 0;
   width: 47%;
 }

 .
 /* Contêiner vertical dos filtros */

 .filtros {
   display: flex;
   flex-direction: column;
   width: 50%;
   /* mesmo tamanho da faixa e do calendário */
   background-color: black;
   color: white;
   border-top: 1px solid white;
   border-bottom: 1px solid white;
   padding: 10px 20px;
   box-sizing: border-box;
   gap: 10px;
 }

 /* Estilo dos filtros */
 .filtros select {
   background-color: #111;
   color: white;
   border: 1px solid white;
   padding: 8px;
   font-weight: bold;
   border-radius: 4px;
   width: 100%;
   /* ocupa toda a largura da .filtros */
 }

 .conteudo-calendario {
   display: flex;
   width: 100%;
   margin: 0;
  padding: 0;
  gap: 0;
 }

 /* Calendário ocupa metade esquerda */
 .calendario {
   background-color: black;
   color: white;
   width: 50%;
  box-sizing: border-box;
 }

 .semana {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   gap: 8px;
   margin-bottom: 10px;
 }

 .semana div {
   background-color: black;
   color: white;
   border: 1px solid white;
   text-align: center;
   padding: 10px 0;
   font-weight: bold;
   border-radius: 4px;
 }

 .dias {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   gap: 8px;
 }

 .dias button {
   background-color: black;
   color: white;
   border: 1px solid white;
   font-weight: bold;
   border-radius: 4px;
   cursor: pointer;
   aspect-ratio: 1 / 1;
 }

 .dias button:hover {
   background-color: #555;
 }

 .imagem-dia img {
  width: 100%;
  height: auto;
  display: block;
}


 /* Imagem ocupa metade direita */
 
.imagem-dia {
  width: 50%; /* ocupa a outra metade da tela */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
}

 /* -------------------------------------------------------------------------------------------------------------- */

/* Botão demais eventos */
.imagem-wrapper {
  position: relative;
  width: 640px;
  height: 5px;
}

.imagem-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-sobre-imagem {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 320px;
  background-color: rgba(0, 128, 0, 0.5); /* Verde com 50% de transparência */
  color: white;
  text-align: center;
  padding: 30px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-sobre-imagem:hover {
  background-color: rgba(0, 100, 0, 0.7);
}

/* -------------------------------------------------------------------------------------------------------------- */

 /* APOIOS E COPYRIGHT */

 .imagem-extra {
   border-top: 1px solid white;
   width: 100%;
   height: 360px;
   /* 2x maior que o espaço de ads */
   background-color: black;
   /* cor temporária se imagem não carregar */
   display: block;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   margin-top: 0;
   margin-bottom: 0
 }

 .imagem-extra img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 /* Rodapé simples e elegante */
 .rodape {
   border-top: 1px solid white;
   background-color: black;
   color: white;
   text-align: center;
   padding: 15px 0;
   font-size: 14px;
   margin-top: 0;
   margin-bottom: 0
 }