.authentication-bg {
    background-image: url("../images/city-bg.jpeg");
    height: 100vh;
    background-size: cover;
    background-position: center;
  }

  .modal-content {
    overflow-y: auto;
    max-height: 70vh;
    border-radius: 10px;
    overflow: hidden;
}

.ui-datepicker {
  z-index: 9999 !important;
}
.table-wrapper {
  overflow-x: auto; 
  max-width: 100%;
}

#regForm {
  background-color: #ffffff;
  margin:  auto;
  padding: 40px;
  width: 99%;
  min-width: 300px;
}

.h1-revisional {
  text-align: center;  
}

.tox-promotion {
  display: none; 
}

.tox-statusbar {
  display: none; 
}

.input-revisional {
  padding: 10px; 
  font-size: 16px; 
  
  box-sizing: border-box; 
  margin-bottom: 20px; 
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
}

.input-revisional:focus {
  border-color: #4CAF50; 
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
  outline: none; 
}

.button-revisional {
  background-color: #04AA6D; 
  color: white; 
  padding: 10px 20px; 
  font-size: 16px; 
  border: none; 
  border-radius: 4px; 
  cursor: pointer; 
  margin: 10px 5px; 
  transition: background-color 0.3s ease-in-out; 
}

.button-revisional:hover {
  background-color: #039658; 
}

.import_box{
  background-color: #fff;
  padding: 3.5%;
  width: 60%;
  border: 2px solid #38c66c;
  border-radius: 20px;
  margin: 10px;
  display: flex;
  align-items: center; 
  flex-direction: column; 
  position: relative;
  text-align: center; 
  justify-content: center;
}

.container-upload {
  display: flex;
  justify-content: center;
  align-items: center; 
}

input.invalid {
  background-color: #ffdddd;
}

.tab {
  display: none;
}

#prevBtn {
  background-color: #bbbbbb;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 50px auto;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.circle-revisional {
  width: 40px;
  height: 40px;
  background-color: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.step.active .circle-revisional {
  background-color: #4CAF50; 
}

.label-revisional {
  margin-top: 8px;
  font-size: 14px;
  color: #888;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: #e0e0e0;
  margin: 0 10px;
}

.step.active ~ .line {
  background-color: #4CAF50;
}

select.input-revisional {
  width: 100%;
  padding: 10px;
  font-size: 17px;
  
  margin-top: 10px;
}

select.invalid {
  background-color: #ffe7e7;
}

#data-revisional {
  width: 100% !important;
}

.form-group-total {
  display: flex;
  align-items: center; 
}

.form-label-total {
  margin-right: 10px; 
}

.card-detalhes{
  background-color: #eff2f7;
}

.card-detalhes2 {
  position: relative;
  background-color: #eff2f7;
  padding: 5px;
}

.card-detalhes2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eff2f7; /* Cor simulando o padding */
  z-index: -1;
  margin: -5px; /* Valor igual ao padding */
}

.select2-container .select2-selection--multiple .selection{
  max-height: 10px !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 0px !important;
}
.profile-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #2ecc71;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-info h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
}

.profile-info p {
  margin: 5px 0 0;
  color: #7f8c8d;
  font-size: 14px;
}

.profile-actions {
  display: flex;
  gap: 10px;
}

.btn-edit {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-color: #3498db;
  color: white;
  transition: all 0.3s ease;
}

.btn-edit:hover {
  background-color: #2980b9;
}

.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.info-section {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  height: 100%;
}

.info-section h3 {
  margin: 0 0 15px;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 8px;
}

.info-row {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.info-label {
  min-width: 150px;
  font-weight: 500;
  color: #34495e;
}

.info-value {
  flex: 1;
  color: #2c3e50;
}

/* Estilos para o histórico de concursos */
.contest-history {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contest-item {
  background-color: white;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 5px;
}

.contest-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
}

.contest-date {
  color: #7f8c8d;
  font-size: 14px;
}

.contest-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  background-color: #95a5a6;
  color: white;
}

.contest-badge.winner {
  background-color: #f1c40f;
}

.contest-badge.finalist {
  background-color: #3498db;
}

.contest-details {
  font-size: 14px;
  color: #34495e;
}

.contest-details p {
  margin: 5px 0;
}

/* Estilos para o histórico de votações */
.voting-history {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.voting-statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
}

.stat-label {
  font-size: 14px;
  color: #7f8c8d;
}

.voting-chart {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.voting-chart h4 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #2c3e50;
}

.chart-container {
  display: flex;
  height: 150px;
  align-items: flex-end;
  gap: 10px;
  padding: 10px 0;
}

.chart-bar {
  flex: 1;
  background-color: #2ecc71;
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 20px;
}

.chart-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #7f8c8d;
}

.recent-votes {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.recent-votes h4 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #2c3e50;
}

.vote-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
  flex-wrap: wrap;
  gap: 5px;
}

.vote-event {
  font-weight: 500;
  color: #2c3e50;
}

.vote-score {
  color: #27ae60;
  font-weight: 500;
}

.vote-date {
  color: #7f8c8d;
  font-size: 14px;
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.btn-back {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: white;
  background-color: #2ecc71;
  transition: background-color 0.3s ease;
}

.btn-back:hover {
  background-color: #27ae60;
}

/* Ajustes para telas grandes */
@media (min-width: 1200px) {
  .container-fluid {
      padding: 0 30px;
  }
  
  .info-section.full-width {
      grid-column: 1 / -1;
  }
}

/* Ajustes para telas médias */
@media (min-width: 768px) and (max-width: 1199px) {
  .info-container {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .info-section.full-width {
      grid-column: 1 / 3;
  }
}

/* Ajustes para telas pequenas */
@media (max-width: 767px) {
  .profile-header {
      flex-direction: column;
      text-align: center;
  }

  .info-container {
      grid-template-columns: 1fr;
  }

  .info-row {
      flex-direction: column;
  }

  .info-label {
      margin-bottom: 5px;
      min-width: 100%;
  }
  
  .contest-header {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .vote-item {
      flex-direction: column;
  }
}
/*css para editar perfil*/

* style.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#layout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar-left {
    width: 250px; /* Define a largura da barra lateral */
    flex-shrink: 0;
}

.main-content {
    margin-left: 250px;
    margin-top: 70px;
    padding: 20px;
    min-height: calc(100vh - 70px);
    transition: all 0.3s ease;
}

.page-content {
    flex: 1;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente o conteúdo */
    align-items: center; /* Centraliza verticalmente o conteúdo */
    padding: 20px;
}

.container-fluid {
    max-width: 800px; /* Define a largura máxima do contêiner */
    width: 100%; /* Garante que o contêiner ocupe toda a largura disponível */
    box-sizing: border-box; /* Inclui o padding na largura total */
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center; /* Centraliza o título */
}

 /* Estilo específico para tabela */
 .table th, .table td {
  padding: 0.65rem;
  vertical-align: middle;
}

.action-btns {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.action-btns .btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* Estilos para ocupar mais espaço */
.container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}

.card {
  margin-bottom: 16px;
}

.card-body {
  padding: 15px;
}

/* Botões de filtro - reduzir tamanho */
.col-md-3.d-flex.align-items-end .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
}

/* Aumentar largura da tabela e melhorar distribuição */
.table {
  width: 100%;
  margin-bottom: 0;
}

.table th {
  white-space: nowrap;
}

/* Garantir que a tabela ocupe todo o espaço disponível */
.table-responsive {
  overflow-x: auto;
  min-height: 400px; /* Altura mínima para parecer que ocupa mais espaço */
}

/* Melhorar espaçamento entre as linhas da tabela */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Estilos para cadastro de jurado */
.container-fluid {
  padding: 15px;
  max-width: 1400px; /* Aumentar largura máxima */
}

.card {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.card-body {
  padding: 25px; /* Aumentar padding interno */
}

/* Aumentar tamanho dos inputs e melhorar espaçamento */
.form-control, .form-select {
  padding: 0.65rem 1rem;
  height: 45px; /* Input mais alto */
  font-size: 1rem;
}

textarea.form-control {
  height: auto;
  min-height: 120px; /* Aumentar altura mínima da textarea */
}

/* Melhorar apresentação das labels */
.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #495057;
}

/* Aumentar espaçamento entre os grupos de campos */
.mb-3 {
  margin-bottom: 1.5rem !important;
}

/* Melhorar apresentação dos botões */
.btn {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
}

/* Área de preview de imagem */
.preview-row .img-thumbnail {
  max-height: 250px; /* Aumentar tamanho do preview */
  border: 2px solid #e9ecef;
  border-radius: 6px;
}

/* Área de botões de ação */
.row.mt-4 {
  margin-top: 2rem !important;
}

/* Melhoria na responsividade */
@media (min-width: 992px) {
  .form-control, .form-select {
      max-width: 100%; /* Permitir que os campos cresçam */
  }
}

/* Correção específica para o título e botão voltar */
.row .col-12 .page-title-box {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 20px !important;
  padding: 5px 0 !important;
}

.row .col-12 .page-title-box h4 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.4rem !important;
}

.row .col-12 .page-title-box .page-title-right {
  float: right !important;
  margin: 0 !important;
}

.row .col-12 .page-title-box .page-title-right .btn {
  margin: 0 !important;
  padding: 8px 16px !important;
  font-size: 0.9rem !important;
}

/* Estilos para a tabela de listagem */
.table th, .table td {
  padding: 0.65rem;
  vertical-align: middle;
}

.action-btns {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.action-btns .btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* Estilos para ocupar mais espaço na listagem */
.table-responsive {
  overflow-x: auto;
  min-height: 400px; /* Altura mínima para parecer que ocupa mais espaço */
}

/* Melhorar espaçamento entre as linhas da tabela */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Melhorias na responsividade para dispositivos móveis */
@media (max-width: 768px) {
  /* Melhorar cabeçalho em dispositivos móveis */
  .page-title-box {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
      flex-direction: column !important;
      align-items: flex-start !important;
  }
  
  .page-title-box h4 {
      margin-bottom: 0.75rem !important;
      font-size: 1.2rem !important;
  }
  
  .page-title-right {
      width: 100%;
  }
  
  .page-title-right .btn {
      display: block;
      width: 100%;
      text-align: center;
  }
  
  /* Ajustes no formulário */
  .card-body {
      padding: 15px;
  }
  
  .mb-3 {
      margin-bottom: 1rem !important;
  }
  
  /* Melhorar botões no footer do formulário */
  .row.mt-4 {
      margin-top: 1rem !important;
  }
  
  .text-center .btn {
      margin-bottom: 0.5rem;
      display: block;
      width: 100%;
  }
  
  /* Ajustes para tabelas */
  .table-responsive {
      border: 0;
      margin-bottom: 0;
  }
  
  .action-btns {
      flex-wrap: wrap;
      justify-content: flex-start;
  }
  
  /* Ajustar tamanho das fontes para melhor leitura */
  body {
      font-size: 14px;
  }
  
  /* Garantir que conteúdo principal esteja visível */
  .main-content {
      margin-left: 0;
      padding-top: 60px;
  }
  
  /* Ajustar para telas muito pequenas */
  @media (max-width: 375px) {
      .container-fluid {
          padding: 10px;
      }
      
      .form-label {
          font-size: 0.85rem;
      }
  }
}

/* Garantir que o título seja sempre visível, mesmo com sidebar aberta */
@media (min-width: 992px) {
  .main-content {
      margin-top: 0;
      padding-top: 70px;
  }
  
  .page-title-box {
      margin-top: 1rem;
  }
}

/*css tela votação de evento*/
.event-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.event-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.vote-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.event-status {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.event-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: white;
  font-size: 0.9rem;
  text-align: center;
}

.event-date {
  display: inline-block;
  background-color: #f8f9fa;
  color: #495057;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.event-participants {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/*css tela votação de participante*/
/* Estilos para o banner do evento */
.event-banner {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Estilos para os cartões de participantes */
.participant-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.participant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.participant-image {
  height: 200px;
  object-fit: cover;
}

/* Sistema de classificação por estrelas */
.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 15px 0;
}

.rating-stars i {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.rating-stars i:hover,
.rating-stars i.active {
  color: #ffc107;
}

.rating-stars i.selected {
  color: #ffc107;
}

/* Estado desabilitado após votação */
.rating-stars.voted {
  pointer-events: none;
  opacity: 0.7;
}

/* Botão de votação */
.vote-btn {
  transition: all 0.3s ease;
}

.vote-btn:disabled {
  background-color: #28a745;
  border-color: #28a745;
}

/* Status da votação */
.voting-status {
  background-color: #e3f2fd;
  border-color: #90caf9;
  color: #1976d2;
  border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
  .participant-card {
      margin-bottom: 20px;
  }
  
  .rating-stars i {
      font-size: 20px;
  }
}

/* Estilos para o botão voltar */
.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateX(-5px);
}

/* Ajustes para o layout com sidebar */
.main-content {
    margin-left: 250px;
    padding: 70px 12px 60px;
}

@media (max-width: 991.98px) {
    .main-content {
        margin-left: 0;
    }
}

/* Melhorias nos cards de participantes */
.participant-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.participant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.participant-image {
    height: 200px;
    object-fit: cover;
}

/* Ajustes no contador de votos */
.voting-status {
    background-color: #e3f2fd;
    border-color: #90caf9;
    color: #1976d2;
    border-radius: 8px;
}

/* Estilos para o CAPTCHA */
.captcha-container {
    max-width: 300px;
    margin: 0 auto;
}

.captcha-box {
    border: 1px dashed #ccc;
    border-radius: 4px;
    height: 50px;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Botões de confirmação de voto */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .participant-card {
        margin-bottom: 20px;
    }
    
    .event-banner {
        padding: 15px;
    }
    
    .event-info span {
        display: block;
        margin-bottom: 10px;
    }
    
    .captcha-container {
        max-width: 250px;
    }
}

/* Estilos para o preview do participante no modal */
.participant-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.participant-preview img {
    object-fit: cover;
    border: 3px solid #4e73df;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.participant-preview h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 18px;
}

.participant-preview p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Melhorias no modal */
.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Estilos para o contador de votos no card */
.vote-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Estilos para o contador de votos no modal */
.vote-count-pill {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Barra de progresso */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    margin-bottom: 15px;
}

.progress-bar {
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Estilos para a página de resultados */

/* Pódio dos vencedores */
.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 300px;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
}

.podium-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.podium-item:hover {
    transform: translateY(-10px);
}

.podium-position {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 2;
    font-size: 14px;
}

.podium-first .podium-position {
    background-color: #ffc107;
}

.podium-second .podium-position {
    background-color: #6c757d;
}

.podium-third .podium-position {
    background-color: #cd7f32;
}

.podium-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: relative;
}

.podium-first .podium-avatar {
    width: 160px;
    height: 160px;
    border: 5px solid #ffc107;
}

.podium-second .podium-avatar {
    border: 4px solid #6c757d;
}

.podium-third .podium-avatar {
    border: 4px solid #cd7f32;
}

.podium-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podium-crown {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffc107;
    font-size: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.podium-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.podium-first .podium-name {
    font-size: 18px;
}

.podium-votes {
    color: #6c757d;
    font-size: 14px;
    background-color: rgba(0,0,0,0.05);
    padding: 3px 10px;
    border-radius: 15px;
    display: inline-block;
}

.podium-first .podium-votes {
    background-color: rgba(255, 193, 7, 0.2);
    color: #856404;
}

.podium-second .podium-votes {
    background-color: rgba(108, 117, 125, 0.2);
}

.podium-third .podium-votes {
    background-color: rgba(205, 127, 50, 0.2);
}

/* Estilos para a tabela de classificação */
.avatar-sm {
    width: 36px;
    height: 36px;
    object-fit: cover;
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.04);
}

.table-warning {
    background-color: rgba(255, 193, 7, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .podium-container {
        height: 400px;
        flex-direction: column;
        align-items: center;
    }
    
    .podium-item {
        margin-bottom: 20px;
    }
    
    .podium-first {
        order: 1;
    }
    
    .podium-second {
        order: 2;
    }
    
    .podium-third {
        order: 3;
    }
    
    .podium-avatar, 
    .podium-first .podium-avatar, 
    .podium-second .podium-avatar, 
    .podium-third .podium-avatar {
        width: 100px;
        height: 100px;
    }
}

/* Estilos para o contador de votos na barra de progresso */
.progress-wrapper {
    position: relative;
}

.progress-vote-count {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 2px;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Estilos para o modal de cadastro */
#registrationModal .fas.fa-user-plus {
    color: #1976d2;
    margin-bottom: 15px;
}

#registrationModal .alert-info {
    background-color: #e3f2fd;
    border-color: #90caf9;
    color: #0d47a1;
}

#registrationModal .modal-header {
    border-bottom: 3px solid #1565c0;
}

#registrationModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem;
}

#registrationModal ul {
    padding-left: 1.5rem;
}

#registrationModal ul li {
    margin-bottom: 5px;
}

/* Estilos para o Checkout */
.checkout-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.checkout-step {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 15px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #e9ecef;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.step-active .step-number {
    background-color: #556ee6;
    color: white;
}

.step-complete .step-number {
    background-color: #34c38f;
    color: white;
}

/* Estilos para opções de pagamento */
.payment-option {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover, .payment-option.selected {
    border-color: #556ee6;
    background-color: #f8f9fa;
}

.payment-option.selected {
    box-shadow: 0 0 0 2px rgba(85, 110, 230, 0.25);
}

.payment-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-icon {
    font-size: 24px;
    margin-right: 10px;
}

/* Estilos para cards de plano */
.plan-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.plan-card:hover, .plan-card.selected {
    border-color: #556ee6;
    background-color: #f8f9fa;
}

.plan-card.selected {
    box-shadow: 0 0 0 2px rgba(85, 110, 230, 0.25);
}

.plan-price {
    font-size: 24px;
    font-weight: bold;
    color: #556ee6;
}

.plan-period {
    color: #74788d;
    font-size: 14px;
}

/* Estilos para o resumo do checkout */
.checkout-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

/* Estilos para informações do usuário */
.user-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Estilos para Sidebar e Header */
#page-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1002;
    background-color: #ffffff;
    box-shadow: 0 0.75rem 1.5rem rgba(18,38,63,.03);
}

.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 70px;
    background-color: #ffffff;
}

.navbar-logo-box {
    width: 250px;
    padding: 0 1.5rem;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.sidebar-left {
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    width: 250px;
    background: #ffffff;
    border-right: 1px solid #e9ecef;
    z-index: 1001;
    box-shadow: 0 0.75rem 1.5rem rgba(18,38,63,.03);
    transition: all 0.3s ease;
}

.left-menu {
    padding: 20px 0;
}

.left-menu li {
    position: relative;
    list-style: none;
}

.left-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #495057;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.left-menu li a i {
    width: 20px;
    margin-right: 10px;
    font-size: 16px;
}

.left-menu li a:hover,
.left-menu li a.active {
    color: #556ee6;
    background-color: #f8f9fa;
}

/* Ajuste do conteúdo principal */
.main-content {
    margin-left: 250px;
    margin-top: 70px;
    padding: 20px;
    min-height: calc(100vh - 70px);
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .sidebar-left {
        position: fixed;
        top: 70px;
        left: -250px;
        bottom: 0;
        z-index: 1002;
        transition: all 0.3s ease-in-out;
    }

    .sidebar-left.show {
        left: 0;
    }

    .main-content {
        margin-left: 0 !important;
        transition: all 0.3s ease-in-out;
    }

    .navbar-logo-box {
        width: auto !important;
    }

    /* Overlay quando a sidebar estiver aberta */
    .sidebar-left.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Garantir que o botão da sidebar seja visível em mobile */
.sidebar-btn {
    display: none;
}

@media (max-width: 991.98px) {
    .sidebar-btn {
        display: inline-block;
        cursor: pointer;
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: transparent;
        border: 0;
    }
}

/* Adicionar como uma media query separada */
@media (max-width: 375px) {
    .container-fluid {
        padding: 10px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.titulo {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

.button-group-left {
    position: absolute;
    top: 20px;
    left: 20px;
}

.btn-back {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: white;
    background-color: #2ecc71;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #27ae60;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group.nome {
    flex: 2 1 60%;
}

.form-group.status {
    flex: 1 1 20%;
}

.form-group.cep {
    flex: 1 1 20%;
}

.form-group.logradouro {
    flex: 3 1 70%;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #95a5a6;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.button-group button {
    padding: 12px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.button-group button[type="submit"] {
    background-color: #2ecc71;
    box-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
}

.button-group button[type="reset"] {
    background-color: #e8e8e8;
    color: #34495e;
}

.button-group button:hover {
    transform: translateY(-2px);
}

.button-group button[type="submit"]:hover {
    background-color: #27ae60;
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
}

.button-group button[type="reset"]:hover {
    background-color: #dcdde1;
}

    /* Estilo específico para tabela */
    .table th, .table td {
        padding: 0.65rem;
        vertical-align: middle;
    }
    
    .action-btns {
        display: flex;
        justify-content: center;
        gap: 5px;
    }
    
    .action-btns .btn {
        width: 30px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .table-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    /* Estilos para ocupar mais espaço */
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .card {
        margin-bottom: 16px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    /* Botões de filtro - reduzir tamanho */
    .col-md-3.d-flex.align-items-end .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Aumentar largura da tabela e melhorar distribuição */
    .table {
        width: 100%;
        margin-bottom: 0;
    }
    
    .table th {
        white-space: nowrap;
    }
    
    /* Garantir que a tabela ocupe todo o espaço disponível */
    .table-responsive {
        overflow-x: auto;
        min-height: 400px; /* Altura mínima para parecer que ocupa mais espaço */
    }
    
    /* Melhorar espaçamento entre as linhas da tabela */
    .table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    .table-hover tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.04);
    }
     .sidebar-left {
            height: 100vh;
            width: 250px;
            position: fixed;
            top: 0;
            left: 0;
            background-color: #ffffff;
            z-index: 1045;
            padding-top: 70px;
            transition: all 0.3s ease;
        }

        /* Estilo do botão do menu */
        .menu-trigger {
            display: none;
            background: transparent;
            border: none;
            font-size: 22px;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* Overlay para fundo escuro */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1044;
        }

        /* Regras específicas para mobile */
        @media (max-width: 991.98px) {
            .menu-trigger {
                display: inline-block;
            }

            .sidebar-left {
                left: -250px;
            }

            .sidebar-left.active {
                left: 0;
            }

            .sidebar-overlay.active {
                display: block;
            }

            .main-content {
                margin-left: 0 !important;
            }
        }

        /* Regras para desktop */
        @media (min-width: 992px) {
            .main-content {
                margin-left: 250px;
            }
            
            .sidebar-overlay {
                display: none !important;
            }
        }

        /* Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            z-index: 1040;
        }

        .navbar {
            height: 100%;
            padding: 0 1.5rem;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            width: 100%;
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Sidebar Styles */
        .main-sidebar {
            position: fixed;
            top: 70px;
            left: 0;
            bottom: 0;
            width: 250px;
            background: #ffffff;
            box-shadow: 2px 0 4px rgba(0,0,0,0.1);
            z-index: 1030;
            transition: transform 0.3s ease;
        }

        .sidebar-content {
            height: 100%;
            overflow-y: auto;
        }

        .nav-list {
            padding: 1rem 0;
            list-style: none;
            margin: 0;
        }

        .nav-item {
            margin: 0.5rem 0;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            gap: 1rem;
        }

        .nav-link:hover,
        .nav-link.active {
            background: #f8f9fa;
            color: #007bff;
        }

        .nav-link i {
            width: 20px;
            text-align: center;
        }

        /* Profile Dropdown */
        .profile-dropdown {
            position: relative;
        }

        .profile-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
        }

        .profile-img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
        }

        /* Mobile Styles */
        @media (max-width: 991.98px) {
            .menu-toggle {
                display: block;
            }

            .main-sidebar {
                transform: translateX(-100%);
            }

            .main-sidebar.active {
                transform: translateX(0);
            }

            .sidebar-overlay {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                z-index: 1025;
            }

            .sidebar-overlay.active {
                display: block;
            }

            .main-content {
                margin-left: 0 !important;
            }
        }

        /* Desktop Styles */
        @media (min-width: 992px) {
            .main-content {
                margin-left: 250px;
                margin-top: 70px;
            }
        }

        .sidebar-left {
          height: 100vh;
          width: 250px;
          position: fixed;
          top: 0;
          left: 0;
          background-color: #ffffff;
          z-index: 1045;
          padding-top: 70px;
          transition: all 0.3s ease;
      }

      /* Estilo do botão do menu */
      .menu-trigger {
          display: none;
          background: transparent;
          border: none;
          font-size: 22px;
          cursor: pointer;
          padding: 5px 10px;
      }

      /* Overlay para fundo escuro */
      .sidebar-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.5);
          z-index: 1044;
      }

      /* Regras específicas para mobile */
      @media (max-width: 991.98px) {
          .menu-trigger {
              display: inline-block;
          }

          .sidebar-left {
              left: -250px;
          }

          .sidebar-left.active {
              left: 0;
          }

          .sidebar-overlay.active {
              display: block;
          }

          .main-content {
              margin-left: 0 !important;
          }
      }

      /* Regras para desktop */
      @media (min-width: 992px) {
          .main-content {
              margin-left: 250px;
          }
          
          .sidebar-overlay {
              display: none !important;
          }
      }

      /* Header Styles */
      .main-header {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          height: 70px;
          background: #ffffff;
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          z-index: 1040;
      }

      .navbar {
          height: 100%;
          padding: 0 1.5rem;
      }

      .navbar-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          height: 100%;
          width: 100%;
      }

      .navbar-left {
          display: flex;
          align-items: center;
          gap: 1rem;
      }

      .menu-toggle {
          display: none;
          background: none;
          border: none;
          font-size: 1.5rem;
          cursor: pointer;
          padding: 0.5rem;
      }

      /* Sidebar Styles */
      .main-sidebar {
          position: fixed;
          top: 70px;
          left: 0;
          bottom: 0;
          width: 250px;
          background: #ffffff;
          box-shadow: 2px 0 4px rgba(0,0,0,0.1);
          z-index: 1030;
          transition: transform 0.3s ease;
      }

      .sidebar-content {
          height: 100%;
          overflow-y: auto;
      }

      .nav-list {
          padding: 1rem 0;
          list-style: none;
          margin: 0;
      }

      .nav-item {
          margin: 0.5rem 0;
      }

      .nav-link {
          display: flex;
          align-items: center;
          padding: 0.75rem 1.5rem;
          color: #333;
          text-decoration: none;
          transition: all 0.3s;
          gap: 1rem;
      }

      .nav-link:hover,
      .nav-link.active {
          background: #f8f9fa;
          color: #007bff;
      }

      .nav-link i {
          width: 20px;
          text-align: center;
      }

      /* Profile Dropdown */
      .profile-dropdown {
          position: relative;
      }

      .profile-btn {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          background: none;
          border: none;
          padding: 0.5rem;
          cursor: pointer;
      }

      .profile-img {
          width: 35px;
          height: 35px;
          border-radius: 50%;
      }

      /* Mobile Styles */
      @media (max-width: 991.98px) {
          .menu-toggle {
              display: block;
          }

          .main-sidebar {
              transform: translateX(-100%);
          }

          .main-sidebar.active {
              transform: translateX(0);
          }

          .sidebar-overlay {
              display: none;
              position: fixed;
              top: 70px;
              left: 0;
              right: 0;
              bottom: 0;
              background: rgba(0,0,0,0.5);
              z-index: 1025;
          }

          .sidebar-overlay.active {
              display: block;
          }

          .main-content {
              margin-left: 0 !important;
          }
      }

      /* Desktop Styles */
      @media (min-width: 992px) {
          .main-content {
              margin-left: 250px;
              margin-top: 70px;
          }
      }

        /* Reset da sidebar para garantir visibilidade */
       /* ========== Responsividade Global ========== */

/* Variáveis globais */
:root {
  --header-height: 70px;
  --sidebar-width: 250px;
  --mobile-breakpoint: 991.98px;
}

/* Layout Base */
.main-content {
  transition: margin-left 0.3s ease;
  min-height: calc(100vh - var(--header-height));
  padding: 1rem;
}

@media (min-width: 992px) {
  .main-content {
      margin-left: var(--sidebar-width);
  }
}

@media (max-width: 991.98px) {
  .main-content {
      margin-left: 0;
      padding: 0.5rem;
  }
}

/* Header Responsivo */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1040;
}

.navbar-container {
  padding: 0 1rem;
}

@media (max-width: 991.98px) {
  .navbar-container {
      padding: 0 0.5rem;
  }

  .profile-name {
      display: none;
  }
}

/* Sidebar Responsiva */
.main-sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  z-index: 1030;
  transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .main-sidebar {
      transform: translateX(-100%);
  }

  .main-sidebar.active {
      transform: translateX(0);
  }
}

/* Cards e Containers */
.card {
  margin-bottom: 1rem;
  border-radius: 8px;
}

.container-fluid {
  padding: 1rem;
}

@media (max-width: 767.98px) {
  .container-fluid {
      padding: 0.5rem;
  }
}

/* Grids Responsivos */
.grid-container {
  display: grid;
  gap: 1rem;
}

@media (min-width: 576px) {
  .grid-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-container {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-container {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Formulários Responsivos */
.form-group {
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .form-row {
      flex-direction: column;
  }

  .form-group {
      width: 100%;
  }

  .button-group {
      flex-direction: column;
      gap: 0.5rem;
  }

  .button-group button {
      width: 100%;
  }
}

/* Tabelas Responsivas */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
  .table-responsive table {
      font-size: 0.875rem;
  }

  .table-responsive th,
  .table-responsive td {
      padding: 0.5rem;
  }

  .action-btns {
      flex-direction: column;
      gap: 0.25rem;
  }
}

/* Modal Responsivo */
.modal-dialog {
  margin: 0.5rem;
}

@media (min-width: 576px) {
  .modal-dialog {
      margin: 1.75rem auto;
  }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 375px) {
  .container-fluid {
      padding: 0.25rem;
  }

  .card {
      margin-bottom: 0.5rem;
  }

  .form-control {
      font-size: 0.875rem;
  }

  .btn {
      padding: 0.375rem 0.75rem;
      font-size: 0.875rem;
  }
}

/* Ajustes específicos para cada seção */

/* Dashboard */
.dashboard-stats {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dashboard-stats {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .dashboard-stats {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Eventos */
.eventos-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .eventos-list {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .eventos-list {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Perfil */
.profile-container {
  padding: 1rem;
}

@media (max-width: 767.98px) {
  .profile-header {
      flex-direction: column;
      text-align: center;
  }

  .profile-actions {
      width: 100%;
      justify-content: center;
      margin-top: 1rem;
  }
}

/* Carteira */
.wallet-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wallet-cards {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .wallet-cards {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Votação */
.voting-container {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .voting-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .voting-container {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Ajustes de navegação */
.nav-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
  .nav-tabs {
      margin: 0 -1rem;
      padding: 0 1rem;
  }

  .nav-tabs .nav-link {
      white-space: nowrap;
  }
}

/* Utilitários responsivos */
.d-xs-none { display: none !important; }
.d-xs-block { display: block !important; }
.d-xs-flex { display: flex !important; }

@media (min-width: 576px) {
  .d-sm-none { display: none !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
}

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
}

@media (min-width: 1200px) {
  .d-xl-none { display: none !important; }
  .d-xl-block { display: block !important; }
  .d-xl-flex { display: flex !important; }
}
