.container {
    width: auto;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.content-title {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

h1 {
    color: #6a1b9a;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0;
    height: 0;
    margin: 0;
}

h2 {
    width: fit-content;
    font-size: 26px;
    margin: 10px 0;
}

.content-desc {
    font-size: 16px;
    line-height: 1.2em;
}

.group-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.action {
    display: flex;
    justify-content: center;
    background: #6a1b9a;
    color: white;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    column-gap: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0px 0px 5px 2px #340c4d;
    transition: 0.4s;
}

.action:hover {
    opacity: 0.7;
}

.bonus {
    font-weight: bold;
    color: #ffffff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    width: 100%;
}

table,
th,
td {
    border: 1px solid #fff;
}

th,
td {
    padding: 10px;
    text-align: center;
}

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    font-size: 0.7rem;
}

th,
td {
    padding: 10px;
    text-align: center;
    word-wrap: break-word;
    /* Quebra palavras longas */
    white-space: normal;
    /* Permite que o texto quebre em várias linhas */
}

@media (max-width: 767px) {
    .container {
        padding: 20px;
    }
}