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

:root {
    --app-header-h: 56px;
    --app-nav-h: 64px;
    --app-nav-total: calc(var(--app-nav-h) + env(safe-area-inset-bottom, 0px));
    --app-shell-pad-bottom: calc(var(--app-nav-total) + 10px);
    --app-page-max: 430px;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Menu de cima */

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

.rating-button {
    background-color: rgb(226, 226, 226);
    /* Cor cinza inicial */
    border: none;
    width: 95%;
    height: 40px;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* TransiÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â£o suave na mudanÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§a de cor */
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(101, 101, 101);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.rating-button.active {
    background-color: #202020;
    /* Cor verde quando clicado */
    color: #fff;
}

.menu {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 70px;
    /* Ajuste a altura desejada */
    background: #2a2a2a;
    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 20px 20px;
    /* Top-left, top-right, bottom-right, bottom-left */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.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;
}

.valor-box {
    width: 130px;
    height: 25px;
    background-color: #1ed760;
    border-radius: 12px;
    padding: 10px;
    align-items: center;
    line-height: 25px;
    display: block;
    margin: 0 auto;
}

.valor-box-saque {
    width: 99%;
    height: 100%;
    background-color: #000;
    border-radius: 20px;
    align-items: center;
    line-height: 20px;
    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;
}

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

#valor {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    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 */

.app-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9995;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 4px;
    height: var(--app-nav-total);
    padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    background: #2a2a2a;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.app-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.62);
    border-radius: 12px;
    min-width: 0;
    transition: color 0.15s ease, background-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.app-nav__item .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.app-nav__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.app-nav__item--active {
    color: #1ed760;
}

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

.app-nav__item:active {
    background: rgba(255, 255, 255, 0.06);
}

/* Header com voltar (Carteira / Ajuda) */
.menu.menu--subpage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--app-header-h);
    min-height: var(--app-header-h);
    max-height: var(--app-header-h);
    padding: 0 12px;
    border-radius: 0;
    background: #2a2a2a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-sizing: border-box;
    z-index: 9998;
}

.menu.menu--subpage .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    flex: 0 0 auto;
    -webkit-tap-highlight-color: transparent;
}

.menu.menu--subpage .back-btn .material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
}

.menu.menu--subpage .back-btn:active {
    background: rgba(255, 255, 255, 0.08);
}

.menu.menu--subpage img,
.menu--subpage__logo {
    height: 28px !important;
    width: auto !important;
    max-height: 28px !important;
    max-width: 140px !important;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
}

.subpage-spacer {
    height: var(--app-header-h);
    flex-shrink: 0;
}

#saque,
#bonus {
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
    padding-bottom: var(--app-shell-pad-bottom);
    overflow-x: hidden;
}

#saque .outer-box {
    width: 92%;
    max-width: 420px;
    margin: 8px auto 0;
    box-shadow: none;
}

#saque .valor-box-saque {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 12px 20px;
    box-shadow: none;
}

#saque .form-input {
    width: 92%;
    max-width: 420px;
}

#saque .desbloquear-button {
    width: 92%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    line-height: 1;
    padding: 0;
}

/* Métodos PT: MB Way / Multibanco */
.pay-title {
    margin: 18px 16px 12px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.pay-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 92%;
    max-width: 420px;
    margin: 0 auto 10px;
}

.pay-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 104px;
    padding: 14px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #2a2a2a;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.pay-method .material-symbols-outlined {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.pay-method__title {
    font-size: 15px;
    font-weight: 700;
}

.pay-method__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.pay-method.active {
    border-color: #1ed760;
    background: rgba(30, 215, 96, 0.12);
    box-shadow: 0 0 0 1px rgba(30, 215, 96, 0.35);
}

.pay-method.active .material-symbols-outlined,
.pay-method.active .pay-method__title {
    color: #1ed760;
}

.pay-hint {
    width: 92%;
    max-width: 420px;
    margin: 0 auto 16px;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

/* legado */
.menuemb {
    display: none;
}

.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: 100%;
    height: 100%;
    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: #000;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
    display: none;
    z-index: 10000;
}

.popup-container2 {
    display: none;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    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: #fff;
    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: #1ed760;
    width: 90%;
    border-radius: 8px;
    color: #fff;
    border: none;
    height: 40px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    line-height: 1;
}

.popup-back-button {
    width: 90%;
    height: 42px;
    margin: 10px auto 0;
    display: block;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #2a2a2a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.popup-back-button:active {
    background: #333;
}

/* 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;
}

.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;
}

@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: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.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: #000;
    height: 100%;
    width: 99%;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 22px;
}

.imagem {
    display: block;
    margin: 0 auto;
    background-color: #000;
    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: 90%;
    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 */
    }
}

#texto-progresso {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #28a745;
    /* Cor do texto */
}

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

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

.faq-item {
    margin-bottom: 14px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.question {
    padding: 14px 16px;
    background-color: #1ed760;
    cursor: pointer;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #121212;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    transition: filter 0.15s ease;
}

.question:active {
    filter: brightness(0.95);
}

.answer {
    display: none;
    margin-top: 8px;
    padding: 14px 16px;
    background-color: #2a2a2a;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.answer.active {
    display: block;
}

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

.faq-bottom-space {
    height: 8px;
    margin: 0;
}

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

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

.rating-button.active {
    background-color: #1ed760;
    /* Cor verde quando clicado */
    color: white;
}

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

.enviarCodigo {
    background-color: #1ed760;
    width: 93%;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    border: none;
    height: 40px;
    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;
}

/* ---------- Ecrã de entrada (login) ---------- */

.login-screen {
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding:
        max(24px, env(safe-area-inset-top))
        max(20px, env(safe-area-inset-right))
        max(16px, env(safe-area-inset-bottom))
        max(20px, env(safe-area-inset-left));
    background-color: #000;
    color: #fff;
}

.login-screen__content {
    width: 100%;
    max-width: 420px;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vh, 32px);
    padding: clamp(8px, 2vh, 16px) 0;
}

.login-screen__logo {
    width: min(72%, 280px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.login-screen__copy {
    width: 100%;
    text-align: center;
}

.login-screen__title {
    margin: 0 0 8px;
    font-size: clamp(1.125rem, 4.8vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.login-screen__subtitle {
    margin: 0;
    font-size: clamp(0.875rem, 3.8vw, 1rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
}

.login-screen__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-screen__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.login-screen__input {
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #fff;
    border-radius: 12px;
    background: #fff;
    color: #121212;
    font-size: 16px;
    text-align: center;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.login-screen__input::placeholder {
    color: #8a8a8a;
}

.login-screen__input:focus {
    border-color: #1ed760;
    box-shadow: 0 0 0 3px rgba(30, 215, 96, 0.35);
}

.login-screen__button {
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    min-height: 48px;
    border: none;
    border-radius: 12px;
    background-color: #1ed760;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.login-screen__button:hover {
    background-color: #1fdf64;
}

.login-screen__button:active {
    transform: scale(0.98);
    background-color: #1aa34a;
}

.login-screen__button:disabled {
    opacity: 0.9;
    cursor: wait;
}

.login-screen__button .loading-spinner {
    border-color: rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    width: 18px;
    height: 18px;
    border-width: 3px;
    margin-right: 8px;
}

.login-screen__footer {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding-top: 12px;
    flex-shrink: 0;
}

.login-screen__footer-copy,
.login-screen__footer-links {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.login-screen__footer-copy {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.login-screen__footer-links {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Telemóveis muito baixos (ex.: Landscape / ecrãs pequenos) */
@media (max-height: 560px) {
    .login-screen {
        justify-content: flex-start;
        overflow-y: auto;
    }

    .login-screen__content {
        margin: 12px 0;
        gap: 16px;
    }

    .login-screen__logo {
        width: min(48%, 180px);
    }

    .login-screen__footer {
        margin-top: auto;
        padding-bottom: 4px;
    }
}

/* Telemóveis muito estreitos */
@media (max-width: 340px) {
    .login-screen {
        padding-left: 14px;
        padding-right: 14px;
    }

    .login-screen__title {
        font-size: 1.05rem;
    }

    .login-screen__input,
    .login-screen__button {
        height: 48px;
    }
}

/* ---------- Ecrã de perguntas (imagem + cards, botão sempre visível) ---------- */

#inicio.survey-screen {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: var(--app-header-h);
    padding-bottom: var(--app-nav-total);
}

#inicio.survey-screen .menu {
    height: var(--app-header-h);
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #2a2a2a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#inicio.survey-screen .menu a {
    justify-content: flex-start;
    padding-left: 14px;
}

#inicio.survey-screen .menu a img {
    max-height: 28px;
    width: auto;
    max-width: 48%;
}

#inicio.survey-screen .valor-box {
    width: auto;
    min-width: 96px;
    height: 22px;
    padding: 6px 12px;
    border-radius: 999px;
    line-height: 22px;
}

#inicio.survey-screen #valor {
    font-size: 15px;
}

#inicio.survey-screen .survey-spacer {
    display: none;
}

#inicio.survey-screen .outer-box {
    width: 100%;
    max-width: var(--app-page-max);
    margin: 0 auto;
    height: 100%;
    max-height: 100%;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

#inicio.survey-screen .white-box {
    --survey-gap: clamp(8px, 1.8vh, 14px);
    width: 100%;
    height: 100%;
    max-height: 100%;
    padding: clamp(8px, 1.5vh, 12px) 14px clamp(10px, 1.6vh, 14px);
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto minmax(0, auto) minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 0;
    overflow: hidden;
}

/* Prémio */
#inicio.survey-screen .survey-reward {
    grid-row: 1;
    margin: 0 0 var(--survey-gap) !important;
    font-size: clamp(13px, 3.4vw, 16px) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    color: #1ed760 !important;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Imagem — encolhe conforme a altura disponível */
#inicio.survey-screen .imagem {
    grid-row: 2;
    width: 100%;
    height: auto !important;
    min-height: 0;
    max-height: min(34svh, 240px);
    margin: 0 0 var(--survey-gap);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
}

#inicio.survey-screen .imagem img,
#inicio.survey-screen .survey-artist-img {
    width: min(58vw, 28svh, 200px) !important;
    max-width: min(58vw, 28svh, 200px) !important;
    height: min(58vw, 28svh, 200px) !important;
    max-height: min(58vw, 28svh, 200px) !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 14px !important;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* 3 perguntas — área flexível; scroll só se faltar espaço */
#inicio.survey-screen .survey-questions {
    grid-row: 3;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--survey-gap);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-right: 2px;
    margin-bottom: var(--survey-gap);
}

#inicio.survey-screen .survey-q {
    flex: 0 0 auto;
    padding: 10px 12px;
    border-radius: 14px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

#inicio.survey-screen .survey-q .pergunta-whats {
    font-size: clamp(12px, 3.2vw, 13.5px);
    line-height: 1.35;
    margin: 0 0 8px;
    padding: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    text-align: center;
}

#inicio.survey-screen .survey-q .labels {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
    margin: 4px 0 0;
    font-size: 11px;
}

#inicio.survey-screen .survey-q .labels .pergunta-whats {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.01em;
}

#inicio.survey-screen .survey-q .rating-container {
    width: 100%;
    margin: 0;
    gap: 8px;
}

#inicio.survey-screen .survey-q .slider {
    width: 100%;
    height: 10px;
    padding: 0;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 45%, #22c55e 75%, #1ed760 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
    touch-action: none;
    cursor: pointer;
}

#inicio.survey-screen .survey-q .slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

#inicio.survey-screen .survey-q .slider::-moz-range-track {
    height: 10px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 45%, #22c55e 75%, #1ed760 100%);
}

#inicio.survey-screen .survey-q .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

#inicio.survey-screen .survey-q .rating-button {
    height: 38px;
    padding: 0 10px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: none;
    background-color: #3a3a3a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

#inicio.survey-screen .survey-q .rating-button.active {
    background-color: #1ed760;
    border-color: #1ed760;
    color: #fff;
}

/* Botão sempre na última linha, acima do rodapé — nunca cortado */
#inicio.survey-screen .enviarCodigo {
    grid-row: 4;
    width: 100%;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(30, 215, 96, 0.25);
    z-index: 2;
}

/* Ecrãs médios / baixos — imagem e gaps menores */
@media (max-height: 760px) {
    #inicio.survey-screen .white-box {
        --survey-gap: clamp(6px, 1.4vh, 10px);
    }

    #inicio.survey-screen .imagem {
        max-height: min(26svh, 180px);
    }

    #inicio.survey-screen .imagem img,
    #inicio.survey-screen .survey-artist-img {
        width: min(48vw, 22svh, 160px) !important;
        max-width: min(48vw, 22svh, 160px) !important;
        height: min(48vw, 22svh, 160px) !important;
        max-height: min(48vw, 22svh, 160px) !important;
    }

    #inicio.survey-screen .survey-q {
        padding: 8px 10px;
    }

    #inicio.survey-screen .survey-q .rating-button {
        height: 34px;
        font-size: 12.5px;
    }

    #inicio.survey-screen .enviarCodigo {
        height: 42px;
        min-height: 42px;
    }
}

@media (max-height: 680px) {
    #inicio.survey-screen .white-box {
        --survey-gap: 6px;
    }

    #inicio.survey-screen .imagem {
        max-height: min(20svh, 132px);
    }

    #inicio.survey-screen .imagem img,
    #inicio.survey-screen .survey-artist-img {
        width: min(40vw, 18svh, 128px) !important;
        max-width: min(40vw, 18svh, 128px) !important;
        height: min(40vw, 18svh, 128px) !important;
        max-height: min(40vw, 18svh, 128px) !important;
        border-radius: 12px !important;
    }

    #inicio.survey-screen .survey-reward {
        font-size: 13px !important;
    }

    #inicio.survey-screen .survey-q .pergunta-whats {
        font-size: 12px;
        margin-bottom: 6px;
    }

    #inicio.survey-screen .survey-q {
        padding: 7px 9px;
        border-radius: 12px;
    }

    #inicio.survey-screen .survey-q .rating-button {
        height: 32px;
    }

    #inicio.survey-screen .enviarCodigo {
        height: 40px;
        min-height: 40px;
    }
}

/* Ecrã NIF */
#inicio.survey-screen .nif-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px 16px;
    grid-template-rows: none;
    overflow-y: auto;
}

.nif-screen__text {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.45;
    padding: 0 6px;
}

.nif-screen__label {
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    margin: 4px 0 0;
}

.nif-screen__input {
    width: 100% !important;
    height: 48px;
    margin: 0 !important;
    text-align: center;
    letter-spacing: 0.12em;
    font-size: 18px;
}

.nif-screen__hint {
    margin: 0;
    color: #ff6b6b;
    font-size: 12px;
    text-align: center;
}

#inicio.survey-screen .nif-screen__button {
    margin-top: 8px;
}

/* Texto escuro sobre fundos verdes (melhor contraste sem contorno) */
.valor-box span,
#valor,
.enviarCodigo,
#inicio.survey-screen .enviarCodigo,
.desbloquear-button,
.desbloquear-buttonL,
.prosseguir-button,
.prosseguir-button1,
.login-screen__button,
.rating-button.active,
#inicio.survey-screen .survey-q .rating-button.active,
.gerarCodigo,
.gerarCodigo2 {
    color: #121212;
    -webkit-text-stroke: 0;
    text-shadow: none;
    font-weight: 700;
}