﻿.bolao-card {
    border-radius: 14px;
}

.card-header {
    background: #6657F5;
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.numero-chip {
    width: 42px;
    height: 42px;
    font-weight: bold;
    border-radius: 50%;
    justify-content: center;
    font-size: 14px;
}

.header-bolao {
    background: linear-gradient(90deg,#18a558,#0f8f4d);
    color: white;
    border-radius: 6px 6px 0 0;
}

.cartela-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.numero-bola {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #5e35b1;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.lottocard {
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.valor-card {
    cursor: pointer;
    text-align: center;
    padding: 22px;
    border-radius: 14px;
    transition: all .2s ease;
    border: 2px solid transparent;
    font-weight: 600;
    background: #fafafa;
}

    .valor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .valor-card.selected {
        border: 2px solid #5E35B1;
        background: #F3E5F5;
        color: #5E35B1;
    }

.pix-card {
    cursor: pointer;
    border-radius: 14px;
    padding: 18px;
    border: 2px solid #e0e0e0;
    transition: .2s;
}

    .pix-card.selected {
        border: 2px solid #00C853;
        background: #E8F5E9;
    }

.total-box {
    background: #F5F7FA;
    padding: 14px;
    border-radius: 10px;
    text-align: right;
    font-size: 18px;
}


/* MainLayout */
/* 🌎 Fundo do sistema */
body {
    background: linear-gradient(135deg, #f5f7fa, #e9eef6);
}

/* 🔝 AppBar moderna */
.appbar-custom {
    height: 64px;
    background-color: white !important;
    border-bottom: 1px solid #e0e6ed;
}

/* 📚 Drawer bonito */
.drawer-custom {
    background-color: #ffffff;
    border-right: 1px solid #e0e6ed;
    width: 260px !important;
    padding-top: 12px;
}

/* 🧱 Área principal respirando */
.main-content-custom {
    padding: 32px !important;
    padding-top: 96px !important;
}

/* 🔗 Links do menu mais elegantes */
.mud-nav-link {
    border-radius: 8px;
    margin: 4px 8px;
}

    .mud-nav-link.active {
        background-color: #e8f0fe !important;
    }


.menu-toggle-custom {
    color: #344054 !important;
    border-radius: 8px;
    padding: 6px;
}

.menu-toggle-custom:hover {
    background-color: #eef2f7;
}

.logo-appbar {
    object-fit: contain;
    margin-top: 4px;
}


/* Card brilhando */
.card-premiado {
    position: relative;
    animation: glowPulse 1.8s ease-in-out infinite;
    border: 2px solid #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

/* Animação de brilho pulsando */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 1);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
}

/* Selo PREMIADO */
.premio-badge {
    position: absolute;
    top: 52px;
    right: 50px; /* puxa bem mais pra esquerda */
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
    padding: 6px 70px;
    transform: translate(35%, -50%) rotate(35deg);
    z-index: 20;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    pointer-events: none;
}


/* Balanço do selo */
@keyframes badgeSwing {
    0% {
        transform: rotate(35deg) translateY(0);
    }

    50% {
        transform: rotate(35deg) translateY(-4px);
    }

    100% {
        transform: rotate(35deg) translateY(0);
    }
}

.linha-premiada {
    background: linear-gradient(90deg, #fff8dc, #fff3b0) !important;
    border-left: 6px solid #FFD700;
    animation: premioGlow 2s ease-in-out infinite;
}

@keyframes premioGlow {
    0% {
        box-shadow: inset 0 0 0 rgba(255,215,0,0.0);
    }

    50% {
        box-shadow: inset 0 0 18px rgba(255,215,0,0.4);
    }

    100% {
        box-shadow: inset 0 0 0 rgba(255,215,0,0.0);
    }
}

.trofeu-piscando {
    color: #FFB300;
    animation: trofeuBlink 1.2s infinite;
}

@keyframes trofeuBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.chat-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg,#4f46e5,#3b82f6);
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1400;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79,70,229, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(79,70,229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79,70,229, 0);
    }
}

.header-loteria {
    color: white;
}