/* PLACE YOU CUSTOM STYLES IN THIS FILE */
.logo-image-background {
    background-image: url('/assets/images/logo.svg');
    background-size: cover; /* Ou use 'cover', dependendo do efeito desejado */
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;  /* Ajuste conforme necessário */
    height: 400px; /* Ajuste conforme necessário */
}

.preloader-container {
    display: flex;
    flex-direction: column; /* Coloca os itens um abaixo do outro */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center;     /* Centraliza horizontalmente */
    height: 100vh;           /* Faz o container ocupar 100% da altura da viewport */
}


.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.spinner-container.visible {
    z-index: 2;
    opacity: 1; /* Totalmente visível */
    pointer-events: all; /* Permite bloquear cliques */
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3); /* Cor do anel externo */
    border-top: 8px solid white; /* Cor do anel giratório */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

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

.page-title {
    margin-top:-30px;
    margin-bottom: 50px;
    border-bottom: 1px dotted;
    border-color: rgba(255, 255, 255, 0.6)
}

.sing-form-spinning {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    bottom:0;
    width: 600px;
    height: 550px;
    background-color: rgba(0, 0, 0, 0.705);
    border-radius: 15px;
    flex-direction: column;
}

.sing-form-spinning-container {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: all;
    backdrop-filter: blur(2px);
    transition: opacity 0.5s ease;
}

.sidebar-ablaze {
    background-color: rgba(0, 0, 0, 0.82) !important;
    backdrop-filter: blur(10px);
    margin-bottom: 100px;
    height: auto;
    border-left: 3px solid rgba(200, 160, 60, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sidebar-container-offset {
    margin-top: -180px;
}








/* Input */
/* From Uiverse.io by mrhyddenn */ 
.form__group {
    position: relative;
    padding: 20px 0 0;
    width: 100%;
    max-width: 100%;
  }

  



/* Notícias */

.post {
    background-color: rgba(0, 0, 0, 0.82) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 730px;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    border-left: 3px solid rgba(200, 160, 60, 0.7);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.post:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.65), -2px 0 18px rgba(200, 160, 60, 0.18);
    border-color: rgba(200, 160, 60, 1);
}

.post img {
    width: 40%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    width: 60%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Topo (texto) e base (botão) */
    align-items: flex-start;
    height: 100%;
}

.post-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px; /* Espaço entre título, data e resumo */
}

.nk-post-title {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.nk-post-date {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    padding-top: 2px; /* ou 0 se quiser ainda mais colado */
    line-height: 1.2;
}
h4.nk-post-title.h3 {
    margin-bottom: 0 !important;
}
.post-text {
    font-size: 15px;
    color: rgba(200, 200, 200, 0.75);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.55;
}

.post-read-more {
    align-self: flex-end; /* Botão à direita */
}

.active-inactive-news-list-admin {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: auto;
    margin-top: 10px;
}
.submenu {
  padding: 0;
  list-style: none;
  margin-bottom: -20px !important;
}
.submenu li {
    position: relative;
    padding-left: 25px;
    list-style: none;
    display: flex;
    align-items: center;     /* <--- centraliza verticalmente */
    justify-content: center; /* <--- centraliza horizontalmente */
}

.submenu li::before {
    content: "»";
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%); /* <--- centraliza verticalmente */
}


.table-scroll {
  overflow-x: auto;
  width: 100%;
  padding-bottom: 400px;
}

.title-background {
    background-color: rgb(0,0,0,0.8);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px auto 28px;
    max-width: 500px;
}
.hero-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 160, 60, 0.7), transparent);
}
.hero-divider-icon {
    color: rgba(200, 160, 60, 0.9);
    font-size: 1.2rem;
}
.hero-cta {
    margin-top: 10px;
    display: inline-block;
}
.news-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    margin-top: 10px;
}
.news-section-header h3 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 160, 60, 0.95);
}
.news-section-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(200, 160, 60, 0.4), transparent);
}
.post-category-badge {
    display: inline-block;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(200, 160, 60, 0.95);
    border: 1px solid rgba(200, 160, 60, 0.45);
    background: rgba(200, 160, 60, 0.08);
    line-height: 1.6;
}
.side-line {
    border-left: 3px solid rgba(200, 160, 60, 0.7);
}
@media (max-width: 1199px) {
    .post {
        flex-direction: column;
        height: auto;
    }
    .post img {
        width: 100%;
        height: 200px;
    }
    .post-content {
        width: 100%;
    }
    .submenu li::before {
        left: 35%;
    }
    .nk-widget {
        padding-left: 50px;
        padding-right: 50px;
    }


}
@media (max-width: 991px) {
    .sidebar-container-offset {
        margin-top: 0px;
    }
}