.d-none {
    display: none !important;
}

.bool.select {
    background: #4b4bc8 !important;
    color: white !important;
}

.grade.select {
    transform: scale(1.08) !important;
}

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk&display=swap');
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Hanken Grotesk", sans-serif;
}

/* Estilos globais */

body {
    margin: 0;
    padding: 0;
    background-image: url('./image\ \(1\).png');
    font-family: Arial, sans-serif;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header img {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.container {
    padding: 30px 3%;
    margin: 0 auto;
    max-width: 650px;
}

footer {
    margin: 5px 3%;
    display: flex;
}

footer p {
    color: grey;
}

.button {
    --h-button: 48px;
    --w-button: 102px;
    --round: 0.75rem;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.25s ease;
    background: radial-gradient( 65.28% 65.28% at 50% 100%, rgba(223, 113, 255, 0.8) 0%, rgba(223, 113, 255, 0) 100%), linear-gradient(0deg, #7a5af8, #7a5af8);
    border-radius: var(--round);
    border: none;
    outline: none;
    padding: 12px 18px;
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    inset: var(--space);
    transition: all 0.5s ease-in-out;
    border-radius: calc(var(--round) - var(--space));
    z-index: 0;
}

.button::before {
    --space: 1px;
    background: linear-gradient( 177.95deg, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0) 100%);
}

.button::after {
    --space: 2px;
    background: radial-gradient( 65.28% 65.28% at 50% 100%, rgba(223, 113, 255, 0.8) 0%, rgba(223, 113, 255, 0) 100%), linear-gradient(0deg, #7a5af8, #7a5af8);
}

.button:active {
    transform: scale(0.95);
}

.fold {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    height: 1rem;
    width: 1rem;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    background: radial-gradient( 100% 75% at 55%, rgba(223, 113, 255, 0.8) 0%, rgba(223, 113, 255, 0) 100%);
    box-shadow: 0 0 3px black;
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: var(--round);
}

.fold::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 150%;
    transform: rotate(45deg) translateX(0%) translateY(-18px);
    background-color: #e8e8e8;
    pointer-events: none;
}

.button:hover .fold {
    margin-top: -1rem;
    margin-right: -1rem;
}

.points_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.points_wrapper .point {
    bottom: -10px;
    position: absolute;
    animation: floating-points infinite ease-in-out;
    pointer-events: none;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 9999px;
}

@keyframes floating-points {
    0% {
        transform: translateY(0);
    }
    85% {
        opacity: 0;
    }
    100% {
        transform: translateY(-55px);
        opacity: 0;
    }
}

.points_wrapper .point:nth-child(1) {
    left: 10%;
    opacity: 1;
    animation-duration: 2.35s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(2) {
    left: 30%;
    opacity: 0.7;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(3) {
    left: 25%;
    opacity: 0.8;
    animation-duration: 2.2s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(4) {
    left: 44%;
    opacity: 0.6;
    animation-duration: 2.05s;
}

.points_wrapper .point:nth-child(5) {
    left: 50%;
    opacity: 1;
    animation-duration: 1.9s;
}

.points_wrapper .point:nth-child(6) {
    left: 75%;
    opacity: 0.5;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(7) {
    left: 88%;
    opacity: 0.9;
    animation-duration: 2.2s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(8) {
    left: 58%;
    opacity: 0.8;
    animation-duration: 2.25s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(9) {
    left: 98%;
    opacity: 0.6;
    animation-duration: 2.6s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(10) {
    left: 65%;
    opacity: 1;
    animation-duration: 2.5s;
    animation-delay: 0.2s;
}

.inner {
    z-index: 2;
    gap: 6px;
    position: relative;
    width: 100%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
}

.inner svg.icon {
    width: 18px;
    height: 18px;
    transition: fill 0.1s linear;
}

.button:focus svg.icon {
    fill: white;
}

.button:hover svg.icon {
    fill: transparent;
    animation: dasharray 1s linear forwards, filled 0.1s linear forwards 0.95s;
}

@keyframes dasharray {
    from {
        stroke-dasharray: 0 0 0 0;
    }
    to {
        stroke-dasharray: 68 68 0 0;
    }
}

@keyframes filled {
    to {
        fill: white;
    }
}

/* End custom CSS */

#login {
    background-color: #49AC5C;
}

body {
    background-color: #222222;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url('../background_whats.html');
    /* Caminho da sua imagem de fundo */
}

#notification-container {
    position: fixed;
    top: 10px;
    /* Alinhado no topo */
    left: 20px;
    /* Alinhado à esquerda */
    width: 300px;
    z-index: 1000;
}

.notification {
    background-color: #1f1f1f;
    color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInOut 6s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Menu de cima */

.menu {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 70px;
    /* Ajuste a altura desejada */
    background: linear-gradient(000, #000, #000);
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    padding: 5px;
    box-sizing: border-box;
    z-index: 9998;
    /* Para garantir que o menu fique acima de outros elementos */
    border-radius: 0px 0px 0px 0px;
    /* Top-left, top-right, bottom-right, bottom-left */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(, #f0f4f8, #fff);
    z-index: -1;
    border-radius: 20px;
}

.menu a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.menu a img {
    max-width: 100%;
    /* Ajuste o tamanho mÃ¡ximo da imagem */
    max-height: 100%;
    /* Ajuste o tamanho mÃ¡ximo da imagem */
    display: block;
}

.buttons-container {
    display: flex;
    align-items: center;
    padding: 10px;
}

.slider {
    width: 93%;
    height: 1px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #474747, #35683c, #09ff00);
    outline: none;
    opacity: 0.9;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px;
    margin: 0px auto;
}

.valor-box {
    width: 120px;
    height: 25px;
    background-color: #363636;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 7px;
    padding: 5px;
    align-items: center;
    line-height: 25px;
    margin: 0 auto;
}

.valor-box-saque {
    width: 70%;
    height: 50%;
    background-color: #000000;
    border-radius: 10px;
    align-items: center;
    line-height: 10px;
    display: block;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 40px;
    margin-bottom: 10px;
}

.valor-box span {
    font-weight: bold;
    font-size: 20px;
}

#valor-saldo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    color: white;
}

#valor-saque {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 21px;
}

#valor-money {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 21px;
}

/* Menu de baixo */

.menuemb {
    position: fixed;
    margin-top: 10;
    bottom: 4px;
    width: 15%;
    left: 2.5%;
    right: 2.5%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px;
    z-index: 9995;
}

.menuemb a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    height: 50px;
}

.menuemb a img {
    width: 100%;
    height: auto;
    display: block;
}

/* BOTÃ•ES LIKE E DISLIKE*/

.like-dislike-buttons {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.like-button,
.dislike-button {
    border: 2px solid;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    text-align: center;
    /* Centraliza o texto */
    margin: 0 auto;
    right: 5%;
    left: 5%;
}

.like-button {
    border-color: green;
    color: green;
    width: 49%;
    right: 5%;
    left: 5%;
    border-radius: 8px;
}

.dislike-button {
    border-color: red;
    color: red;
    width: 49%;
    right: 5%;
    left: 5%;
    border-radius: 8px;
}

.liked {
    background: linear-gradient(180deg, green, green);
    color: #fff;
}

.disliked {
    background: linear-gradient(180deg, red, red);
    color: #fff;
}

.button-container {
    display: flex;
    margin: 0 auto;
    width: 90%;
    justify-content: center;
    align-items: center;
}

.square-button {
    border-radius: 12px;
    border: none;
    aspect-ratio: 1 / 1;
    margin: 5px;
    background-color: #fff;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.square-button img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    /* Redimensiona a imagem para preencher o botÃ£o */
}

.square-button.active {
    background-color: #1ed760;
    transform: scale(1.1);
}

.input-container {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
}

.input-container input[type="text"] {
    width: 100%;
    font-size: 15px;
    color: #303030;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    margin: 0 auto;
}

/* POPUP SAQUE */

.popup-container {
    position: fixed;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background-color: #0a0a0a;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
    display: none;
    z-index: 10000;
}

.popup-recebeu {
    position: fixed;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%, -50%);
    background-color: #1ed760;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
    display: none;
    z-index: 10000;
}

.popup-text-recebeu {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.popup-container2 {
    display: none;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9997;
    opacity: 100%;
    color: white;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
}

.popup-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.popup-button {
    background-color: #FF0000;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.desbloquear-button {
    background-color: #ffffff;
    width: 70%;
    border-radius: 8px;
    color: #1b1b1b;
    border: none;
    height: 40px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}

/* POPUP LIMITE DE SAQUE */

.popup-containerL {
    position: fixed;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background-color: #000;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 0 350px rgba(0, 0, 0, 1);
    display: none;
    z-index: 10000;
}

.popup-textL {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.popup-buttonL {
    background-color: #FF0000;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.desbloquear-buttonL {
    background: linear-gradient(135deg, #28a745, #06641c);
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

/* Style dos Ã­cones do Google */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 30;
}

/* Barra de carregamento */

#progress-bar {
    width: 95%;
    height: 20px;
    background-color: #ddd;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

#progress-bar div {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ff0000;
    animation: progress 86400s linear;
    /* ajustar segundos */
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

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

/* Caixa de login */

.loginbox {
    width: 90%;
    /* Largura do retÃ¢ngulo */
    height: 250px;
    /* Altura do retÃ¢ngulo */
    background-color: #d9d9d9;
    /* Cor de fundo do retÃ¢ngulo */
    border-radius: 20px;
    /* Raio dos cantos do retÃ¢ngulo */
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.input-container {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    box-sizing: border-box;
}

.labels {
    display: flex;
    /* Usa Flexbox para alinhar os itens */
    font-size: 10px;
    justify-content: space-between;
    /* Distribui espaço entre os itens */
    width: 100%;
    /* Para garantir que o espaço seja total */
    max-width: 600px;
    /* Ajuste a largura máxima se necessário */
    margin: 0 auto;
    /* Centraliza a div na página */
}

.text-labels {
    flex: 1;
    /* Faz com que cada item ocupe um espaço igual */
    color: white;
    /* Garante que o texto seja branco */
}

/* Estilos adicionais para ajustar a aparência se necessário */

.text-labels:first-child {
    text-align: left;
    /* Alinha "Ruim" à esquerda */
    margin-left: 45px;
    margin-top: 10px;
}

.text-labels:nth-child(2) {
    text-align: center;
    /* Alinha "Normal" ao centro */
    margin-top: 10px;
}

.text-labels:last-child {
    text-align: right;
    /* Alinha "Bom" à direita */
    margin-right: 45px;
    margin-top: 10px;
}

.input-container label {
    display: block;
    font-size: 17px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
    /* EspaÃ§amento entre o tÃ­tulo e a caixa */
}

.input-container input[type="text"] {
    width: 96%;
    font-size: 15px;
    color: #007bff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilo para a bolinha girando */

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-top: 4px solid #28a745;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    vertical-align: middle;
}

.prosseguir-button {
    background-color: #1ed760;
    width: 90%;
    border-radius: 12px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin: 0 auto;
}

.prosseguir-button1 {
    background: linear-gradient(135deg, #28a745, #06641c);
    width: 90%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.criar-conta {
    background-color: #fff;
    width: 90%;
    border-radius: 8px;
    color: rgb(101, 101, 101);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

/* NotificaÃ§Ã£o de dinheiro */

.notificacaoDinheiro {
    display: none;
    margin: 0 auto;
    position: fixed;
    top: -100px;
    /* Posiciona a notificaÃ§Ã£o acima da tela */
    left: 0;
    right: 0;
    color: #333;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(125deg, #5575FD, #2B50F0);
    z-index: 9999;
    height: 50px;
    width: 60%;
    border-radius: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.notificacaoDinheiro.activeDinheiro {
    display: block;
    animation: slideInDinheiro 0.5s forwards;
}

.notificacaoDinheiro.activeDinheiro.slideOutDinheiro {
    animation: slideOutDinheiro 0.5s forwards;
}

.amount {
    color: #1DB954;
    /* Verde do Spotify */
    font-weight: bold;
}

@keyframes slideInDinheiro {
    from {
        top: -100px;
    }
    to {
        top: 0;
    }
}

@keyframes slideOutDinheiro {
    from {
        top: 0;
    }
    to {
        top: -100px;
    }
}

/* Slogan inicio */

.slogan-inicio {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: #7a7a7a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 70px;
    width: 95%;
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.outer-box {
    width: 90%;
    display: flex;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: #222222;
}

.outer-box-login {
    width: 90%;
    display: flex;
    margin: 0 auto;
    border-radius: 10;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* Ajuste conforme necessÃ¡rio para ocupar toda a altura da tela */
}

.white-box {
    display: block;
    margin: 0 auto;
    background-color: #000000;
    width: 99%;
    border-radius: 25px;
    padding-top: 25px;
    padding-bottom: 22px;
}

.imagem {
    display: block;
    margin: 0 auto;
    background-color: #000000;
    height: 100%;
    width: 100%;
    border-radius: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.white-box-login {
    display: block;
    margin: 0 auto;
    background-color: #000;
    height: 100%;
    width: 99%;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 22px;
}

.footer-text {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    /* Cor do texto */
    padding: 10px;
    /* EspaÃ§amento interno do texto */
    box-sizing: border-box;
    /* Evita que o padding afete a largura total */
    padding-bottom: 20px;
}

.wbc {
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.gerarCodigo {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(180deg, #28a745, #28a745);
    border: 0;
    color: white;
    border-radius: 8px;
    width: 50%;
    height: 30px;
    line-height: 27px;
    font-size: 16px;
}

.gerarCodigo2 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(180deg, #28a745, #28a745);
    border: 0;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    width: 85%;
    height: 35px;
    line-height: 30px;
    font-size: 16px;
}

.centro {
    background-color: white;
    height: 100%;
    width: 95%;
    left: 2.5%;
    display: flex;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.form-label,
.form-input {
    border-radius: 12px;
    width: 80%;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
    /* Adicionado para incluir borda e preenchimento nas dimensÃµes */
    text-align: center;
    font-size: 16px;
}

.form-input {
    border: 1px solid #fff;
    height: 40px;
    line-height: 40px;
}

.form-label {
    height: 35px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(99, 99, 99);
    line-height: 35px;
    margin-bottom: 15px;
}

#container-progresso {
    position: relative;
    width: 200px;
    /* Ajuste para o tamanho desejado */
    height: 100px;
    /* Ajuste para o tamanho desejado */
    text-align: center;
}

#barra-progresso-svg {
    width: 100%;
    height: 100%;
}

#minha-barra-progresso {
    stroke-linecap: round;
    /* Pontas redondas */
    stroke-dasharray: 0 100;
    /* ComeÃ§a vazia */
    animation: preencherAnimacao 2.5s linear forwards;
    /* AnimaÃ§Ã£o de preenchimento em 5 segundos */
}

@keyframes preencherAnimacao {
    100% {
        stroke-dasharray: 100 1;
        /* Termina preenchida */
    }
}

#meu-valor-progresso {
    display: block;
    font-size: 1.2em;
    /* Ajuste para o tamanho desejado */
    font-weight: bold;
}

.faq-container {
    width: 90%;
    display: block;
    margin: 0 auto;
    max-width: 600px;
    border-radius: 8px;
    color: #fff;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #f0f4f8;
    border-radius: 25px;
}

.question {
    padding: 16px;
    background-color: #141414;
    cursor: pointer;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    color: rgb(999, 999, 999);
    font-weight: bold;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.answer {
    padding: 16px;
    display: none;
    background-color: #1ed760;
    color: white;
}

.answer.active {
    display: block;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-top: -10px;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1ed760;
    text-align: center;
}

.rating-container {
    display: flex;
    width: 95%;
    margin: 0 auto;
}

.rating-button {
    background-color: rgb(75, 75, 75);
    /* Cor cinza inicial */
    border: none;
    width: 95%;
    height: 40px;
    padding: 10px;
    margin: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* TransiÃ§Ã£o suave na mudanÃ§a de cor */
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(236, 236, 236);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.rating-button.active {
    background-color: #1ed760;
    /* Cor verde quando clicado */
    color: rgb(37, 37, 37);
}

.pergunta-whats {
    font-size: 14px;
    text-align: center;
    color: rgb(999, 999, 999);
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 25px;
    margin-bottom: 5px;
}

.enviarCodigo {
    background-color: #1ed760;
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    color: #000000;
    border: none;
    height: 55px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 0px auto;
    box-sizing: border-box;
    margin-top: 15px;
}

.card__satisfacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card__satisfacao h2,
.card__resposta h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.card__gradeContainer {
    display: grid;
    width: 90%;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-top: 20px;
}

.card__grade {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all ease 0.3s;
}

.card__grade i {
    font-size: 32px;
    color: #7e7e7e;
}

.card__gradeDescricao {
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 5px 0px 0px 0px;
    color: #7e7e7e;
}