/* 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;
}

/* BOTÃO DE CUPONS */
.btn-participantes {
    font-family: sans-serif;
    display: inline-block;
    background-color: transparent;
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #FF6600;
    /* Borda Laranja */
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.btn-participantes:hover {
    background-color: #FF6600;
    color: #000000;
    /* Texto preto no hover para contraste */
    box-shadow: 0 0 15px #FF6600;
    transform: scale(1.05);
}

/* 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;
}