﻿.clickable,
.clickable-produtos {
    cursor: pointer;
    font-weight: bold;
}

.fase-container {
    display: none;
}

    .fase-container.ativa {
        display: block;
    }

.rodada-container {
    display: none;
}

    .rodada-container.ativa {
        display: block;
    }

.nav-header {
    background: #111;
    color: #3cff00;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .nav-header .titulo {
        font-size: 18px;
    }

    .nav-header .seta {
        background: none;
        border: none;
        color: #3cff00;
        font-size: 22px;
        cursor: pointer;
    }

.jogo-card .linha-times {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .jogo-card .linha-times .time {
        flex: 1;
    }

        .jogo-card .linha-times .time:last-child {
            text-align: right;
        }

    .jogo-card .linha-times .placar {
        flex: 0 0 auto;
        min-width: 90px;
        text-align: center;
    }

.placar-coluna {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placar-agregado {
    font-size: 12px;
    color: #9aa0a6;
    line-height: 1;
    margin-bottom: 4px;
    white-space: nowrap;
}

.subiu {
    animation: subirPulse 1.2s ease;
}

.desceu {
    animation: descerPulse 1.2s ease;
}

.gol-animado {
    animation: golPulse 1.4s ease;
}

.tr-gol {
    animation: golLinha 1.5s ease;
}

.tr-lider {
    outline: 2px solid #3cff00;
    outline-offset: -2px;
}

.painel-gol {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #3cff00;
    padding: 40px 80px;
    border-radius: 15px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 0 40px #3cff00;
    animation: aparecerGol 0.4s ease;
}

.gol-texto {
    font-size: 60px;
    font-weight: bold;
}

.gol-time {
    font-size: 40px;
    margin-top: 10px;
}

@keyframes aparecerGol {
    from {
        transform: translate(-50%, -80%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@@keyframes subirPulse {
    0% {
        background-color: rgba(60, 255, 0, 0.55);
    }

    100% {
        background-color: transparent;
    }
}

@@keyframes descerPulse {
    0% {
        background-color: rgba(255, 60, 60, 0.45);
    }

    100% {
        background-color: transparent;
    }
}

@@keyframes golPulse {
    0% {
        transform: scale(1);
        color: #fff;
    }

    30% {
        transform: scale(1.35);
        color: #3cff00;
    }

    100% {
        transform: scale(1);
        color: #fff;
    }
}

@@keyframes golLinha {
    0% {
        background-color: rgba(60, 255, 0, 0.55);
    }

    100% {
        background-color: transparent;
    }
}
