.container {
    width: fit-content;
    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;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

p {
    width: 100%;
}

h1 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

h2 {
    font-size: 16px;
    margin: 10px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.btn-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.action {
    display: flex;
    justify-content: center;
    background: #6a1b9a;
    color: white;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    column-gap: 10px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.action:hover {
    background: #4a1174;
}

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

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99;
}



.popup-content {
    font-family: Karla;

    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.close-popup {
    margin-top: 10px;
    background: rgb(241, 47, 47);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#cupomForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-content h2 {
    margin-bottom: 20px;
}

#cupomForm .inputBlock {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#cupomForm label {
    text-align: left;
    font-weight: 600;
    padding: 0 5px;
}

#cupomForm input {
    font-family: Karla;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
}

#cupomForm .action {
    font-size: 16px;
    cursor: pointer;
}

.inputBlock.aceite label {
    display: flex;
    column-gap: 10px;
}

#loading {
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    position: fixed;
    color: white;
    z-index: 1000;
}

.loading-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
}

#successMessage {
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    position: fixed;
    color: white;
    z-index: 1000;
}

.sucess-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 128, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
}

.submit-btn {
    box-shadow: 0px 0px 5px 0px #340c4d;
    border: 2px solid #340c4d;
    transition: 0.4s;
}

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