#votacao {
    width: 100%;
    position:relative;
}

.votacao-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.votacao-stand {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    min-width: 0;

    padding: 20px;

    background: #fff;
    border: 3px solid #d3ee21;
    border-radius: 12px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.votacao-stand:hover {
    border-color: #c7db2c;
}


.votacao-stand.selected {
    transform: scale(1.05);

    border-color: #624a99;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    z-index: 2;
}

.votacao-stand-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    flex: 1;
}

.votacao-stand-logo img {
    display: block;

    max-width: 80%;
    max-height: 80%;

    width: auto;
    height: auto;
}

.votacao-stand-name {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 15px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;

    text-align: center;
}

.votacao-votar {
    margin: 40px 0 0;
    font-weight: bold;
}


.votacao-votar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.votacao-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.votacao-mensagem {
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    color: #624a99;
    font-size: 1.2em;
}

.votacao-confirmacao {
    padding: 60px 20px;
    text-align: center;
}


.votacao-confirmacao-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #624a99;
    color: #fff;

    font-size: 32px;
    font-weight: 600;
}


.votacao-confirmacao-titulo {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}


.votacao-confirmacao-texto {
    font-size: 16px;
    opacity: 0.7;
}


.votacao-resultados {
    width: 100%;
}

.votacao-resultado {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.votacao-resultado-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 50px;

    width: 50px;
    height: 50px;
}


.votacao-resultado-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.votacao-resultado-info {
    flex: 1;
    min-width: 0;
}

.votacao-resultado-top {
    display: flex;
    color: #624a99;
    justify-content: space-between;
    margin-bottom: 5px;
}

.votacao-resultado-name {
    font-weight: bold;
}

.votacao-resultado-votos {
    font-weight: bold;
    color: #624a99;
}

.votacao-barra {
    width: 100%;
    height: 12px;

    overflow: hidden;

    background: #eee;
    border-radius: 6px;
}


.votacao-barra-preenchida {
    height: 100%;
    background: #c7db2c;
    border-radius: 6px;
    transition: width 0.4s ease;
}

@media (max-width: 991px) {
    .votacao-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .votacao-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .votacao-stand {
        padding: 15px;
    }

    .votacao-stand.selected {
        transform: scale(1.03);
    }

    .votacao-stand-name {
        font-size: 15px;
    }

    .votacao-votar {
        width:100%;
    }

    .votacao-confirmacao {
        padding: 40px 15px;
    }

    .votacao-confirmacao-titulo {
        font-size: 22px;
    }
    
    .votacao-resultado-name {
        font-size:15px;
        max-width:242px;
    }
}