

.floating-div {
    display: none; /* Inicialmente escondido */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height:380px;
    padding: 5px;
    background-color: #f8d7da;
    color: red;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);
    z-index: 1000;
    text-align: left;
    letter-spacing: 3px;
    
    }




/*

button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #d32f2f;
}


*/




