.award-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 40px; */
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Para espaçar o conteúdo */
    margin: 20px 0;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    background-color: var(--color-background-light);
    border: 1px solid #ddd;
/*     border-radius: 10px; */
/*     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 250px; /* Define uma altura mínima */
    flex: 1; /* Garante que todos os boxes ocupem a mesma altura */
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.award-item img {
    width: 200px;
    height: auto;
    margin-right: 20px;
    padding: 30px;
}

.award-text {
    text-align: left;
    flex: 1;
}

.award-text h2 {
    font-family: 'Harabara', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0 0 10px 0; /* Remove margem superior, mantém 10px embaixo */
    letter-spacing: 1px; /* Espaçamento entre caracteres */
}


.award-text p {
    font-size: 1rem;
    color: var(--color-text);
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .award-item {
        flex-direction: column;
        text-align: center;
        min-height: auto; /* Remove a altura mínima no mobile */
    }

    .award-item img {
        margin: 0 0 20px 0;
    }

    .award-text {
        text-align: center;
    }
}
