.selecao-page {
    background-image: url('/assets/waves.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
}

.selecao-page .container {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.selecao-page .module-card {
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.selecao-page .module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.selecao-page .card-body {
    display: flex;
    align-items: center;
    height: 100%;
}

.selecao-page .card-body img {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selecao-page .card-description {
    flex: 1;
    margin-left: 15px;
}

.selecao-page .card-footer {
    display: flex;
    justify-content: space-between;
}

.selecao-page .exit-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
}

.selecao-page .exit-btn i {
    margin-right: 5px;
}

.fixed-logo {
    height: auto;
    width: 15rem;
}


