/* 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: rgb(0,0,0,0.8) !important;
    backdrop-filter: blur(10px);
    margin-bottom: 100px;
    height:100%;
}









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

  



/* Notícias */

.post {
    background-color: rgb(0,0,0,0.8) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 730px;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.post img {
    width: 40%;
    height: 100%;
    object-fit: cover;
}
.post-content {
    width: 60%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.post-title {
    align-self: flex-start;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.post-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.post-read-more {

}
@media (max-width: 768px) {
    .post {
        flex-direction: column;
        height: auto;
    }
    .post img {
        width: 100%;
        height: 200px;
    }
    .post-content {
        width: 100%;
    }
}