.product-card {
    clear: both;
    background-color: var(--white);
    text-align: justify;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: 0px;
    margin-bottom: 10px;
    padding: 20px;
    padding-top: 0px;
}

.product-card h4 {
    font-size: xx-large;
    margin: 0px;
    align-self: flex-start;
}

.product-card pre {
    display: none;
    color: white;
    background-color: var(--dark-gray);
    border-radius: 5px;
    padding: 10px;
    border-left: 4px solid var(--primary-color); /* Destaque na borda esquerda */
    white-space: pre-wrap; /* Garante quebra de linha automática */
    word-wrap: break-word; /* Quebra palavras longas */
    text-align: left; /* Garante alinhamento à esquerda */
}

.product-card video {
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 0px;
    margin: 0px;
    aspect-ratio: 13 / 9;
    max-width: 500px;
    max-height: 300px;
}

.link-info {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 60px;
    align-items: baseline;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    background-color: var(--primary-color);
    color: var(--black);
    padding: 5px;
    border-radius: 5px;
    transform: rotate(7deg);
}

.buttons-card {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-weight: bold;
}
.btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--white);
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}