/* Estilização do título */
         .titulo-editais {
             font-size: 32px;
             font-weight: bold;
             color: #9b59b6;
             text-align: center;
             margin-top: 30px;
         }
 
         /* Caixa de atenção */
         .atencao {
             background: #f8f9fa;
             padding: 15px;
             border-left: 5px solid #9b59b6;
             margin: 20px auto;
             width: 80%;
         }
 
         /* Blocos dos editais */
         .edital {
             background: #e8c3fc;
             padding: 15px;
             margin: 20px auto;
             width: 80%;
             border-radius: 5px;
         }
 
         .edital h3 {
             font-size: 20px;
             font-weight: bold;
             color: #4a235a;
         }
 
         .edital p, .edital a {
             font-size: 16px;
             color: #4a235a;
             text-decoration: none;
         }
 
         .edital a:hover {
             text-decoration: underline;
         }

/* Loader apenas dentro da seção */
.section-loader {
  width: 100%;
  min-height: 120px;          /* altura mínima para não "pular" layout */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinner redondo */
.section-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(155, 89, 182, 0.2);
  border-top: 4px solid #9b59b6; /* cor CERISE */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
