/* CSS para o vídeo */
#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: fit-content;
    height: fit-content;
    z-index: -100;
    background-size: cover;
    filter: brightness(1);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* CSS BASE DAS IMAGENS */
.content img {
    max-width: 80%;
    display: block;
    position: static;
    opacity: 1;
    transform: scale(1);
    animation: slow-scale-in 20s ease-out forwards;
}

/* ANIMAÇÃO*/
@keyframes slow-scale-in {
    0% {
        opacity: 0;
        transform: scale(0.6);
        /* Começa pequena e invisível */
    }

    10% {
        opacity: 1;
        /* Torna-se visível no início da animação */
    }

    100% {
        transform: scale(1);
        /* Termina no tamanho normal */
    }
}

/* Tamanhos específicos */
#logoImg {
    max-height: 250px;
}

#sloganImg {
    max-height: 100px;
}