/* ==============================
   Estilos Públicos Extraídos
   ============================== */

/* Estilos para barra topo */
.bonus-cadastro {
    width: 100%;
    box-sizing: border-box;
    background-color: var(--brand-primary);
    color: var(--brand-text);
    text-align: center;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .bonus-cadastro {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .bonus-cadastro {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Estilos para o topo */
.top-bar {
    background: var(--player-surface-header-bg);
    width: 100%;
    border-bottom: var(--player-surface-header-border);
    box-shadow: var(--player-shadow-header);
    padding: 10px 0;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    max-width: 120px;
    max-height: 45px;
}

.buttons {
    display: none;
    /* substituído por .auth-buttons */
    gap: 10px;
}

.button {
    padding: 10px 20px;
    background-color: var(--brand-primary);
    color: var(--brand-text);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.button:hover {
    background-color: var(--brand-hover);
}

/* Termos boxs */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--player-sidebar-bg);
    border-right: var(--player-sidebar-border);
    box-shadow: var(--player-sidebar-shadow);
    transition: left 0.3s ease-in-out;
    z-index: 9999;
}

.sidebar.show {
    left: 0;
}

.sidebar-content {
    position: absolute;
    top: 40px;
    bottom: 0;
    overflow-y: auto;
    padding: 15px;
    text-align: justify;
    font-size: 12px;
    color: #fff;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-primary) var(--player-scrollbar-track);
}

.sidebar-content::-webkit-scrollbar {
    width: 8px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background-color: var(--player-scrollbar-thumb);
    border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand-hover);
}

.sidebar-content::-webkit-scrollbar-track {
    background: var(--player-scrollbar-track);
}

.close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: var(--brand-primary);
    transition: color 0.3s;
}

.close-sidebar:hover {
    color: var(--brand-hover);
}

/* Termos (idêntico ao dashboard) */
.sidebartermo {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--player-sidebar-bg);
    border-right: var(--player-sidebar-border);
    box-shadow: var(--player-sidebar-shadow);
    transition: left 0.3s ease-in-out;
    z-index: 10001;
}

.sidebartermo.show {
    left: 0;
}

.sidebartermo-content {
    position: absolute;
    top: 40px;
    bottom: 0;
    overflow-y: auto;
    padding: 15px;
    text-align: justify;
    font-size: 12px;
    color: #fff;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-primary) var(--player-scrollbar-track);
}

.sidebartermo-content::-webkit-scrollbar {
    width: 8px;
}

.sidebartermo-content::-webkit-scrollbar-thumb {
    background-color: var(--player-scrollbar-thumb);
    border-radius: 10px;
}

.sidebartermo-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand-hover);
}

.sidebartermo-content::-webkit-scrollbar-track {
    background: var(--player-scrollbar-track);
}

.close-sidebartermo {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: var(--brand-primary);
    transition: color 0.3s;
}

.close-sidebartermo:hover {
    color: var(--brand-hover);
}

:root {
    --bet-modal-accent: var(--brand-primary);
    --bet-modal-accent-rgb: var(--brand-primary-rgb);
    --bet-modal-accent-2: var(--brand-hover);
    --bet-modal-accent-2-rgb: var(--brand-hover-rgb);
    --bet-modal-prism: #785cff;
    --bet-modal-prism-rgb: 120, 92, 255;
    --bet-modal-text: rgba(255, 255, 255, 0.94);
    --bet-modal-text-muted: rgba(226, 232, 255, 0.76);
    --bet-modal-bg: #030712;
    --bet-modal-panel: rgba(5, 14, 40, 0.86);
    --bet-modal-panel-strong: rgba(3, 9, 28, 0.94);
    --bet-modal-border: rgba(var(--brand-primary-rgb), 0.68);
    --bet-modal-border-soft: rgba(var(--brand-primary-rgb), 0.30);
    --bet-modal-glow: rgba(var(--brand-primary-rgb), 0.48);
    --bet-modal-radius: 18px;
    --bet-modal-radius-sm: 12px;
    --bet-modal-panel-bg:
        radial-gradient(520px 360px at 100% 92%, rgba(var(--bet-modal-prism-rgb), 0.07), transparent 68%),
        linear-gradient(180deg, rgba(3, 12, 38, 0.90), rgba(1, 5, 20, 0.96));
}

/* Estilos para o modal */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20000;
}

.overlay.show {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--player-surface-card-bg);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    z-index: 20001;
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    border-radius: 5px;
    overflow: hidden;
}

.modal-content {
    max-height: calc(85vh - 40px);
    overflow-y: auto;
}

.modal-content h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: var(--brand-primary);
    text-align: center;
}

.modal.show {
    display: block;
}

.bet-modal-theme--neon {
    --bet-modal-frame-bg:
        radial-gradient(620px 360px at 92% 92%, rgba(var(--bet-modal-prism-rgb), 0.08), transparent 66%),
        linear-gradient(145deg, rgba(1, 4, 18, 0.99), rgba(2, 8, 26, 0.98));
}

.bet-modal-frame {
    border: 1px solid rgba(var(--bet-modal-prism-rgb), 0.56);
    background: var(--bet-modal-frame-bg);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 12px rgba(var(--bet-modal-accent-rgb), 0.16),
        0 0 18px rgba(var(--bet-modal-prism-rgb), 0.10),
        0 30px 90px rgba(0, 0, 0, 0.78);
}

.bet-modal-panel {
    border: 1px solid rgba(var(--bet-modal-prism-rgb), 0.58);
    background: var(--bet-modal-panel-bg);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bet-modal-accent-rgb), 0.12),
        inset 0 0 28px rgba(var(--bet-modal-prism-rgb), 0.05),
        0 0 10px rgba(var(--bet-modal-accent-rgb), 0.12),
        0 0 14px rgba(var(--bet-modal-prism-rgb), 0.08);
}

.bet-modal-title {
    color: var(--bet-modal-text);
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.35),
        0 0 10px rgba(var(--bet-modal-accent-rgb), 0.18);
}

.bet-modal-close {
    color: var(--bet-modal-accent);
    text-shadow:
        0 0 12px rgba(var(--bet-modal-accent-rgb), 0.72),
        0 0 22px rgba(var(--bet-modal-accent-2-rgb), 0.52);
}

.auth-modal {
    width: min(96vw, calc(84vh * 2), 1680px);
    max-width: 96vw;
    aspect-ratio: 2 / 1;
    max-height: min(84vh, 860px);
    padding: clamp(8px, 1vw, 14px);
    border-radius: var(--bet-modal-radius);
    overflow: hidden;
    background: var(--bet-modal-frame-bg);
    box-sizing: border-box;
}

.auth-modal--login {
    width: min(94vw, calc(76vh * 2), 1180px);
    max-width: 94vw;
    aspect-ratio: 2 / 1;
    max-height: min(76vh, 620px);
}

.auth-modal--no-banner {
    width: min(94vw, 440px);
    max-width: 440px;
    aspect-ratio: auto;
}

.auth-modal--login.auth-modal--no-banner {
    width: min(94vw, 380px);
    max-width: 380px;
    aspect-ratio: auto;
}

.auth-modal--recovery {
    width: min(94vw, 460px);
    max-width: 460px;
    aspect-ratio: auto;
    max-height: min(92vh, 520px);
}

.auth-modal .modal-content {
    max-height: inherit;
    overflow: hidden;
}

.auth-modal-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(10px, 1vw, 18px);
    align-items: center;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: 100%;
    max-height: none;
    min-height: 0;
    border-radius: calc(var(--bet-modal-radius) - 8px);
    overflow: hidden;
    box-sizing: border-box;
}

.auth-modal--login .auth-modal-shell {
    width: 100%;
    max-height: none;
}

.auth-modal--no-banner .auth-modal-shell {
    display: grid;
    grid-template-columns: minmax(320px, 420px);
    justify-content: center;
    width: auto;
    aspect-ratio: auto;
    height: auto;
}

.auth-modal--recovery .auth-modal-shell {
    grid-template-columns: minmax(0, 420px);
}

.auth-modal-banner {
    width: 100%;
    height: auto;
    max-height: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    border-radius: calc(var(--bet-modal-radius) - 12px);
    background: #020817;
    box-shadow:
        inset 0 0 0 1px rgba(var(--bet-modal-accent-rgb), 0.20),
        0 0 24px rgba(var(--bet-modal-accent-rgb), 0.16);
    box-sizing: border-box;
}

.auth-modal--login .auth-modal-banner {
    aspect-ratio: 1 / 1;
}

.auth-modal-banner picture,
.auth-modal-banner img {
    display: block;
    width: 100%;
    height: 100%;
    background: #020817;
}

.auth-modal-banner img {
    object-fit: cover;
    object-position: center center;
}

.auth-modal-form-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: clamp(22px, 2.1vw, 36px);
    border-radius: calc(var(--bet-modal-radius) - 12px);
    box-sizing: border-box;
}

.auth-modal--login .auth-modal-form-panel {
    padding: clamp(22px, 2vw, 34px);
}

.auth-modal--no-banner .auth-modal-form-panel {
    width: auto;
    aspect-ratio: auto;
}

.auth-modal--recovery .auth-modal-form-panel {
    min-height: 0;
    padding: clamp(24px, 4.4vw, 36px);
}

.auth-modal-form-panel h2 {
    margin: 0 0 clamp(14px, 1.5vw, 22px);
    color: var(--bet-modal-text);
    font-size: clamp(22px, 1.75vw, 34px);
    line-height: 1.05;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0;
}

.auth-modal--login .auth-modal-form-panel h2 {
    font-size: clamp(24px, 2vw, 36px);
}

.auth-modal-form-panel form {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.auth-modal .form-row {
    gap: 0;
}

.auth-modal .input-icon {
    margin-bottom: clamp(10px, 1.15vw, 16px);
}

.auth-modal .bet-modal-field {
    padding: 1px;
    border-radius: var(--bet-modal-radius-sm);
    background:
        linear-gradient(132deg,
            rgba(var(--bet-modal-accent-rgb), 0.58) 0%,
            rgba(122, 164, 255, 0.46) 46%,
            rgba(var(--bet-modal-prism-rgb), 0.58) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 5px rgba(var(--bet-modal-accent-rgb), 0.18),
        0 0 9px rgba(var(--bet-modal-prism-rgb), 0.12);
}

.auth-modal .input-icon i {
    left: clamp(18px, 1.6vw, 26px);
    font-size: clamp(18px, 1.6vw, 28px);
}

.auth-modal .input-icon i.toggle-password {
    left: auto;
    right: clamp(18px, 2vw, 28px);
}

.auth-modal .cadastro-aceite {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: clamp(10px, 1vw, 14px);
    margin: clamp(2px, 0.8vw, 8px) 0 0;
    color: var(--bet-modal-text-muted);
    font-size: clamp(13px, 1vw, 17px);
    line-height: 1.35;
}

.auth-modal .cadastro-aceite input[type="checkbox"] {
    width: clamp(20px, 1.6vw, 28px);
    height: clamp(20px, 1.6vw, 28px);
    margin-top: 2px;
    border-radius: 6px;
}

.auth-modal .cadastro-aceite a,
.auth-modal .recover-password a,
.auth-modal .create-account a {
    color: var(--bet-modal-accent);
    font-weight: 800;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(var(--bet-modal-accent-rgb), 0.42);
}

.auth-modal .recover-password,
.auth-modal .create-account {
    margin-top: 12px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: var(--brand-primary);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--brand-hover);
}

.auth-modal .close-modal {
    top: clamp(14px, 1.4vw, 24px);
    right: clamp(16px, 1.6vw, 28px);
    font-size: clamp(28px, 2.8vw, 48px);
    line-height: 1;
    z-index: 2;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-row .input-icon {
    flex: 1;
}

.input-icon {
    position: relative;
    margin-bottom: 5px;
}

.input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-primary);
    pointer-events: none;
}

.input-icon i.toggle-password {
    left: auto;
    right: 10px;
    pointer-events: auto;
    cursor: pointer;
    transition: color 0.3s ease;
}

.input-icon i.toggle-password:hover {
    color: var(--brand-hover);
}

.input-icon input,
.input-icon textarea {
    padding-left: 35px;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 3px;
    color: #fff;
    background-color: var(--player-field-bg);
    outline: none;
    box-sizing: border-box;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.input-icon input::placeholder,
.input-icon textarea::placeholder {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.submit-button {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--brand-primary);
    color: var(--brand-text);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 0px;
    font-size: 16px;
    font-weight: bold;
}

.submit-button:hover {
    background-color: var(--brand-hover);
}

input.submit-button.recuperar,
input.submit-button.abrir-conta,
input.submit-button.contato {
    margin-top: 10px !important;
}

.termos {
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: justify;
}

.termos a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.termos a:hover {
    text-decoration: underline;
    color: var(--brand-hover);
}

.cadastro-aceite {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.25;
    text-align: left;
}

.cadastro-aceite input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--brand-primary);
    cursor: pointer;
}

.cadastro-aceite span {
    display: block;
}

.cadastro-aceite a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.cadastro-aceite a:hover {
    color: var(--brand-hover);
    text-decoration: underline;
}

.auth-modal .bet-modal-field input {
    height: clamp(54px, 6.4vh, 72px);
    padding-left: clamp(50px, 4.2vw, 68px);
    width: 100%;
    border: 1px solid rgba(148, 188, 255, 0.42);
    border-radius: var(--bet-modal-radius-sm);
    background:
        radial-gradient(360px 140px at 100% 100%, rgba(var(--bet-modal-prism-rgb), 0.08), transparent 64%),
        radial-gradient(300px 120px at 0% 0%, rgba(var(--bet-modal-accent-rgb), 0.05), transparent 62%),
        linear-gradient(180deg, rgba(2, 8, 28, 0.98), rgba(1, 4, 18, 0.98));
    color: var(--bet-modal-text);
    font-size: clamp(16px, 1.35vw, 24px);
    font-weight: 500;
    outline: none;
    box-sizing: border-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        inset 0 0 12px rgba(var(--bet-modal-prism-rgb), 0.05),
        0 0 5px rgba(var(--bet-modal-accent-rgb), 0.16),
        0 0 7px rgba(var(--bet-modal-prism-rgb), 0.10);
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-modal--login .bet-modal-field input {
    height: clamp(52px, 6vh, 66px);
    font-size: clamp(16px, 1.2vw, 20px);
}

.auth-modal .bet-modal-field input:focus {
    border-color: rgba(182, 208, 255, 0.62);
    background:
        radial-gradient(360px 140px at 100% 100%, rgba(var(--bet-modal-prism-rgb), 0.10), transparent 64%),
        radial-gradient(300px 120px at 0% 0%, rgba(var(--bet-modal-accent-rgb), 0.07), transparent 62%),
        linear-gradient(180deg, rgba(2, 10, 30, 0.98), rgba(1, 6, 20, 0.98));
    box-shadow:
        inset 0 0 16px rgba(var(--bet-modal-accent-rgb), 0.08),
        0 0 0 2px rgba(var(--bet-modal-accent-rgb), 0.10),
        0 0 9px rgba(var(--bet-modal-accent-rgb), 0.18),
        0 0 12px rgba(var(--bet-modal-prism-rgb), 0.10);
}

.auth-modal .bet-modal-field input::placeholder {
    color: rgba(226, 232, 255, 0.68);
}

.auth-modal .bet-modal-field i {
    color: rgba(245, 248, 255, 0.86);
    filter: drop-shadow(0 0 5px rgba(var(--bet-modal-accent-rgb), 0.14));
}

.auth-modal .bet-modal-primary-button,
.auth-modal input.bet-modal-primary-button.abrir-conta {
    min-height: clamp(52px, 6vh, 66px);
    width: 100%;
    margin-top: clamp(14px, 1.6vw, 24px);
    border-radius: var(--bet-modal-radius-sm);
    border: 1px solid rgba(232, 246, 255, 0.78);
    background:
        linear-gradient(120deg,
            rgba(var(--bet-modal-prism-rgb), 0.98) 0%,
            rgba(var(--bet-modal-accent-2-rgb), 0.98) 45%,
            rgba(var(--bet-modal-accent-rgb), 1) 100%);
    color: #020711;
    font-size: clamp(18px, 1.55vw, 26px);
    font-weight: 900;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.24) inset,
        0 0 9px rgba(var(--bet-modal-accent-rgb), 0.42),
        0 0 16px rgba(var(--bet-modal-prism-rgb), 0.18),
        0 12px 26px rgba(var(--bet-modal-accent-rgb), 0.16);
    cursor: pointer;
    transition: filter 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.auth-modal--login .bet-modal-primary-button {
    min-height: clamp(50px, 5.6vh, 62px);
    font-size: clamp(17px, 1.4vw, 24px);
}

.auth-modal .bet-modal-primary-button:hover,
.auth-modal input.bet-modal-primary-button.abrir-conta:hover {
    background:
        linear-gradient(120deg,
            rgba(var(--bet-modal-prism-rgb), 1) 0%,
            rgba(var(--bet-modal-accent-rgb), 1) 58%,
            rgba(105, 236, 255, 1) 100%);
    filter: brightness(1.08);
}

.auth-modal .bet-modal-checkbox input[type="checkbox"] {
    accent-color: var(--bet-modal-accent);
    box-shadow: 0 0 7px rgba(var(--bet-modal-accent-rgb), 0.16);
}

.auth-modal .bet-modal-checkbox a:hover {
    color: var(--bet-modal-accent-2);
    text-decoration: none;
}

.auth-modal--recovery .auth-modal-form-panel h2 {
    margin-bottom: clamp(16px, 3vh, 24px);
    font-size: clamp(24px, 5vw, 32px);
}

.auth-modal--recovery .auth-modal-form-panel form {
    max-width: none;
}

.auth-modal--recovery .bet-modal-field input {
    height: clamp(52px, 7vh, 62px);
    padding-left: 54px;
    font-size: clamp(16px, 3.6vw, 20px);
}

.auth-modal--recovery .input-icon i {
    left: 18px;
    font-size: clamp(18px, 4vw, 22px);
}

.auth-modal--recovery .bet-modal-primary-button {
    min-height: clamp(50px, 7vh, 60px);
    margin-top: clamp(12px, 2.6vh, 18px);
    font-size: clamp(18px, 4.2vw, 22px);
}

.auth-modal--recovery .log-in {
    margin-top: clamp(14px, 3vh, 20px);
    color: var(--bet-modal-text-muted);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.auth-modal--recovery .log-in a {
    color: var(--bet-modal-accent);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(var(--bet-modal-accent-rgb), 0.30);
}

.auth-modal--recovery #alerta-senha {
    color: var(--bet-modal-text-muted);
}

.auth-modal--recovery .close-modal {
    top: 16px;
    right: 18px;
    font-size: clamp(28px, 7vw, 36px);
}

@media (max-width: 1100px) {
    .auth-modal {
        width: min(94vw, 620px);
        max-width: 620px;
        aspect-ratio: auto;
        max-height: 92vh;
    }

    .auth-modal--login {
        width: min(94vw, 560px);
        max-width: 560px;
        aspect-ratio: auto;
        max-height: 92vh;
    }

    .auth-modal .modal-content {
        max-height: 92vh;
        overflow-y: auto;
    }

    .auth-modal-shell,
    .auth-modal--login .auth-modal-shell {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        gap: 10px;
        overflow: visible;
    }

    .auth-modal-banner,
    .auth-modal--login .auth-modal-banner {
        width: 100%;
        min-height: 0;
        height: auto;
        max-height: none;
        aspect-ratio: 8 / 3;
    }

    .auth-modal-form-panel,
    .auth-modal--login .auth-modal-form-panel {
        width: 100%;
        max-height: none;
        aspect-ratio: auto;
        padding: clamp(20px, 4vw, 30px);
    }

    .auth-modal-form-panel h2 {
        margin-bottom: 16px;
        font-size: clamp(28px, 3vw, 36px);
    }
}

@media (max-width: 1100px) and (max-height: 740px) {
    .auth-modal {
        max-height: 94dvh;
        padding: 8px;
    }

    .auth-modal .modal-content {
        max-height: calc(94dvh - 16px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(var(--bet-modal-accent-rgb), 0.38) rgba(1, 5, 20, 0.46);
    }

    .auth-modal-shell,
    .auth-modal--login .auth-modal-shell {
        gap: 8px;
    }

    .auth-modal-banner,
    .auth-modal--login .auth-modal-banner {
        max-height: 150px;
        aspect-ratio: 8 / 3;
    }

    .auth-modal-form-panel,
    .auth-modal--login .auth-modal-form-panel {
        padding: clamp(14px, 3.6vw, 20px);
    }

    .auth-modal-form-panel h2 {
        margin-bottom: 12px;
        font-size: clamp(20px, 5.8vw, 28px);
    }

    .auth-modal .input-icon {
        margin-bottom: 8px;
    }

    .auth-modal .bet-modal-field input {
        height: 46px;
        padding-left: 46px;
        font-size: 15px;
    }

    .auth-modal .input-icon i {
        left: 16px;
        font-size: 18px;
    }

    .auth-modal .cadastro-aceite {
        gap: 9px;
        font-size: 12px;
        line-height: 1.24;
    }

    .auth-modal .cadastro-aceite input[type="checkbox"] {
        width: 19px;
        height: 19px;
    }

    .auth-modal .bet-modal-primary-button {
        min-height: 48px;
        margin-top: 10px;
        font-size: 18px;
    }
}

@media (max-width: 1100px) and (max-height: 620px) {
    .auth-modal-banner,
    .auth-modal--login .auth-modal-banner {
        max-height: 112px;
    }

    .auth-modal-form-panel,
    .auth-modal--login .auth-modal-form-panel {
        padding: 12px;
    }

    .auth-modal-form-panel h2 {
        margin-bottom: 10px;
        font-size: clamp(18px, 5.2vw, 24px);
    }

    .auth-modal .bet-modal-field input {
        height: 42px;
    }

    .auth-modal .bet-modal-primary-button {
        min-height: 44px;
    }
}

@media (min-width: 1101px) and (max-height: 820px) {
    .auth-modal {
        max-height: 92vh;
    }

    .auth-modal-form-panel {
        padding: clamp(14px, 2.4vh, 22px);
    }

    .auth-modal-form-panel h2 {
        margin-bottom: clamp(8px, 1.6vh, 14px);
        font-size: clamp(19px, 4vh, 28px);
    }

    .auth-modal .input-icon {
        margin-bottom: clamp(6px, 1.3vh, 10px);
    }

    .auth-modal .bet-modal-field input {
        height: clamp(42px, 8.2vh, 54px);
        padding-left: clamp(42px, 4vw, 58px);
        font-size: clamp(14px, 2.5vh, 18px);
    }

    .auth-modal .input-icon i {
        left: clamp(14px, 1.3vw, 20px);
        font-size: clamp(16px, 2.8vh, 20px);
    }

    .auth-modal .cadastro-aceite {
        gap: 9px;
        margin-top: 2px;
        font-size: clamp(11px, 2.1vh, 13px);
        line-height: 1.25;
    }

    .auth-modal .cadastro-aceite input[type="checkbox"] {
        width: clamp(17px, 3vh, 22px);
        height: clamp(17px, 3vh, 22px);
    }

    .auth-modal .bet-modal-primary-button,
    .auth-modal input.bet-modal-primary-button.abrir-conta {
        min-height: clamp(42px, 7.8vh, 52px);
        margin-top: clamp(8px, 1.8vh, 12px);
        font-size: clamp(16px, 3vh, 20px);
    }
}

@media (min-width: 1101px) and (max-height: 640px) {
    .auth-modal-form-panel {
        justify-content: flex-start;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(var(--bet-modal-accent-rgb), 0.42) rgba(1, 5, 20, 0.50);
    }

    .auth-modal-form-panel::-webkit-scrollbar {
        width: 6px;
    }

    .auth-modal-form-panel::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(var(--bet-modal-accent-rgb), 0.42);
    }
}

.recuperar-senha-ok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    border: 0;
    border-radius: 5px;
    background: var(--brand-primary);
    color: var(--brand-text);
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.recuperar-senha-ok:hover {
    background: var(--brand-hover);
}

.recuperar-senha-loading {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.recuperar-senha-loading strong {
    color: var(--brand-primary);
    font-size: 20px;
    line-height: 1.25;
}

.recuperar-senha-loading span:last-child {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.recuperar-senha-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(var(--brand-primary-rgb), 0.18);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: recuperarSenhaSpin 0.8s linear infinite;
}

@keyframes recuperarSenhaSpin {
    to {
        transform: rotate(360deg);
    }
}

.recuperar-senha-confirmacao {
    display: grid;
    gap: 8px;
    text-align: center;
}

.recuperar-senha-confirmacao strong {
    display: block;
    color: var(--brand-primary);
    font-size: 20px;
    line-height: 1.25;
}

.recuperar-senha-confirmacao span {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.recuperar-senha-confirmacao i {
    color: var(--brand-primary);
    font-size: 22px;
    margin-top: 2px;
}

.recuperacao-confirmada #formsenha,
.recuperacao-carregando #formsenha,
.recuperacao-carregando .log-in,
.recuperacao-confirmada .log-in {
    display: none;
}

.recuperacao-carregando #alerta-senha,
.recuperacao-confirmada #alerta-senha {
    margin-top: 8px;
}

.auth-modal--recovery .recuperar-senha-loading,
.auth-modal--recovery .recuperar-senha-confirmacao {
    width: 100%;
    padding: clamp(8px, 2vh, 14px) 0 0;
    color: var(--bet-modal-text-muted);
}

.auth-modal--recovery .recuperar-senha-loading strong,
.auth-modal--recovery .recuperar-senha-confirmacao strong {
    color: var(--bet-modal-text);
    font-size: clamp(18px, 4.2vw, 22px);
    text-shadow: 0 0 8px rgba(var(--bet-modal-accent-rgb), 0.18);
}

.auth-modal--recovery .recuperar-senha-loading span:last-child,
.auth-modal--recovery .recuperar-senha-confirmacao span {
    color: var(--bet-modal-text-muted);
}

.auth-modal--recovery .recuperar-senha-spinner {
    border-color: rgba(var(--bet-modal-accent-rgb), 0.18);
    border-top-color: var(--bet-modal-accent);
}

.auth-modal--recovery .recuperar-senha-confirmacao i {
    color: var(--bet-modal-accent);
    text-shadow: 0 0 12px rgba(var(--bet-modal-accent-rgb), 0.30);
}

.auth-modal--recovery .recuperar-senha-ok {
    min-height: 48px;
    border: 1px solid rgba(232, 246, 255, 0.74);
    border-radius: var(--bet-modal-radius-sm);
    background:
        linear-gradient(120deg,
            rgba(var(--bet-modal-prism-rgb), 0.98) 0%,
            rgba(var(--bet-modal-accent-2-rgb), 0.98) 45%,
            rgba(var(--bet-modal-accent-rgb), 1) 100%);
    color: #020711;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.20) inset,
        0 0 9px rgba(var(--bet-modal-accent-rgb), 0.34),
        0 10px 22px rgba(var(--bet-modal-accent-rgb), 0.14);
}

.auth-modal--recovery.recuperacao-carregando,
.auth-modal--recovery.recuperacao-confirmada {
    max-height: 92vh;
}

.auth-modal--recovery.recuperacao-carregando .auth-modal-form-panel,
.auth-modal--recovery.recuperacao-confirmada .auth-modal-form-panel {
    justify-content: center;
}

.reset-password-page {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background:
        radial-gradient(900px 520px at 50% 18%, rgba(var(--bet-modal-accent-rgb), 0.14), transparent 62%),
        radial-gradient(760px 420px at 8% 92%, rgba(var(--bet-modal-accent-rgb), 0.08), transparent 68%),
        radial-gradient(620px 360px at 92% 90%, rgba(var(--bet-modal-prism-rgb), 0.07), transparent 66%),
        linear-gradient(180deg, rgba(3, 10, 18, 1) 0%, rgba(1, 4, 12, 1) 48%, #010205 100%);
    color: #fff;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    letter-spacing: 0;
}

.reset-password-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%),
        repeating-linear-gradient(90deg, rgba(var(--bet-modal-accent-rgb), 0.025) 0 1px, transparent 1px 96px);
    opacity: 0.55;
}

.reset-password-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 1.4vw, 16px) clamp(18px, 5vw, 72px);
    background:
        radial-gradient(520px 160px at 8% 0%, rgba(var(--bet-modal-accent-rgb), 0.08), transparent 68%),
        linear-gradient(180deg, rgba(8, 16, 24, 0.94), rgba(4, 10, 17, 0.86));
    border-bottom: 1px solid rgba(var(--bet-modal-accent-rgb), 0.22);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.reset-password-logo {
    display: inline-flex;
    align-items: center;
}

.reset-password-logo img {
    display: block;
    max-width: 148px;
    max-height: 46px;
    object-fit: contain;
}

.reset-password-header-link,
.reset-password-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.reset-password-header-link {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(var(--bet-modal-accent-rgb), 0.32);
    border-radius: 8px;
    background: rgba(var(--bet-modal-accent-rgb), 0.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.reset-password-header-link i {
    font-size: 17px;
}

.reset-password-header-link:hover,
.reset-password-secondary:hover {
    color: var(--brand-hover);
    transform: translateY(-1px);
}

.reset-password-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(78px, 10vh, 96px) 18px clamp(18px, 4vh, 34px);
    box-sizing: border-box;
}

.reset-password-card {
    width: min(100%, 430px);
    padding: 28px;
    border-radius: 7px;
    background:
        radial-gradient(720px 280px at -12% 0%, rgba(var(--brand-primary-rgb), 0.12), transparent 60%),
        var(--player-surface-card-linear-bg);
    border: 1px solid rgba(var(--brand-primary-rgb), 0.18);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.52);
    box-sizing: border-box;
}

.reset-password-card.bet-modal-panel {
    width: min(100%, 480px);
    max-height: calc(100dvh - clamp(112px, 16vh, 146px));
    overflow-y: auto;
    padding: clamp(22px, 3.2vw, 30px);
    border-radius: var(--bet-modal-radius);
    background: var(--bet-modal-panel-bg);
    border: 1px solid rgba(var(--bet-modal-prism-rgb), 0.58);
    box-shadow:
        inset 0 0 0 1px rgba(var(--bet-modal-accent-rgb), 0.12),
        inset 0 0 28px rgba(var(--bet-modal-prism-rgb), 0.05),
        0 0 10px rgba(var(--bet-modal-accent-rgb), 0.12),
        0 0 14px rgba(var(--bet-modal-prism-rgb), 0.08),
        0 24px 64px rgba(0, 0, 0, 0.62);
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--bet-modal-accent-rgb), 0.42) rgba(1, 5, 20, 0.46);
}

.reset-password-card.bet-modal-panel::-webkit-scrollbar {
    width: 6px;
}

.reset-password-card.bet-modal-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(var(--bet-modal-accent-rgb), 0.42);
}

.reset-password-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 7px;
    background: rgba(var(--brand-primary-rgb), 0.12);
    color: var(--brand-primary);
    font-size: 20px;
}

.reset-password-card h1 {
    margin: 0;
    color: var(--bet-modal-text);
    font-family: inherit;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
}

.reset-password-card .bet-modal-title {
    font-size: clamp(25px, 4vw, 32px);
    font-weight: 900;
}

.reset-password-subtitle {
    margin: 8px 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.reset-password-message {
    margin: 0;
    padding: 12px 14px;
    border-radius: 5px;
    background: rgba(255, 59, 59, 0.10);
    border: 1px solid rgba(255, 59, 59, 0.24);
    color: #ff5b5b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.reset-password-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.reset-password-actions--stacked {
    flex-direction: column;
    gap: 12px;
}

.reset-password-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    margin-top: 0;
}

.reset-password-card .bet-modal-field {
    padding: 1px;
    border-radius: var(--bet-modal-radius-sm);
    background:
        linear-gradient(132deg,
            rgba(var(--bet-modal-accent-rgb), 0.58) 0%,
            rgba(122, 164, 255, 0.46) 46%,
            rgba(var(--bet-modal-prism-rgb), 0.58) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 5px rgba(var(--bet-modal-accent-rgb), 0.18),
        0 0 9px rgba(var(--bet-modal-prism-rgb), 0.12);
}

.reset-password-card .bet-modal-field input {
    height: 52px;
    padding-left: 54px;
    padding-right: 52px;
    width: 100%;
    border: 1px solid rgba(148, 188, 255, 0.42);
    border-radius: var(--bet-modal-radius-sm);
    background:
        radial-gradient(360px 140px at 100% 100%, rgba(var(--bet-modal-prism-rgb), 0.08), transparent 64%),
        radial-gradient(300px 120px at 0% 0%, rgba(var(--bet-modal-accent-rgb), 0.05), transparent 62%),
        linear-gradient(180deg, rgba(2, 8, 28, 0.98), rgba(1, 4, 18, 0.98));
    color: var(--bet-modal-text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    box-sizing: border-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        inset 0 0 12px rgba(var(--bet-modal-prism-rgb), 0.05),
        0 0 5px rgba(var(--bet-modal-accent-rgb), 0.16),
        0 0 7px rgba(var(--bet-modal-prism-rgb), 0.10);
}

.reset-password-card .bet-modal-field input::placeholder {
    color: rgba(226, 232, 255, 0.68);
}

.reset-password-card .input-icon > i {
    left: 18px;
    color: rgba(245, 248, 255, 0.86);
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(var(--bet-modal-accent-rgb), 0.14));
}

.reset-password-card .bet-modal-field input:focus {
    border-color: rgba(182, 208, 255, 0.62);
    box-shadow:
        inset 0 0 16px rgba(var(--bet-modal-accent-rgb), 0.08),
        0 0 0 2px rgba(var(--bet-modal-accent-rgb), 0.10),
        0 0 9px rgba(var(--bet-modal-accent-rgb), 0.18),
        0 0 12px rgba(var(--bet-modal-prism-rgb), 0.10);
}

.reset-password-field input {
    padding-right: 44px;
}

.toggle-reset-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.toggle-reset-password:hover {
    color: var(--brand-primary);
    background: rgba(var(--brand-primary-rgb), 0.08);
}

.reset-password-field .toggle-reset-password i {
    position: static;
    transform: none;
    pointer-events: auto;
    color: inherit;
}

.reset-password-requirements {
    display: grid;
    gap: 7px;
    margin: 10px 0 14px;
    padding: 10px 14px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.16);
}

.reset-password-requirements li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.reset-password-requirements i {
    color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
    transition: color 0.2s ease;
}

.reset-password-requirements li.is-valid {
    color: #41e58b;
}

.reset-password-requirements li.is-valid i {
    color: #41e58b;
}

.reset-password-card .bet-modal-primary-button {
    min-height: 50px;
    width: 100%;
    border-radius: var(--bet-modal-radius-sm);
    border: 1px solid rgba(232, 246, 255, 0.78);
    background:
        linear-gradient(120deg,
            rgba(var(--bet-modal-prism-rgb), 0.98) 0%,
            rgba(var(--bet-modal-accent-2-rgb), 0.98) 45%,
            rgba(var(--bet-modal-accent-rgb), 1) 100%);
    color: #020711;
    font-family: inherit;
    font-size: 17px;
    font-weight: 900;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.24) inset,
        0 0 9px rgba(var(--bet-modal-accent-rgb), 0.42),
        0 0 16px rgba(var(--bet-modal-prism-rgb), 0.18),
        0 12px 26px rgba(var(--bet-modal-accent-rgb), 0.16);
}

.reset-password-card .bet-modal-primary-button:hover {
    background:
        linear-gradient(120deg,
            rgba(var(--bet-modal-prism-rgb), 1) 0%,
            rgba(var(--bet-modal-accent-rgb), 1) 58%,
            rgba(105, 236, 255, 1) 100%);
    filter: brightness(1.08);
}

.reset-password-card .input-icon input,
.reset-password-card .submit-button,
.reset-password-primary-link,
.reset-password-secondary {
    font-family: inherit;
}

@media (min-width: 769px) and (max-height: 760px) {
    .reset-password-header {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .reset-password-logo img {
        max-height: 38px;
    }

    .reset-password-header-link {
        min-height: 32px;
        font-size: 14px;
    }

    .reset-password-main {
        align-items: flex-start;
        padding-top: 68px;
        padding-bottom: 16px;
    }

    .reset-password-card.bet-modal-panel {
        max-height: calc(100dvh - 84px);
        padding: 18px 24px;
    }

    .reset-password-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
        font-size: 17px;
    }

    .reset-password-card .bet-modal-title {
        font-size: 26px;
    }

    .reset-password-subtitle {
        margin: 6px 0 12px;
        font-size: 13px;
    }

    .reset-password-card .input-icon {
        margin-bottom: 8px;
    }

    .reset-password-card .bet-modal-field input {
        height: 46px;
        font-size: 15px;
    }

    .reset-password-requirements {
        gap: 5px;
        margin: 8px 0 10px;
        padding: 8px 12px;
    }

    .reset-password-requirements li {
        font-size: 12px;
    }

    .reset-password-card .bet-modal-primary-button {
        min-height: 46px;
        font-size: 16px;
    }

    .reset-password-actions {
        margin-top: 10px;
    }
}

@media (max-width: 520px) {
    .reset-password-header {
        padding: 14px 16px;
    }

    .reset-password-logo img {
        max-width: 118px;
    }

    .reset-password-header-link {
        min-height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }

    .reset-password-card {
        padding: 22px 18px;
    }

    .reset-password-card h1 {
        font-size: 24px;
    }
}

.recover-password {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    margin-top: 5px;
    cursor: pointer;
}

.recover-password a,
.log-in a,
.create-account a {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 14px;
}

.recover-password a:hover,
.log-in a:hover,
.create-account a:hover {
    color: var(--brand-hover);
}

.log-in,
.create-account {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    cursor: pointer;
}

#alerta-cadastro,
#alerta-login,
#alerta-senha,
#alerta-contato {
    width: 100%;
    margin-top: -10px;
    display: none;
    font-size: 14px;
}

.alertanao {
    width: 100%;
    color: #FE0000;
    text-align: center;
    display: block;
    cursor: pointer;
    line-height: 24px;
}

.alertasim {
    width: 100%;
    color: var(--brand-primary);
    text-align: center;
    display: block;
    cursor: pointer;
    line-height: 24px;
}

/* Estilos para o footer */
.footer {
    color: #fff;
    width: 100%;
    padding: 15px 0 5px;
}

.footer .container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 5px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--brand-primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.footer-column ul li a:hover {
    text-decoration: none;
}

.footer img {
    max-width: 150px;
}

.footer img.pix-logo {
    max-width: 100px !important;
}

.social-icons a {
    margin-right: 10px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.footer-line {
    border-top: 1px solid #444;
    margin: 15px auto;
    max-width: 1200px;
}

.footer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    color: #ccc;
    line-height: 1.6;
    padding: 0 20px;
}

.ver-mais-btn {
    padding: 10px 20px;
    background-color: var(--brand-primary);
    color: var(--brand-text);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    display: block;
    margin: 10px auto 0;
    transition: background-color 0.3s;
}

.ver-mais-btn:hover {
    background-color: var(--brand-hover);
}

.footer-centered-img {
    max-width: 1000px;
    margin: 10px auto;
    text-align: center;
}

.selo-img {
    max-width: 350px !important;
    height: auto !important;
}

.footer-bottom {
    max-width: 1000px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom span {
    margin: 0 8px;
}

/* ==============================
   Missões - Header (Variação 2)
   ============================== */
.missoes-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 10px;
    padding: 0 20px;
    box-sizing: border-box;
}

.missoes-header {
    background: var(--player-surface-card-bg);
    border: var(--player-control-border);
    border-radius: 14px;
    padding: 16px 16px 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.missoes-title {
    margin: 0 0 6px 0;
    padding: 0;
    color: var(--brand-primary);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.missoes-title i {
    color: var(--brand-primary);
    font-size: 22px;
}

.missoes-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
}

.filtros-container {
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
    padding-bottom: 12px;
}

.filtros-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--brand-primary);
    opacity: .85;
    border-radius: 2px;
}

.actions-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.sort-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Estado vazio dentro de Minhas Missões */
.empty-state {
    background: var(--player-empty-bg);
    border: var(--player-empty-border);
    border-radius: 12px;
    padding: 28px 18px;
    color: var(--player-empty-text);
    text-align: center;
}

.empty-state i {
    color: var(--player-empty-icon-color);
    font-size: 26px;
    margin-bottom: 8px;
}

/* Grid de Missões (container já existe na página) */
.missoes-grid {
    margin-top: 14px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .footer .container-footer {
        flex-wrap: nowrap;
        padding: 0 8px;
        gap: 2px;
    }

    .footer-column {
        flex: 1 1 0;
        min-width: 0;
        margin: 5px 2px;
    }

    .footer-column:first-child img {
        max-width: 90px;
    }

    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 6px;
        white-space: nowrap;
    }

    .footer-column ul li {
        margin-bottom: 3px;
    }

    .footer-column ul li a {
        font-size: 12px;
        white-space: nowrap;
    }

    .footer-column img,
    .footer-column .pix-logo {
        max-width: 70px;
    }

    .social-icons a {
        font-size: 18px;
        margin-right: 6px;
    }

    .footer-text,
    .footer-bottom {
        padding: 0 10px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {

    /* Estilos para barra topo */
    .top-bar {
        padding: 5px 0;
    }

    .bonus-cadastro {
        font-size: 3.5vw;
    }

    /* Estilos para o modal */
    .modal {
        width: calc(100% - 80px);
        max-width: none;
    }

    .auth-modal {
        width: min(94vw, 500px);
        max-width: 500px;
        aspect-ratio: auto;
        max-height: 92vh;
        border-radius: var(--bet-modal-radius);
    }

    .auth-modal--login {
        width: min(94vw, 500px);
        max-width: 500px;
        aspect-ratio: auto;
        max-height: 92vh;
    }

    .auth-modal .modal-content {
        max-height: 92vh;
        overflow-y: auto;
    }

    .auth-modal-shell,
    .auth-modal--login .auth-modal-shell {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        gap: 10px;
    }

    .auth-modal-banner,
    .auth-modal--login .auth-modal-banner {
        width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 8 / 3;
    }

    .auth-modal-banner img {
        object-fit: cover;
    }

    .auth-modal-form-panel,
    .auth-modal--login .auth-modal-form-panel {
        width: 100%;
        max-height: none;
        aspect-ratio: auto;
        padding: clamp(18px, 5vw, 26px);
    }

    .auth-modal-form-panel h2 {
        margin-bottom: 20px;
        font-size: clamp(18px, 5vw, 25px);
    }

    .auth-modal .bet-modal-field input {
        height: 52px;
        font-size: 16px;
    }

    .auth-modal .bet-modal-primary-button {
        min-height: 58px;
        font-size: 22px;
    }

    .auth-modal .close-modal {
        top: 14px;
        right: 16px;
        font-size: 30px;
    }

    /* Estilos para o footer */
    .footer .container-footer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        gap: 8px;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .footer-column:nth-child(1) {
        display: none;
    }

    .footer-column {
        min-width: 0;
        box-sizing: border-box;
        margin: 5px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        order: 1;
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        order: 2;
    }

    .footer-column ul {
        padding-left: 0;
        list-style: none;
    }

    .footer-column img,
    .footer-column .pix-logo,
    .footer-column .social-icons {
        margin: 0 auto;
        display: block;
    }

    .footer-column h4 {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .footer-text,
    .footer-bottom {
        padding: 0 12px;
        box-sizing: border-box;
    }

    .selo-img {
        max-width: min(350px, calc(100vw - 32px)) !important;
    }
}

@media (max-width: 768px) and (max-height: 740px) {
    .auth-modal {
        max-height: 94dvh;
        padding: 8px;
    }

    .auth-modal .modal-content {
        max-height: calc(94dvh - 16px);
        overflow-y: auto;
    }

    .auth-modal-shell,
    .auth-modal--login .auth-modal-shell {
        gap: 8px;
        overflow: visible;
    }

    .auth-modal-banner,
    .auth-modal--login .auth-modal-banner {
        max-height: 150px;
    }

    .auth-modal-form-panel,
    .auth-modal--login .auth-modal-form-panel {
        padding: clamp(14px, 3.6vw, 20px);
    }

    .auth-modal-form-panel h2 {
        margin-bottom: 12px;
        font-size: clamp(20px, 5.8vw, 28px);
    }

    .auth-modal .input-icon {
        margin-bottom: 8px;
    }

    .auth-modal .bet-modal-field input {
        height: 46px;
        padding-left: 46px;
        font-size: 15px;
    }

    .auth-modal .input-icon i {
        left: 16px;
        font-size: 18px;
    }

    .auth-modal .cadastro-aceite {
        gap: 9px;
        font-size: 12px;
        line-height: 1.24;
    }

    .auth-modal .cadastro-aceite input[type="checkbox"] {
        width: 19px;
        height: 19px;
    }

    .auth-modal .bet-modal-primary-button {
        min-height: 48px;
        margin-top: 10px;
        font-size: 18px;
    }
}

@media (max-width: 768px) and (max-height: 620px) {
    .auth-modal-banner,
    .auth-modal--login .auth-modal-banner {
        max-height: 112px;
    }

    .auth-modal-form-panel,
    .auth-modal--login .auth-modal-form-panel {
        padding: 12px;
    }

    .auth-modal-form-panel h2 {
        margin-bottom: 10px;
        font-size: clamp(18px, 5.2vw, 24px);
    }

    .auth-modal .bet-modal-field input {
        height: 42px;
    }

    .auth-modal .bet-modal-primary-button {
        min-height: 44px;
    }
}

/* Bottom Navigation Bar Styles (idêntico ao dashboard) */
.bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--player-surface-bottom-bg);
    border-top: var(--player-surface-bottom-border);
    box-shadow: var(--player-shadow-bottom-strong);
    z-index: 9999;
    padding: 4px 0 max(4px, env(safe-area-inset-bottom));
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 4px;
    position: relative;
    overflow: hidden;
}

.bottom-nav-item:hover {
    background: rgba(0, 199, 116, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item:active {
    transform: translateY(0);
    background: rgba(0, 199, 116, 0.2);
}

.bottom-nav-item i {
    font-size: 20px;
    color: var(--brand-primary);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover i {
    color: var(--brand-primary);
    transform: scale(1.1);
}

.bottom-nav-item span {
    font-size: 11px;
    color: #CCCCCC;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.bottom-nav-item:hover span {
    color: var(--brand-primary);
}

/* Esconder bottom nav no desktop */
@media (min-width: 1041px) {
    .bottom-nav {
        display: none;
    }
}

/* Espaço para não sobrepor conteúdo no mobile */
@media (max-width: 1040px) {
    body {
        padding-bottom: 40px;
    }

    .footer {
        margin-bottom: 40px;
    }
}
