.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c4633;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    transition: background-color 1s ease-out;
}

.splash-screen.transition {
    background-color: transparent;
    pointer-events: none;
}

.splash-screen.released {
    position: relative;   /* entra no fluxo normal */
    height: 100vh;        /* mantém altura tela cheia */
    background-color: #0c4633; /* mantém cor de fundo */
}

.splash-logo {
    filter: brightness(0) invert(1);
    animation: fadeInScale 1.5s ease-in-out;
    max-width: 400px;
    transition: all 0.6s ease-in-out;
    position: relative;
    z-index: 1;
}

.splash-slogan {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    color: white;
    margin-top: 10px;
    animation: fadeInUp 2s ease-in-out;
    font-weight: 500;
    transition: opacity 0.8s ease-out;
    position: relative;
    z-index: 1;
}
.splash-slogan2 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    z-index: 1;
    opacity: 0;
    transform: translateY(-220%);
    transition: all 0.8s ease-in;
    text-align: center;
    margin-top: 25px;
}

.splash-slogan2.visible {
    opacity: 1;
    /* transform: translateY(-220%); */
}

.splash-slogan.fade-out {
    opacity: 0;
}

.splash-logo.released {
    position: relative; /* deixa o splash entrar no fluxo normal da página */
}



/* animações já existentes */
@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.8);}
    100% { opacity: 1; transform: scale(1);}
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
}