.card {
    background: #1a1a1a;
    /* preto suave */
    border: 1px solid #c9a66b;
    /* dourado suave */
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(178, 64, 60, 0.4);
    /* vermelho suave */
}

.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 166, 107, 0.15);
    transition: top 0.5s ease;
    z-index: 0;
}

.card:hover::before {
    top: 0;
}

/* GRID DE PREMIAÇÕES */
#premios {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

#premios h2 {
    color: #c9a66b; /* dourado suave */
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-family: 'Ringbearer';
}

.premios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-premio {
    background: #1a1a1a; /* preto suave */
    border: 1px solid #c9a66b; /* dourado suave */
    text-align: center;
    padding: 20px;
    color: #f5f5f5; /* texto branco suave */
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-premio:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(178, 64, 60, 0.4); /* vermelho suave */
}

.premio-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.premio-title {
    font-size: 24px;
    font-weight: bold;
    color: #c9a66b;
    margin-bottom: 10px;
}

.premio-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.medalhas {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.medalha {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.premio-nota {
    font-size: 14px;
    color: #e0c97a;
}
