html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    padding-bottom: 30px;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Fica atrás de tudo */
    background-color: #101B2D; /* Sua cor de fundo */
}

body {
    background-color: #101B2D;
    color: white;
}


nav {
    background-color: #101B2D;
    color: white;
}
footer {
    background-color: #1A2B44;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.titulo-destaque {
    color: #AAB8C2;
    font-weight: 600;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
    background-color: transparent;
    border: none;
}

.dropdown-menu {
    background-color: #1a2639; /* cor de fundo personalizada */
    border: none;
}

.dropdown-menu.btn-secondary {
    color: #ffffff;
}
.dropdown-menu .dropdown-item {
    color: #ffffff; /* cor do texto */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #293a54; /* cor de fundo ao passar o mouse */
    color: #00DC82; /* cor do texto ao passar o mouse */
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.destaque {
    color: #00DC82;
    font-weight: bold;
}

.texto-justificado {
    text-align: justify;
    line-height: 1.6;
    text-justify: inter-word;
}

.glider-contain {
    margin-top: 1rem;
    max-width: 80%;
    overflow: hidden;
}

.glider img {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 20px;
    object-fit: contain;
}

.btn-secondary {
    background-color: #00ffd5 !important;
}

.nav-pills.nav-fill .nav-item {
    flex: 1 1 auto;
}

/* Estilo padrão das abas */
.nav-pills .nav-link {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Hover */
.nav-pills .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Aba ativa */
.nav-pills .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1A2B44; /* cor do botão */
    color: #ffffff; /* cor do texto */
    font-size: 1.3rem; /* tamanho do texto */
    font-weight: bold;
    padding: 14px 40px;
    border-radius: 50px; /* borda arredondada */
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #00DC82; /* cor ao passar o mouse */
    transform: translateY(-2px); /* leve efeito de subida */
}

.video-youtube {
    max-width: 800px;
    margin: auto;
}

#releases strong {
    display: block;
    color: white;
}

#releases p {
    font-size: 0.95rem;
    color: white;
}

#releases li {
    padding-bottom: 1rem;
}