#history {
    background-color: rgba(31, 31, 31, 0.3);
    padding: 80px 112px;
    display: flex;
    gap: 50px;
    font-family: var(--texto-comum);
}
#history .corpo {
    display: flex;
    align-items: center;
    gap: 100px;
    padding-bottom: 32px;
}
#history .paragrafo {
    font-weight: 400;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: clamp(1.25rem, 3vw, 1.625rem);
    color: var(--texto-foreground);
}
#history .cards {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    grid-template-rows: repeat(2, 250px);
    gap: 45px;
}
#history .card {
    background: var(--gradiente);
    border: 1px solid var(--bg-components);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--texto-foreground);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#history .card h3 {
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    padding: 5px 0 3px 0;
}
#history .card p {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 300;
    text-align: center;
    color: var(--texto-muted-foreground);
}
#history .card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 0 10px 3px rgba(201, 31, 31, 0.6);
}