

  .conteudo {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
  }
  
  .countdown {
    display: flex;
    justify-content: space-between; /* Espaça os itens uniformemente */
    margin-top: 20px; /* Margem superior para espaçamento */
  }
  
  .box {
    background-color: #f8f9fa; /* Fundo claro */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease; /* Efeito ao passar o mouse */
    margin: 0 10px; /* Margem entre os boxes */
    text-align: center; /* Centraliza o texto dentro do box */
  }
  
  .box:hover {
    transform: scale(1.05); /* Aumenta levemente ao passar o mouse */
  }
  
  .value {
    font-size: 2.5em; /* Tamanho da contagem */
    font-weight: bold;
    color: #007bff; /* Cor azul */
  }
  
  .name {
    font-size: 1em; /* Tamanho do texto abaixo da contagem */
    color: #6c757d; /* Cor do texto */
  }






/* Container principal do calendário */

  #calendar {
    width: 100%; /* Define a largura */
    height: 100%; /* Define a altura */
    padding: 20px 10px; /* Mantém o padding interno */
    margin: 20px auto; /* Adiciona margem externa para centralizar */
    background-color: transparent; /* Fundo transparente */
    border: 3px solid #ccc; /* Borda destacada */
    border-radius: 8px; /* Arredondamento dos cantos */
    box-sizing: border-box; /* Inclui o padding e borda no tamanho total */
  }
  
  /* Ajustes para o conteúdo do calendário */
  .calendar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background-color: transparent; /* Fundo transparente */
    opacity: 1; /* Opacidade total */
  }
  
  /* Estilo para a barra de ferramentas do calendário */
  .calendar .fc-header-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 5px;
  }
  
  /* Estilos do título e botões na barra de ferramentas */
  .calendar .fc-toolbar h2 {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
  }
  /* aqui os botão de next e prev */ 
  .calendar .fc-toolbar .fc-button {
    background-color: #6b8e23 !important;
    border: none;
    color: white;
    padding: 2px 4px;
    font-size: 10px;
    border-radius: 4px;
    min-width: 40px;
    margin: 0 2px;
  }
  
  .calendar .fc-toolbar .fc-today-button {
    margin-left: 12px;
  }
  
  /* Estilo das células do calendário */
  .calendar .fc .fc-daygrid-day {
    padding: 0;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #50c878;
    font-size: 12px;
  }
  
  .calendar .fc .fc-daygrid-day.fc-day-today {
    background-color: #50c878;
    color: white;
  }
  
  /* Estilo para eventos */
  .calendar .fc-event {
    background-color: #4caf50;
    color: black;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 12px;
  }
  /* Estilo para células com eventos */
  .fc-daygrid-day.fc-day-has-event {
      position: relative;
  }
  
  /* Indicador de ponto para eventos */
  .fc-daygrid-day.fc-day-has-event::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background-color: #378006; /* Cor do ponto */
      border-radius: 50%;
  }
  
  .fc {
    width: 100% !important;
  }
  
  /* Força o conteúdo interno do grid a ocupar a largura */
  .fc-view-harness {
    width: 100% !important;
  }
  
  /* Força o grid de dias a usar toda a largura */
  .fc-daygrid-body,
  .fc-scrollgrid,
  .fc-scrollgrid-sync-table {
    width: 100% !important;
    table-layout: fixed !important;
  }
  /* Força os nomes dos dias da semana a ocupar 100% da largura */
  .fc-col-header,
  .fc-col-header-cell,
  .fc-daygrid-week-number,
  .fc-daygrid-day,
  .fc-daygrid-day-top {
    width: 100% !important;
    table-layout: fixed !important;
  }
  
  /* Ajusta a tabela do header */
  .fc-scrollgrid-sync-table thead {
    width: 100% !important;
    display: table;
    table-layout: fixed !important;
  }
  
  /* Garante que os nomes dos dias ocupem o mesmo espaço das colunas */
  .fc-scrollgrid-sync-table th {
    width: auto !important;
    text-align: center;
  }
  
.titulo-quadrado5 {
  background-color: #FF7F7F; /* Cor de fundo */
  color: white; /* Cor do texto */
  width: 100%; /* Preenche toda a largura */
  padding: 10px; /* Espaçamento interno */
  border-radius: 15px 15px 0 0; /* Arredondar apenas o topo */
  margin: 0; /* Remover margens */
  text-align: center; /* Centralizar o texto */
  font-weight: bold; /* Deixa o texto em negrito (opcional) */
  font-size: 18px; /* Tamanho da fonte (opcional) */
}


.conteudo {
  background-color: white; /* Cor de fundo branca */
  padding: 20px; /* Espaçamento interno */
  border-radius: 0 0 15px 15px; /* Arredondar apenas a parte inferior */
  margin: 20px; /* Margem ao redor do quadrado */
}

.p-3.d-flex.flex-wrap.justify-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: -50px; /* Melhor ajuste para telas pequenas */
}

.p-3.d-flex .alert {
    flex: 1 1 calc(100% - 20px); /* Em telas menores, ocupa toda a largura */
    max-width: 400px;
}

/* Para telas maiores, divide em duas colunas */
@media (min-width: 600px) {
    .p-3.d-flex .alert {
        flex: 0 1 calc(50% - 10px);
    }
}

#conteudo-calendario {
  gap: 40px;
}

@media (max-width: 768px) {
  #conteudo-calendario {
    flex-direction: column !important; /* Altera de row para column no mobile */
  }

  .calendar {
    width: 100% !important;
    max-width: 100% !important;
  }

  .eventos-mes {
    width: 100% !important;
    max-width: 100% !important;
  }
}



