* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    box-sizing: border-box;
}

html * {
    box-sizing: border-box;
}

:root {
    --primary-color: #8b7cf6;
    --secondary-color: #a29bfe;
    --success-color: #00d4aa;
    --danger-color: #ff6b6b;
    --warning-color: #f59e0b;
    --dark-color: #1a1a2e;
    --light-color: #16213e;
    --white: #0f0f1e;
    --text-primary: #e4e4e4;
    --text-secondary: #b8b8b8;
    --card-bg: #16213e;
    --card-border: #2a3a5a;
    --gradient: linear-gradient(135deg, #8b7cf6 0%, #6c5ce7 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-dark);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden !important;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevenir zoom em double-tap no iOS */
    touch-action: manipulation;
    /* Prevenir scroll horizontal */
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    /* Garantir que não haja overflow horizontal */
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
}

/* Quando modal está aberto, bloquear completamente o body */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Prevenir zoom em double-tap em elementos interativos */
button, a, input, select, textarea {
    touch-action: manipulation;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container {
    padding: 0 20px;
    }
}

/* Header */
.header {
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.98) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(139, 124, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
    position: relative;
    z-index: 1002;
    gap: 1.5rem;
    max-width: 1400px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Carteira no Header */
.carteira-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 212, 170, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.carteira-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carteira-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.saldo-valor-header {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.btn-recarregar {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-recarregar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 124, 246, 0.4);
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0.8rem 10px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
    }
    
    .carteira-header {
        padding: 0.5rem 0.8rem;
        gap: 0;
    }
    
    .carteira-info {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    
    .carteira-label {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .saldo-valor-header {
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    /* Ocultar botão recarregar no mobile */
    .carteira-header .btn-recarregar {
        display: none;
    }
    
    .menu-toggle {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .header .container {
        padding: 1rem 20px;
    }
    
    .logo h1 {
    font-size: 1.8rem;
    }
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 42px;
    height: 42px;
    background: rgba(139, 124, 246, 0.1);
    border: 1px solid rgba(139, 124, 246, 0.3);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001 !important;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(139, 124, 246, 0.3);
    min-height: 42px;
    min-width: 42px;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    outline: none;
}

.menu-toggle:active {
    background: rgba(139, 124, 246, 0.1);
    border-radius: 5px;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    pointer-events: none; /* Impede que os spans bloqueiem o clique */
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

.nav {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

/* Links de navegação - Desktop */
@media (min-width: 769px) {
    .nav a {
        padding: 0.55rem 1.1rem;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.9rem;
        color: var(--text-secondary);
        transition: all 0.3s ease;
        background: transparent;
        border: 1px solid transparent;
        text-decoration: none;
    }
    
    .nav a:hover {
        color: var(--primary-color);
        background: rgba(139, 124, 246, 0.1);
        border-color: rgba(139, 124, 246, 0.2);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header .container {
        padding: 0.8rem 10px;
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .header-right {
        gap: 0.5rem;
        width: auto;
        justify-content: flex-end;
        flex: 1;
    }
    
    /* Carteira Mobile */
    .carteira-header {
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .carteira-label {
        font-size: 0.8rem;
    }
    
    .saldo-valor-header {
        font-size: 0.9rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--card-bg) 0%, rgba(20, 20, 40, 0.99) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 70px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0.5rem;
        border-left: 1px solid rgba(139, 124, 246, 0.2);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        width: 100%;
        padding: 1rem 1.2rem;
        border-bottom: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        min-height: 50px;
        background: rgba(255, 255, 255, 0.03);
        margin-bottom: 0.4rem;
        transition: all 0.3s ease;
    }
    
    .nav a:hover,
    .nav a:active {
        background: rgba(139, 124, 246, 0.15);
        color: var(--primary-color);
    }
    
    /* Slots no menu mobile */
    .nav .nav-slots {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
        color: #fff !important;
        padding: 1rem 1.2rem !important;
        border-radius: 10px !important;
        font-weight: 600;
    }
    
    .nav .nav-slots:hover {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
        color: #fff !important;
    }
    
    .nav .btn-login {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem !important;
        min-height: 52px;
        border-radius: 10px !important;
        margin-left: 0;
        font-size: 1rem;
        font-weight: 600;
        background: var(--gradient) !important;
    }
    
    .nav .btn-logout {
        background: rgba(255, 255, 255, 0.03) !important;
        color: var(--text-secondary) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-top: 0.5rem;
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem !important;
        min-height: 52px;
        border-radius: 10px !important;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: none;
    }
    
    .nav .btn-logout:hover,
    .nav .btn-logout:active {
        background: rgba(255, 107, 107, 0.1) !important;
        color: var(--danger-color) !important;
    }
}

/* Botão de logout - Desktop */
@media (min-width: 769px) {
    .btn-logout {
        background: transparent !important;
        color: var(--text-secondary) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 0.55rem 1.1rem !important;
        border-radius: 8px !important;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .btn-logout:hover {
        background: rgba(255, 107, 107, 0.1) !important;
        border-color: rgba(255, 107, 107, 0.3) !important;
        color: var(--danger-color) !important;
    }
}

.nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav a:hover {
    color: var(--primary-color);
}

@media (min-width: 769px) {
    .nav a {
        min-height: auto;
    }
}

/* Botão Login/Perfil - Desktop */
@media (min-width: 769px) {
    .btn-login {
        background: var(--gradient) !important;
        color: var(--white) !important;
        padding: 0.55rem 1.2rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.9rem;
        border: none !important;
    }
    
    .btn-login:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(139, 124, 246, 0.4);
        background: var(--gradient) !important;
    }
}

/* Link do Slots no Menu */
@media (min-width: 769px) {
    .nav-slots {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
        color: #fff !important;
        padding: 0.55rem 1.1rem !important;
        border-radius: 8px !important;
        font-weight: 600;
        font-size: 0.9rem;
        border: none !important;
    }
    
    .nav-slots:hover {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        transform: translateY(-1px);
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
        color: #fff !important;
    }
}

@keyframes pulse-slots {
    0%, 100% { box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 25px rgba(245, 158, 11, 0.6); }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-primary);
}

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

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
    padding: 0 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    padding: 0 1rem;
}

.hero .btn-primary {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

/* Buttons */
.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-height: 48px;
    min-width: 120px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

.btn-secondary {
    background: var(--danger-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-copy {
    background: var(--success-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #00a085;
}

/* Como Funciona Section */
.como-funciona-section {
    background: var(--card-bg);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
}

.como-funciona-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    padding: 0 1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.info-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 124, 246, 0.3);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-card strong {
    color: var(--success-color);
    font-weight: 600;
}

@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
    
    .como-funciona-section h2 {
    font-size: 2.5rem;
    }
}

/* Apostas Section */
.apostas-section {
    background: var(--card-bg);
    padding: 2rem 0;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    padding: 0 1rem;
}

.apostas-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding: 0 1rem;
}

.apostas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

/* Apostas Grid Mobile */
@media (max-width: 480px) {
    .apostas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
        padding: 0 0.3rem;
    }
    
    .animal-card {
        padding: 0.9rem 0.7rem;
        min-height: 110px;
        border-radius: 10px;
    }
    
    .animal-card .emoji {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .animal-card .nome {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .animal-card .numeros {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media (min-width: 480px) {
    .apostas-section {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .apostas-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .apostas-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1.2rem;
        margin-bottom: 2rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .apostas-section {
        padding: 4rem 0;
    }
    
    .apostas-section h2 {
        font-size: 2.5rem;
    }
    
    .apostas-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    }
}

.animal-card {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 124, 246, 0.2);
}

.animal-card:active {
    transform: scale(0.95);
}

@media (min-width: 480px) {
    .animal-card {
        padding: 1.2rem;
        min-height: 140px;
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .animal-card {
        padding: 1.5rem;
        min-height: 160px;
}

.animal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
}

.animal-card.selected {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,212,170,0.5);
}

@media (min-width: 768px) {
    .animal-card.selected {
    transform: scale(1.05);
    }
}

.animal-card .emoji {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

@media (min-width: 480px) {
    .animal-card .emoji {
        font-size: 2.5rem;
        margin-bottom: 0.4rem;
    }
}

@media (min-width: 768px) {
.animal-card .emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    }
}

.animal-card .nome {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

@media (min-width: 480px) {
    .animal-card .nome {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
}

@media (min-width: 768px) {
    .animal-card .nome {
        font-size: 1.2rem;
    margin-bottom: 0.5rem;
    }
}

.animal-card .numeros {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.3;
}

.animal-card.no-carrinho {
    border: 3px solid var(--success-color);
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2) 0%, rgba(0, 184, 148, 0.1) 100%);
}

.badge-carrinho {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--success-color);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.animal-card {
    position: relative;
}

@media (min-width: 480px) {
    .animal-card .numeros {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .animal-card .numeros {
        font-size: 0.9rem;
    }
}

/* Carrinho de Apostas */
.carrinho-apostas {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0.5rem 0;
    border: 1px solid var(--card-border);
}

.carrinho-apostas h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.carrinho-vazio {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.carrinho-itens {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carrinho-item {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carrinho-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.carrinho-item-animal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.carrinho-item-animal .emoji {
    font-size: 2rem;
}

.carrinho-item-animal .nome {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-remover-item {
    background: var(--danger-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    min-height: 36px;
}

.btn-remover-item:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.carrinho-item-opcoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
}

.opcao-numero {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.opcao-numero label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.numeros-grupo {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.numero-option {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 50px;
    text-align: center;
    font-size: 0.9rem;
}

.numero-option:hover {
    background: var(--primary-color);
    color: var(--white);
}

.numero-option.selected {
    background: var(--success-color);
    border-color: var(--success-color);
    color: var(--white);
}

.valor-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.valor-item label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.input-valor-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: var(--light-color);
    overflow: hidden;
}

.moeda-simbolo {
    padding: 0.8rem 0.5rem 0.8rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.valor-item input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    min-height: 44px;
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    background: var(--light-color);
    color: var(--text-primary);
}

.valor-item input:focus {
    outline: none;
    background: rgba(108, 92, 231, 0.05);
}

.valor-item-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.carrinho-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.total-info strong {
    color: var(--success-color);
    font-size: 1.5rem;
}

.premio-info-geral {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
}

.premio-info-geral small {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.premio-info-geral strong {
    color: var(--success-color);
}

/* Carrinho Mobile */
@media (max-width: 768px) {
    .carrinho-apostas {
        padding: 1.2rem;
        margin: 1.5rem 0.5rem 0;
        border-radius: 12px;
    }
    
    .carrinho-apostas h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .carrinho-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .carrinho-item-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .carrinho-item-animal .emoji {
        font-size: 1.8rem;
    }
    
    .carrinho-item-animal .nome {
        font-size: 1rem;
    }
    
    .btn-remover-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-height: 44px;
        width: 100%;
    }
    
    .opcao-numero label {
        font-size: 0.9rem;
    }
    
    .numero-option {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
        min-width: 45px;
        min-height: 44px;
    }
    
    .valor-item label {
        font-size: 0.9rem;
    }
    
    .input-valor-wrapper {
        min-height: 48px;
    }
    
    .moeda-simbolo {
        padding: 0.7rem 0.4rem 0.7rem 0.8rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .valor-item input {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .valor-item-info {
        font-size: 0.8rem;
    }
    
    .carrinho-total {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        gap: 0.8rem;
    }
    
    .total-info {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .total-info strong {
        font-size: 1.3rem;
        align-self: flex-end;
    }
    
    .btn-finalizar-apostas {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .carrinho-apostas {
        margin: 2rem 0 0;
    }
    
    .carrinho-item-header {
        flex-wrap: nowrap;
    }
    
    .btn-remover-item {
        width: auto;
    }
    
    .valor-item {
        max-width: 200px;
    }
    
    .carrinho-total {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .total-info {
        flex-direction: row;
    }
}

.tipo-aposta {
    width: 100%;
}

.tipo-aposta label:first-child {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.tipo-opcoes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--card-bg);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--card-border);
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: rgba(108, 92, 231, 0.05);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-option span {
    font-weight: 500;
    color: var(--text-primary);
}

.numero-aposta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.numero-aposta label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.numero-aposta select {
    padding: 0.9rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1rem;
    min-height: 48px;
    width: 100%;
    background: var(--white);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c5ce7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.premio-info {
    margin-top: 0.5rem;
    padding: 0.8rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 8px;
    text-align: center;
}

.premio-info small {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.premio-info strong {
    color: var(--success-color);
    font-size: 1rem;
}

.valor-aposta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.valor-aposta label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.valor-aposta input {
    padding: 0.9rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width: 480px) {
    .aposta-info {
        padding: 2rem;
        margin: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .valor-aposta {
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: 1rem;
    }
    
    .valor-aposta input {
    width: 150px;
    }
}

/* Resultados Section */
.resultados-section {
    background: var(--card-bg);
    padding: 2rem 0;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
}

.resultados-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding: 0 1rem;
}

.resultados-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 480px) {
    .resultados-section {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .resultados-section h2 {
        font-size: 2.2rem;
    margin-bottom: 2rem;
    }
    
    .resultados-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .resultados-section {
        padding: 4rem 0;
    }
    
    .resultados-section h2 {
    font-size: 2.5rem;
}

.resultados-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    }
}

.resultado-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    border: 1px solid var(--card-border);
    border-left: 5px solid var(--primary-color);
}

.resultado-card .data {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.resultado-card .animal-vencedor {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.resultado-card .numero-vencedor {
    font-size: 1.1rem;
    color: var(--success-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.premio-info-resultado {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--light-color);
}

/* Afiliados Section */
.afiliados-section {
    background: var(--card-bg);
    padding: 2rem 0;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
}

.afiliados-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding: 0 1rem;
}

.afiliados-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

@media (min-width: 480px) {
    .afiliados-section {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .afiliados-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .afiliados-info {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .afiliados-section {
        padding: 4rem 0;
    }
    
    .afiliados-section h2 {
    font-size: 2.5rem;
}

.afiliados-info {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    }
}

.card {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    opacity: 0.9;
    line-height: 1.6;
}

.link-afiliado {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0.5rem 0;
    border: 1px solid var(--card-border);
}

.link-afiliado h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.link-box {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.link-box input {
    flex: 1;
    padding: 0.9rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 0.9rem;
    min-height: 48px;
    width: 100%;
}

.link-box .btn-copy {
    width: 100%;
    min-height: 48px;
}

@media (min-width: 480px) {
    .link-afiliado {
        padding: 2rem;
        margin: 2rem 0 0;
    }
    
    .link-afiliado h3 {
        font-size: 1.5rem;
    }
    
    .link-box {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .link-box .btn-copy {
        width: auto;
        min-width: 120px;
    }
}

.stats-afiliado {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .stats-afiliado {
        flex-direction: row;
    gap: 2rem;
    justify-content: center;
    }
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    min-width: 150px;
    border: 1px solid var(--card-border);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
    /* Prevenir scroll e drag no mobile */
    touch-action: none;
    overflow: hidden;
    -webkit-overflow-scrolling: none;
    overscroll-behavior: none;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Prevenir movimento lateral */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
}

.modal-content {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
    margin: 1rem;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    /* Prevenir drag e movimento lateral */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Garantir que não saia da tela */
    box-sizing: border-box;
    left: auto;
    right: auto;
}

/* Modal Mobile */
@media (max-width: 768px) {
    .modal {
        padding: 0;
        align-items: flex-start;
        padding-top: 2vh;
        /* Prevenir qualquer movimento lateral */
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        touch-action: none;
        overflow: hidden;
    }
    
    .modal.show {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
    }
    
    .modal-content {
        width: 95%;
        max-width: 100%;
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
        max-height: 98vh;
        border-radius: 12px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        /* Prevenir movimento lateral */
        position: relative;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        touch-action: pan-y pinch-zoom;
        overscroll-behavior: contain;
        /* Garantir que não saia da tela */
        box-sizing: border-box;
        max-width: calc(100vw - 1rem);
    }
    
    .modal-large {
        max-width: 95%;
        padding: 1.2rem 1rem;
    }
    
    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    /* Formulário de cadastro mobile */
    #registerForm input,
    #loginForm input {
        font-size: 16px !important;
        min-height: 48px !important;
        padding: 0.9rem 1rem !important;
        margin-bottom: 1rem;
        width: 100% !important;
        box-sizing: border-box;
        border: 2px solid rgba(255,255,255,0.2);
        background: var(--dark-color);
        color: var(--text-primary);
        border-radius: 10px;
    }
    
    #registerForm input:focus,
    #loginForm input:focus {
        outline: none;
        border-color: var(--primary-color);
        background: rgba(139, 124, 246, 0.1);
    }
    
    #registerForm button,
    #loginForm button {
        min-height: 48px;
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .codigo-referral-section {
        margin: 1.5rem 0;
        padding: 1rem;
        background: rgba(139, 124, 246, 0.1);
        border-radius: 10px;
    }
    
    .codigo-referral-section label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-primary);
    }
    
    .codigo-referral-section input {
        margin-bottom: 0.5rem !important;
    }
    
    .codigo-referral-section small {
        display: block;
        font-size: 0.75rem;
        color: var(--text-secondary);
        line-height: 1.4;
    }
    
    .login-link {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    .info-cadastro {
        font-size: 0.85rem;
        color: var(--text-secondary);
        text-align: center;
        margin-top: 1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.9rem 1rem !important;
        font-size: 16px !important;
        min-height: 48px !important;
        width: 100% !important;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 10px;
    }
    
    /* Inputs diretos no modal (sem form-group) */
    .modal-content input[type="text"],
    .modal-content input[type="email"],
    .modal-content input[type="password"],
    .modal-content input[type="number"],
    .modal-content input[type="tel"] {
        font-size: 16px !important;
        min-height: 48px !important;
        padding: 0.9rem 1rem !important;
        margin-bottom: 1rem;
        width: 100% !important;
        box-sizing: border-box;
        border: 2px solid rgba(255,255,255,0.2);
        background: var(--dark-color);
        color: var(--text-primary);
        border-radius: 10px;
    }
    
    .modal-content input:focus {
        outline: none;
        border-color: var(--primary-color);
        background: rgba(139, 124, 246, 0.1);
    }
    }
    
    .form-group textarea {
        padding: 0.9rem;
        font-size: 1rem;
        min-height: 100px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        margin-top: 0.5rem;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }
}

@media (min-width: 480px) {
    .modal-content {
        padding: 2.5rem;
        border-radius: 20px;
        width: 90%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 10;
}

.close:hover {
    color: var(--danger-color);
    background: rgba(214, 48, 49, 0.1);
}

@media (min-width: 480px) {
    .close {
        right: 20px;
        top: 20px;
    }
}

/* Close button mobile - garantir tamanho adequado */
@media (max-width: 768px) {
    .close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        right: 0.5rem;
        top: 0.5rem;
        font-size: 1.8rem;
    }
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input {
    padding: 1rem;
    border: 2px solid var(--card-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    background: var(--light-color);
    color: var(--text-primary);
}

/* Mobile: garantir font-size 16px para evitar zoom no iOS */
@media (max-width: 768px) {
    .modal-content input {
        font-size: 16px !important;
    }
}

.modal-content input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-link {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.perfil-info {
    margin-bottom: 2rem;
}

.perfil-info p {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.perfil-info strong {
    color: var(--primary-color);
}

/* Overlay para fechar menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 769px) {
    .menu-overlay {
        display: none !important;
    }
}

/* Melhorias de acessibilidade e touch */
button, a, input[type="button"], input[type="submit"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevenir zoom em inputs no iOS e melhorar usabilidade mobile */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
        min-height: 48px !important;
        padding: 0.9rem 1rem !important;
        border-radius: 10px !important;
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Garantir que inputs dentro de modais tenham tamanho adequado */
    .modal-content input[type="text"],
    .modal-content input[type="email"],
    .modal-content input[type="password"],
    .modal-content input[type="number"],
    .modal-content input[type="tel"] {
        font-size: 16px !important;
        min-height: 48px !important;
        padding: 0.9rem 1rem !important;
    }
    
    /* Melhorias gerais mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Scroll suave */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Garantir que container não ultrapasse a largura */
    .container {
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    /* Garantir que seções não ultrapassem a largura */
    section {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Header mobile - garantir que não quebre */
    .header .container {
        flex-wrap: wrap;
        padding: 0.8rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 2rem 0;
        margin: 0;
    }
    
    .hero .container {
        padding: 0 1rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn-primary {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
        max-width: 90%;
    }
    
    /* Como Funciona Mobile */
    .como-funciona-section {
        padding: 2rem 0;
        margin: 1.5rem 0.5rem;
        border-radius: 15px;
    }
    
    .como-funciona-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .info-cards {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Resultados Mobile */
    .resultados-section {
        padding: 2rem 0;
        margin: 1.5rem 0.5rem;
    }
    
    .resultados-section h2 {
        font-size: 1.6rem;
    }
    
    .resultados-grid {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .resultado-card {
        padding: 1.2rem;
    }
    
    .resultado-card .animal-vencedor {
        font-size: 1.2rem;
    }
    
    .resultado-card .numero-vencedor {
        font-size: 1rem;
    }
    
    /* Afiliados Mobile */
    .afiliados-section {
        padding: 2rem 0;
        margin: 1.5rem 0.5rem;
    }
    
    .afiliados-section h2 {
        font-size: 1.6rem;
    }
    
    .afiliados-info {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .link-afiliado {
        padding: 1.2rem;
        margin: 1.5rem 0.5rem 0;
    }
    
    .link-afiliado h3 {
        font-size: 1.1rem;
    }
    
    .link-box input {
        font-size: 0.9rem;
    }
    
    .stats-afiliado {
        gap: 0.8rem;
    }
    
    .stat {
        padding: 0.8rem;
        min-width: auto;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    /* Tabs Mobile */
    .tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
    
    /* Histórico de Apostas Mobile */
    .aposta-historico-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .aposta-historico-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .aposta-status {
        align-self: flex-end;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Close button mobile */
    .close {
        width: 44px;
        height: 44px;
        right: 10px;
        top: 10px;
        font-size: 1.8rem;
    }
}

/* Planos Section */
.planos-section {
    background: var(--card-bg);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
}

.planos-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.planos-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible; /* Permite que o banner "RECOMENDADO" seja totalmente visível */
}

.plano-card {
    background: var(--light-color);
    border: 2px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden; /* Mantém hidden para outros elementos, mas o banner usa position absolute */
}

.plano-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 124, 246, 0.3);
}

.plano-card.recommended {
    border-color: var(--success-color);
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(0,212,170,0.1) 100%);
}

.plano-card.recommended::before {
    content: '⭐ RECOMENDADO';
    position: absolute;
    top: 18px;
    right: -55px;
    background: var(--success-color);
    color: var(--white);
    padding: 8px 70px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.plano-nome {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.plano-valor {
    font-size: 2.5rem;
    color: var(--success-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.plano-valor small {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plano-beneficios {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plano-beneficios li {
    padding: 0.8rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--card-border);
}

.plano-beneficios li:last-child {
    border-bottom: none;
}

.plano-beneficios li::before {
    content: '✓ ';
    color: var(--success-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.plano-beneficios li.codigo-negativo::before {
    content: '✗ ';
    color: var(--danger-color);
}

.plano-comissoes {
    background: rgba(139, 124, 246, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.btn-escolher-plano {
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-escolher-plano:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 124, 246, 0.4);
}

.btn-escolher-plano:active {
    transform: translateY(0);
}

.plano-comissoes strong {
    color: var(--primary-color);
}

/* Planos Mobile */
@media (max-width: 768px) {
    .planos-section {
        padding: 2rem 0;
        margin: 1.5rem 0.5rem;
        border-radius: 15px;
    }
    
    .planos-section .container {
        padding: 0 1rem;
    }
    
    .planos-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .planos-container {
        gap: 1.2rem;
        padding: 0;
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .plano-nome {
        font-size: 1.5rem;
    }
    
    .plano-valor {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .plano-beneficios {
        margin: 1.2rem 0;
    }
    
    .plano-beneficios li {
        padding: 0.7rem 0;
        font-size: 0.9rem;
    }
    
    .plano-comissoes {
        padding: 0.9rem;
        font-size: 0.85rem;
        margin: 0.9rem 0;
    }
    
    .btn-escolher-plano {
        padding: 0.9rem;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
    }
    
    .plano-card.recommended::before {
        top: 15px;
        right: -50px;
        padding: 6px 60px;
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) {
    .planos-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .planos-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Modal Large */
.modal-large {
    max-width: 700px;
}

/* Planos Seleção no Form */
.planos-selecao {
    margin: 1.5rem 0;
}

.planos-selecao label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: 1fr;
        gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.plano-option {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.plano-option:hover {
    border-color: var(--primary-color);
    background: rgba(139, 124, 246, 0.1);
}

.plano-option input[type="radio"] {
    margin-right: 0.8rem;
    accent-color: var(--primary-color);
}

.plano-option.selected {
    border-color: var(--primary-color);
    background: rgba(139, 124, 246, 0.2);
}

.plano-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.plano-option-nome {
    font-weight: 600;
    color: var(--primary-color);
}

.plano-option-valor {
    color: var(--success-color);
    font-weight: 600;
}

.plano-option-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.codigo-referral-section {
    margin: 1.5rem 0;
}

.codigo-referral-section label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.codigo-referral-section input {
    width: 100%;
    margin-bottom: 0.5rem;
}

.codigo-referral-section small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

.info-pagamento {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--danger-color);
    border-radius: 5px;
    color: var(--text-primary);
        font-size: 0.9rem;
    text-align: center;
}

.info-cadastro {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(139, 124, 246, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: center;
}

/* Carteira */
.carteira-content {
    margin-top: 1.5rem;
}

.saldo-atual {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.saldo-atual h3 {
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.saldo-valor {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.carteira-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--card-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.carteira-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Modal Large (Carteira) */
.modal-large {
    max-width: 700px;
    width: 95%;
}

/* Carteira Mobile */
@media (max-width: 768px) {
    .modal-large {
        max-width: 100%;
        width: 95%;
        padding: 1.2rem 1rem;
    }
    
    .carteira-tabs {
        gap: 0;
        margin-bottom: 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--card-border);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
    }
    
    .tab-btn {
        padding: 0.9rem 0.5rem;
        font-size: 0.85rem;
        min-height: 44px;
        flex: 1;
        min-width: 0;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }
    
    .carteira-content {
        padding: 0;
    }
    
    .saldo-atual {
        padding: 1.2rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .saldo-atual h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .saldo-valor {
        font-size: 2rem;
    }

    .tab-content {
        min-height: 150px;
    }
    
    .tab-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .aposta-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .aposta-header-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .aposta-status {
        align-self: flex-end;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Correção do input de saque no mobile */
    #saqueValor {
        padding-left: 45px !important;
        font-size: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    #saqueValorRS {
        left: 12px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }
    
    .saque-resumo {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    .transacao-item {
        padding: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .transacao-valor {
        align-self: flex-end;
        font-size: 1.1rem;
    }
    
    .indicado-item {
        padding: 0.9rem;
    }
}

.tab-content {
    min-height: 200px;
}

.tab-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

.transacao-item {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    border-left: 4px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transacao-item.positiva {
    border-left-color: var(--success-color);
}

.transacao-item.negativa {
    border-left-color: var(--danger-color);
}

.transacao-info {
    flex: 1;
}

.transacao-tipo {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.transacao-data {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.transacao-valor {
    font-size: 1.2rem;
    font-weight: 600;
}

.transacao-valor.positiva {
    color: var(--success-color);
}

.transacao-valor.negativa {
    color: var(--danger-color);
}

.indicado-item {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    border: 1px solid var(--card-border);
}

.indicado-nome {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.indicado-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.indicado-comissao {
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Histórico de Apostas */
.aposta-item {
    background: var(--light-color);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.aposta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.aposta-item.ganhou {
    border-left: 4px solid var(--success-color);
    background: linear-gradient(90deg, rgba(0,212,170,0.05) 0%, var(--light-color) 5%);
}

.aposta-item.perdeu {
    border-left: 4px solid var(--danger-color);
    background: linear-gradient(90deg, rgba(255,107,107,0.05) 0%, var(--light-color) 5%);
}

.aposta-item.pendente {
    border-left: 4px solid var(--text-secondary);
    background: linear-gradient(90deg, rgba(139,124,246,0.05) 0%, var(--light-color) 5%);
}

.aposta-header-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.aposta-animal-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.aposta-status-item {
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.aposta-info-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.info-aposta {
    display: flex;
        flex-direction: column;
    gap: 0.3rem;
}

.label-aposta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.valor-aposta {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.premio-aposta {
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .aposta-header-item {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .aposta-status-item {
        align-self: flex-end;
    }
    
    .aposta-info-item {
        grid-template-columns: 1fr;
    }
}

/* Indicados com Ganhos */
.indicados-lista {
    margin-top: 2rem;
}

.indicado-card-ganhos {
    background: var(--light-color);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.indicado-card-ganhos:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 124, 246, 0.2);
}

.indicado-header-ganhos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.indicado-nome-ganhos {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.indicado-plano-badge {
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.indicado-info-ganhos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.info-item-ganhos {
    background: rgba(139, 124, 246, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
}

.info-item-ganhos .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.info-item-ganhos .valor {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-item-ganhos .valor.ganho {
    color: var(--success-color);
}

/* Modal de Recarga */
.recarga-content {
    margin-top: 1.5rem;
}

.saldo-atual-recarga {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.saldo-valor-recarga {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.valores-rapidos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.btn-valor-rapido {
    background: var(--light-color);
    border: 2px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-valor-rapido:hover {
    border-color: var(--primary-color);
    background: rgba(139, 124, 246, 0.1);
    transform: translateY(-2px);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Garantir que o botão do menu não seja bloqueado */
.menu-toggle {
    z-index: 1001 !important;
    pointer-events: auto !important;
}

@media (max-width: 768px) {
    .menu-toggle {
        z-index: 1001 !important;
    }
}

/* Notificação Customizada de Sorteio */
.notificacao-sorteio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.notificacao-sorteio.active {
    display: flex;
}

.notificacao-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.notificacao-content {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(139, 124, 246, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

.notificacao-header {
    background: var(--gradient);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.notificacao-icon {
        font-size: 2rem;
    animation: bounce 1s ease infinite;
}

.notificacao-header h3 {
    flex: 1;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.notificacao-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.notificacao-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.notificacao-body {
    padding: 20px;
}

.notificacao-info {
    display: flex;
        flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(139, 124, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 124, 246, 0.2);
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.info-value {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.numero-destaque {
    color: var(--primary-color);
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(139, 124, 246, 0.5);
}

.animal-destaque {
    color: var(--success-color);
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.notificacao-premio {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin-top: 15px;
    animation: pulse 2s ease infinite;
}

.premio-label {
    color: var(--success-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.premio-valor {
    color: var(--success-color);
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.5);
}

.notificacao-mensagem {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-primary);
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.notificacao-nao-participou {
    background: linear-gradient(135deg, rgba(139, 124, 246, 0.15) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
    animation: pulse 2s ease infinite;
}

.nao-participou-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: bounce 1s ease infinite;
}

.nao-participou-titulo {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nao-participou-texto {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 10px;
    opacity: 0.9;
}

.notificacao-footer {
    padding: 15px 20px;
    background: rgba(139, 124, 246, 0.05);
    border-top: 1px solid rgba(139, 124, 246, 0.2);
    display: flex;
    justify-content: flex-end;
}

.btn-notificacao {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 10px 35px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 124, 246, 0.4);
}

.btn-notificacao:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 124, 246, 0.6);
}

.btn-notificacao:active {
    transform: translateY(0);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
    }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .notificacao-content {
        max-width: 85%;
        border-radius: 12px;
    }

    .notificacao-header {
        padding: 12px 15px;
    }

    .notificacao-header h3 {
        font-size: 1.1rem;
    }

    .notificacao-icon {
        font-size: 1.7rem;
    }

    .notificacao-close {
        font-size: 1.6rem;
        width: 28px;
        height: 28px;
    }

    .notificacao-body {
        padding: 18px 15px;
    }

    .notificacao-info {
        gap: 12px;
        margin-bottom: 12px;
    }

    .info-item {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .numero-destaque {
        font-size: 1.1rem !important;
    }

    .animal-destaque {
        font-size: 1rem !important;
    }

    .notificacao-premio {
        padding: 12px;
        margin-top: 12px;
    }

    .premio-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .premio-valor {
        font-size: 1.4rem;
    }

    .notificacao-mensagem {
        padding: 10px;
        font-size: 0.85rem;
        margin-top: 12px;
    }

    .notificacao-footer {
        padding: 12px 15px;
    }

    .btn-notificacao {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Notificação Customizada Geral (Login/Cadastro) */
.notificacao-geral {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.notificacao-geral.active {
    display: flex;
}

.notificacao-geral .notificacao-content {
    max-width: 400px;
}

.notificacao-mensagem-geral {
    padding: 20px;
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
}

.notificacao-mensagem-geral strong {
    color: var(--primary-color);
    font-weight: 700;
}

.notificacao-geral.error .notificacao-mensagem-geral strong {
    color: var(--danger-color);
}

.notificacao-geral.warning .notificacao-mensagem-geral strong {
    color: var(--warning-color);
}

.notificacao-geral.success .notificacao-mensagem-geral strong {
    color: var(--success-color);
}

.notificacao-geral .notificacao-header {
    background: var(--gradient);
}

.notificacao-geral .notificacao-icon {
    font-size: 2rem;
    animation: bounce 1s ease infinite;
}

/* Variantes de ícone para diferentes tipos de mensagem */
.notificacao-geral.success .notificacao-icon {
    color: var(--success-color);
}

.notificacao-geral.error .notificacao-icon {
    color: var(--danger-color);
}

.notificacao-geral.warning .notificacao-icon {
    color: var(--warning-color);
}

.notificacao-geral.info .notificacao-icon {
    color: var(--primary-color);
}

/* Responsividade Mobile - Notificação Geral */
@media (max-width: 768px) {
    .notificacao-geral .notificacao-content {
        max-width: 85%;
    }

    .notificacao-mensagem-geral {
        padding: 18px 15px;
        font-size: 0.95rem;
    }

    .notificacao-geral .notificacao-header {
        padding: 12px 15px;
    }

    .notificacao-geral .notificacao-header h3 {
        font-size: 1.1rem;
    }

    .notificacao-geral .notificacao-icon {
        font-size: 1.7rem;
    }

    .notificacao-geral .notificacao-footer {
        padding: 12px 15px;
    }

    .notificacao-geral .btn-notificacao {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Notificação Customizada de Confirmação de Plano */
.notificacao-plano {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.notificacao-plano.active {
    display: flex;
}

.notificacao-plano .notificacao-content {
    max-width: 450px;
}

.plano-confirmacao-info {
    text-align: center;
    padding: 20px 0;
}

.plano-confirmacao-nome {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(139, 124, 246, 0.3);
}

.plano-confirmacao-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.3);
}

.plano-confirmacao-descricao {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(139, 124, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 124, 246, 0.2);
}

.notificacao-plano .notificacao-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 20px 25px;
    background: rgba(139, 124, 246, 0.05);
    border-top: 1px solid rgba(139, 124, 246, 0.2);
}

.btn-cancelar {
    background: var(--light-color);
    color: var(--text-primary);
    border: 2px solid var(--card-border);
    flex: 1;
}

.btn-cancelar:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.btn-confirmar {
    background: var(--gradient);
    color: var(--white);
    border: none;
    flex: 1;
}

.btn-confirmar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 124, 246, 0.6);
}

/* Responsividade Mobile - Notificação de Plano */
@media (max-width: 768px) {
    .notificacao-plano .notificacao-content {
        max-width: 85%;
    }

    .plano-confirmacao-nome {
        font-size: 1.5rem;
    }

    .plano-confirmacao-valor {
        font-size: 2rem;
    }

    .plano-confirmacao-descricao {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    .notificacao-plano .notificacao-footer {
        flex-direction: column;
        gap: 0.8rem;
    }

    .notificacao-plano .btn-notificacao {
        width: 100%;
    }
}

/* Notificação Customizada de Confirmação de Apostas */
.notificacao-apostas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.notificacao-apostas.active {
    display: flex;
}

.notificacao-apostas .notificacao-content {
    max-width: 450px;
}

.lista-apostas {
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
    padding-right: 5px;
}

.lista-apostas::-webkit-scrollbar {
    width: 6px;
}

.lista-apostas::-webkit-scrollbar-track {
    background: rgba(139, 124, 246, 0.1);
    border-radius: 10px;
}

.lista-apostas::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lista-apostas::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.aposta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(139, 124, 246, 0.08);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(139, 124, 246, 0.15);
    transition: all 0.3s ease;
}

.aposta-item:hover {
    background: rgba(139, 124, 246, 0.12);
    border-color: rgba(139, 124, 246, 0.3);
}

.aposta-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.aposta-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.aposta-detalhes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aposta-animal {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.aposta-numero {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.aposta-valor {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.total-apostas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(139, 124, 246, 0.15);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 15px;
}

.total-label {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.total-valor {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(139, 124, 246, 0.5);
}

.alerta-redirecionado {
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
}

.alerta-redirecionado .info-label {
    color: var(--warning-color) !important;
    font-weight: 600;
}

.alerta-redirecionado .info-value {
    color: var(--warning-color) !important;
    font-size: 0.85rem !important;
    line-height: 1.4;
}

/* Responsividade Mobile - Notificação de Apostas */
@media (max-width: 768px) {
    .notificacao-apostas .notificacao-content {
        max-width: 85%;
    }

    .lista-apostas {
        max-height: 250px;
    }

    .aposta-item {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .aposta-item-left {
        width: 100%;
    }

    .aposta-valor {
        align-self: flex-end;
        font-size: 1rem;
    }

    .total-apostas {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .total-label {
        font-size: 1rem;
    }

    .total-valor {
        font-size: 1.3rem;
        align-self: flex-end;
    }
}

/* Cronômetro do Próximo Sorteio */
.cronometro-sorteio {
    background: linear-gradient(135deg, rgba(139, 124, 246, 0.2) 0%, rgba(102, 126, 234, 0.15) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(139, 124, 246, 0.3);
    animation: pulse-border 3s ease infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(139, 124, 246, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(139, 124, 246, 0.5);
    }
}

.cronometro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cronometro-icon {
    font-size: 1.5rem;
    animation: bounce-clock 1s ease infinite;
}

@keyframes bounce-clock {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.cronometro-titulo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cronometro-tempo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
    font-variant-numeric: tabular-nums;
}

.cronometro-horas,
.cronometro-minutos,
.cronometro-segundos {
    background: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    min-width: 70px;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(139, 124, 246, 0.4);
}

.cronometro-separador {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    animation: blink-separator 1s ease infinite;
}

@keyframes blink-separator {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.cronometro-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .cronometro-tempo {
        font-size: 2rem;
    }
    
    .cronometro-horas,
    .cronometro-minutos,
    .cronometro-segundos {
        min-width: 60px;
        padding: 0.4rem 0.8rem;
        font-size: 1.5rem;
    }
    
    .cronometro-separador {
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* SEÇÃO DE AFILIADOS - MARKETING */
/* ============================================ */

.afiliados-marketing-section {
    background: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.afiliados-marketing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 124, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 184, 148, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.afiliados-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.afiliados-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.afiliados-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.afiliados-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.afiliados-subtitle strong {
    color: var(--success-color);
}

/* Pirâmide Visual */
.piramide-visual {
    background: rgba(139, 124, 246, 0.1);
    border: 1px solid rgba(139, 124, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.piramide-titulo {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.piramide-niveis {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.piramide-nivel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.piramide-nivel:hover {
    transform: scale(1.02);
}

.nivel-voce {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    max-width: 200px;
}

.nivel-voce .nivel-icon {
    font-size: 1.5rem;
}

.nivel-voce .nivel-texto {
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
}

.nivel-1 {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.3), rgba(0, 184, 148, 0.1));
    border: 1px solid rgba(0, 184, 148, 0.5);
    max-width: 350px;
}

.nivel-2 {
    background: linear-gradient(135deg, rgba(139, 124, 246, 0.3), rgba(139, 124, 246, 0.1));
    border: 1px solid rgba(139, 124, 246, 0.5);
    max-width: 450px;
}

.nivel-3 {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(108, 92, 231, 0.1));
    border: 1px solid rgba(108, 92, 231, 0.5);
    max-width: 550px;
}

.nivel-4-5 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.nivel-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--success-color);
}

.nivel-pessoas {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.nivel-percent {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

/* Cards de Benefícios */
.afiliados-beneficios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 124, 246, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 124, 246, 0.2);
}

.beneficio-destaque-card {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2), rgba(0, 184, 148, 0.05));
    border-color: var(--success-color);
}

.beneficio-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.beneficio-destaque {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--success-color), #00d9a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.beneficio-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Tabela de Comissões */
.tabela-comissoes-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tabela-comissoes-container h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tabela-comissoes {
    max-width: 700px;
    margin: 0 auto;
}

.tabela-header,
.tabela-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 1rem;
    align-items: center;
}

.tabela-header {
    background: rgba(139, 124, 246, 0.3);
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tabela-row {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: background 0.3s ease;
}

.tabela-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nivel-1-row {
    background: rgba(0, 184, 148, 0.15);
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.valor-destaque {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Simulador de Ganhos */
.simulador-ganhos {
    background: linear-gradient(135deg, rgba(139, 124, 246, 0.15), rgba(108, 92, 231, 0.1));
    border: 1px solid rgba(139, 124, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.simulador-ganhos h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.simulador-subtitulo {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.simulador-exemplo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.simulador-cenario,
.simulador-resultado {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.cenario-titulo,
.resultado-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cenario-dados {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dado-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dado-numero {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
    min-width: 60px;
}

.dado-texto {
    color: var(--text-secondary);
}

.resultado-valores {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resultado-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resultado-label {
    color: var(--text-secondary);
}

.resultado-valor {
    font-weight: 700;
    color: var(--success-color);
    font-size: 1.1rem;
}

.resultado-total {
    border-bottom: none;
    background: rgba(0, 184, 148, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.resultado-total .resultado-valor {
    font-size: 1.3rem;
    color: #ffd700;
}

/* CTA */
.afiliados-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.afiliados-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.afiliados-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-afiliados-cta {
    background: linear-gradient(135deg, var(--success-color), #00d9a5);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.4);
}

.btn-afiliados-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.5);
}

.cta-nota {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-nota span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsivo Afiliados */
@media (max-width: 1024px) {
    .afiliados-beneficios {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .como-funciona-afiliados {
        padding: 1.5rem !important;
    }
    
    .como-funciona-afiliados h3 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    .afiliados-marketing-section {
        padding: 2rem 0;
    }
    
    .afiliados-header h2 {
        font-size: 1.8rem;
    }
    
    .afiliados-subtitle {
        font-size: 1rem;
    }
    
    .como-funciona-afiliados {
        padding: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .como-funciona-afiliados h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .como-funciona-afiliados > div > div {
        padding: 1rem !important;
    }
    
    .como-funciona-afiliados h4 {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .como-funciona-afiliados p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .afiliados-beneficios {
        grid-template-columns: 1fr;
    }
    
    .tabela-header,
    .tabela-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .simulador-exemplo {
        grid-template-columns: 1fr;
    }
    
    .cta-nota {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-afiliados-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================ */
/* FOOTER - RODAPÉ */
/* ============================================ */

.site-footer {
    background: linear-gradient(180deg, #0a0a14 0%, #0d0d1a 50%, #121225 100%);
    margin-top: 4rem;
    border-top: 1px solid rgba(139, 124, 246, 0.2);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(139, 124, 246, 0.5));
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b7cf6 0%, #a29bfe 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(139, 124, 246, 0.15) 0%, rgba(108, 92, 231, 0.15) 100%);
    border: 1px solid rgba(139, 124, 246, 0.3);
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 124, 246, 0.4);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4,
.footer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul,
.footer-info ul {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-info li {
    margin-bottom: 0.85rem;
}

.footer-links a,
.footer-info a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-info a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(139, 124, 246, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icon {
    background: rgba(139, 124, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--success-color);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-copyright strong {
    color: var(--primary-color);
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: var(--warning-color) !important;
    opacity: 0.8;
}

.footer-age {
    display: flex;
    align-items: center;
}

.age-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 0.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.8rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.4rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-links h4,
    .footer-contact h4,
    .footer-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-info h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
    }
    
    .footer-links li,
    .footer-contact li,
    .footer-info li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a,
    .footer-info a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .contact-icon {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-payments {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payment-label {
        font-size: 0.8rem;
    }
    
    .payment-icon {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem !important;
    }
    
    .age-badge {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-logo .logo-text {
        font-size: 1.3rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.6rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 34px;
        height: 34px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-links h4,
    .footer-contact h4,
    .footer-info h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links li,
    .footer-contact li,
    .footer-info li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a,
    .footer-info a,
    .footer-contact li {
        font-size: 0.8rem;
    }
    
    .age-badge {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .footer-bottom {
        padding: 0.75rem 0;
    }
}

/* ============================================ */
/* MODAIS INFORMATIVOS (Termos, FAQ, etc) */
/* ============================================ */

.info-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(139, 124, 246, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
}

.info-modal .close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 20;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.info-modal .close:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.info-modal-header {
    text-align: center;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(139, 124, 246, 0.2);
    background: #1a1a2e;
    flex-shrink: 0;
}

.info-modal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 15px rgba(139, 124, 246, 0.5));
}

.info-modal-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.info-modal-body {
    padding: 1.5rem 2rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.info-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(139, 124, 246, 0.2);
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

.info-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.5;
}

.info-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-section ul li strong {
    color: var(--text-primary);
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(139, 124, 246, 0.05);
    border: 1px solid rgba(139, 124, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 124, 246, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 124, 246, 0.1);
}

.faq-arrow {
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1rem;
}

.faq-answer p,
.faq-answer ul {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.faq-answer ul li {
    margin-bottom: 0.35rem;
}

/* Jogo Responsável */
.responsible-intro {
    background: linear-gradient(135deg, rgba(139, 124, 246, 0.15) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 1px solid rgba(139, 124, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--text-primary) !important;
    font-size: 1.05rem;
    text-align: center;
    margin: 0 !important;
}

.help-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.help-item {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.help-item strong {
    color: var(--success-color);
    display: block;
    margin-bottom: 0.5rem;
}

.help-item p {
    margin: 0 !important;
    font-size: 0.9rem;
}

.responsible-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 124, 246, 0.2);
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
}

.age-badge-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.age-warning p {
    margin: 0 !important;
    color: var(--text-secondary);
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsivo Modais Info */
@media (max-width: 768px) {
    .info-modal .modal-content {
        max-width: 95%;
        max-height: 90vh;
        margin: 5vh auto;
    }
    
    .info-modal .close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    
    .info-modal-header {
        padding: 1.25rem 1rem 1rem;
    }
    
    .info-modal-icon {
        font-size: 2rem;
    }
    
    .info-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .info-modal-body {
        padding: 1rem 1.25rem 1.5rem;
    }
    
    .info-section h3 {
        font-size: 1rem;
    }
    
    .info-section p,
    .info-section ul li {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    
    .help-contacts {
        grid-template-columns: 1fr;
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .age-warning p {
        text-align: center;
    }
}

/* ============================================
   🎰 BICHOSLOTS PROMO SECTION
   ============================================ */

.slots-promo-section {
    padding: 1rem 0;
}

.slots-promo-link {
    text-decoration: none;
    display: block;
}

.slots-promo-banner {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1f4e 50%, #1a0a2e 100%);
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.slots-promo-banner:hover {
    transform: translateY(-2px);
    border-color: #f59e0b;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.slots-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    animation: shine-banner 3s infinite;
}

@keyframes shine-banner {
    0% { left: -100%; }
    100% { left: 100%; }
}

.slots-promo-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.slots-badge-new {
    background: #ef4444;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.slots-promo-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #f59e0b;
}

.slots-icon {
    font-size: 1.5rem;
}

.slots-mini-reels {
    display: flex;
    gap: 0.25rem;
}

.mini-reel-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #0f0f2a 0%, #1a1a3a 100%);
    border-radius: 6px;
    border: 1px solid #4a4a6a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    animation: mini-bounce 2s ease-in-out infinite;
}

.mini-reel-icon:nth-child(1) { animation-delay: 0s; }
.mini-reel-icon:nth-child(2) { animation-delay: 0.1s; }
.mini-reel-icon:nth-child(3) { animation-delay: 0.2s; }
.mini-reel-icon:nth-child(4) { animation-delay: 0.3s; }
.mini-reel-icon:nth-child(5) { animation-delay: 0.4s; }

@keyframes mini-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.slots-promo-center {
    position: relative;
    z-index: 1;
}

.slots-jackpot-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.slots-jackpot-label {
    color: #fcd34d;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.slots-jackpot-value {
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.slots-promo-right {
    position: relative;
    z-index: 1;
}

.slots-play-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.slots-promo-banner:hover .slots-play-btn {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Responsive Slots Promo */
@media (max-width: 768px) {
    .slots-promo-section {
        padding: 0.75rem 0;
    }
    
    .slots-promo-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .slots-promo-left {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .slots-promo-title {
        font-size: 1.1rem;
    }
    
    .slots-mini-reels {
        display: none;
    }
    
    .slots-promo-center {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .slots-jackpot-box {
        padding: 0.4rem 0.75rem;
    }
    
    .slots-jackpot-value {
        font-size: 1.1rem;
    }
    
    .slots-promo-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .slots-play-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        min-height: 44px;
        width: auto;
        margin: 0 auto;
    }
}

/* Melhorias adicionais para mobile - telas muito pequenas */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .planos-section h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 1.2rem 0.8rem;
        margin: 0.3rem;
        max-height: 98vh;
    }
    
    .modal h2 {
        font-size: 1.3rem;
    }
    
    /* Formulário de cadastro em telas muito pequenas */
    #registerForm input,
    #loginForm input {
        font-size: 16px !important;
        padding: 0.85rem 0.9rem !important;
    }
    
    /* Garantir que links não quebrem layout */
    .login-link a {
        display: inline-block;
        padding: 0.3rem 0.5rem;
        min-height: 44px;
        line-height: 1.5;
    }
    
    /* Header em telas muito pequenas */
    .header .container {
        padding: 0.7rem 0.8rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    /* Slots promo banner em telas muito pequenas */
    .slots-promo-banner {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .slots-promo-left,
    .slots-promo-center,
    .slots-promo-right {
        width: 100%;
        justify-content: center;
    }
    
    .slots-play-btn {
        width: 100%;
        max-width: 200px;
    }
}