header .wrapper-content .menu .nav-link.home {
    color: #FFE86D;
}

footer .menu-wrapper .menu .home {
    color: #FFE86D;
}

.wrapper-cover {
    background-image: url("../img/Page1/cover1.jpg");
}

.hidden {
    display: none;
}

.wrapper-msg{
    display: block;
    position: fixed;
    margin: 0 auto;
    top: 0;
    margin-top: 55px;
    width: 100%;
    text-align: center;
    z-index: 110;
}

#success-message {
    display: none;
    background-color: rgb(193, 255, 193);
    color: white;
    text-align: center;
    border: solid 1.5px;
    border-radius: 10px;
    border-color: #00e760;
    color: #00a946;
    width: 60%;
    padding: 10px 0;
    font-size: 18px;
    justify-content: center;
    opacity: 100; 
    transition: opacity 0.5s ease-in-out; 
    flex-direction: column;
    margin: 0 auto;
    
}
.progress-bar {
    height: 4px;
    width: 100%;
    background-color: #00e760;
    animation: progress 7s linear forwards; /* Animará a barra de progresso em 5 segundos */
}

@keyframes progress {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}



@media screen and (max-width: 550px) {
    #success-message {
        width: 95%;
        font-size: 14px;
    }
}



