/* =============================== */
/* PROJETO EDEN - VOTAR (identidade visual do site) */
/* =============================== */

.vote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4px 0;
    color: var(--eden-text, #f4ead0);
    font-family: 'Poppins', sans-serif;
}

/* =============================== */
/* HEADER DE PONTOS */
/* =============================== */

.vote-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
    padding: 24px 26px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(229, 189, 100, 0.12), transparent 42%),
        rgba(1, 12, 8, 0.46);
    border: 1px solid rgba(229, 189, 100, 0.24);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.points-badge {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(229, 189, 100, 0.18), rgba(31, 107, 65, 0.22));
    border: 1px solid rgba(229, 189, 100, 0.4);
    color: var(--eden-gold-light, #fff0a8);
    font-size: 1.6rem;
    box-shadow: 0 0 20px rgba(229, 189, 100, 0.14);
}

.points-info span {
    display: block;
    margin-bottom: 4px;
    color: var(--eden-muted, #cdbd91);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.points-info h2 {
    margin: 0;
    color: var(--eden-gold-light, #fff0a8);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    line-height: 1.1;
}

/* =============================== */
/* TÍTULO DA SEÇÃO */
/* =============================== */

.vote-section-title {
    margin-bottom: 18px;
}

.vote-section-title h3 {
    margin: 0 0 4px;
    color: var(--eden-gold-light, #fff0a8);
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vote-section-title p {
    margin: 0;
    color: var(--eden-muted, #cdbd91);
    font-size: 13px;
}

/* =============================== */
/* GRID E CARDS */
/* =============================== */

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.vote-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(229, 189, 100, 0.09), transparent 40%),
        rgba(1, 12, 8, 0.34);
    border: 1px solid rgba(229, 189, 100, 0.22);
    transition: 0.25s ease;
}

.vote-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 240, 168, 0.5);
    box-shadow: 0 0 20px rgba(229, 189, 100, 0.1);
}

.card-banner {
    position: relative;
    height: 74px;
    margin: -20px -20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(229, 189, 100, 0.12), transparent 45%),
        rgba(1, 8, 5, 0.4);
    border-bottom: 1px solid rgba(229, 189, 100, 0.14);
}

.banner-fallback {
    color: var(--eden-gold-light, #fff0a8);
    font-size: 26px;
    opacity: 0.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.card-banner img {
    display: none;
    max-width: 88%;
    max-height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
}

.vote-card h4 {
    margin: 0;
    color: var(--eden-gold-light, #fff0a8);
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

.badge {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.badge.reward {
    background: rgba(31, 107, 65, 0.24);
    border: 1px solid rgba(103, 232, 156, 0.28);
    color: #b5f7c9;
}

.badge.cooldown {
    background: rgba(229, 189, 100, 0.08);
    border: 1px solid rgba(229, 189, 100, 0.18);
    color: var(--eden-muted, #cdbd91);
}

/* =============================== */
/* BOTÃO VOTAR */
/* =============================== */

.btn-vote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(17, 63, 40, 0.94), rgba(31, 107, 65, 0.94));
    border: 1px solid rgba(229, 189, 100, 0.45);
    color: var(--eden-gold-light, #fff0a8);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-vote:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 240, 168, 0.7);
    box-shadow: 0 0 18px rgba(229, 189, 100, 0.16);
}

.btn-vote:disabled,
.btn-vote[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
    background: rgba(1, 12, 8, 0.4);
    border-color: rgba(229, 189, 100, 0.18);
    box-shadow: none;
    transform: none;
}

/* =============================== */
/* FOOTER INFO */
/* =============================== */

.vote-footer {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(1, 12, 8, 0.3);
    border: 1px dashed rgba(229, 189, 100, 0.28);
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(229, 189, 100, 0.08);
    border: 1px solid rgba(229, 189, 100, 0.2);
    color: var(--eden-gold-light, #fff0a8);
    font-size: 1.15rem;
}

.info-text h5 {
    margin: 0 0 8px;
    color: var(--eden-gold-light, #fff0a8);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text ul {
    margin: 0;
    padding-left: 18px;
    color: var(--eden-muted, #cdbd91);
    font-size: 12.5px;
    line-height: 1.7;
}

.vote-empty {
    margin: 0;
    padding: 20px;
    text-align: center;
    color: var(--eden-muted, #cdbd91);
    font-size: 14px;
}

/* =============================== */
/* RESPONSIVO */
/* =============================== */

@media (max-width: 560px) {
    .vote-header {
        flex-direction: column;
        text-align: center;
    }

    .vote-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-text ul {
        padding-left: 20px;
        text-align: left;
    }
}