main #contact {
    padding: 80px 112px;
    display: flex;
    gap: 24px;
    font-family: var(--texto-comum);
}
#contact .contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
#contact .contact-info {
    max-width: 592px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#contact .descricao {
    font-weight: 400;
    line-height: 1.6;
    color: var(--texto-muted-foreground);
}
#contact .list-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#contact .list-contact li {
    display: flex;
    align-items: center;
    gap: 20px;
}
#contact .list-contact span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    box-shadow: inset 0 0 0 1px #2E2E2E;
}
#contact .list-contact strong {
    font-family: var(--texto-destaque);
    font-size: 16px;
    font-weight: 600;
    color: var(--texto-foreground);
}
#contact .list-contact p {
    font-size: 16px;
    font-weight: 400;
    color: var(--texto-muted-foreground);
}
#contact .formulario {
    width: 100%;
    max-width: 592px;
    padding: 30px;
    background-color: var(--bg-card);
    border: 1px solid #27272A;
    border-radius: 2px;
}
#contact .campo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
#contact .linha {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
}
#contact label {
    font-size: 14px;
    font-weight: 500;
    color: var(--texto-foreground);
}
#contact input,
#contact textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 15px;
    font-size: 14px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-components);
    border-radius: 2px;
    color: var(--texto-muted-foreground);
    outline: none;
}
#contact textarea {
    min-height: 140px;
    resize: none;
}
#contact input:focus,
#contact textarea:focus {
    border-color: var(--red-primary);
}
#contact .btn-enviar {
    width: 100%;
    height: 44px;
    background-color: var(--red-primary);
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--texto-foreground);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#contact .btn-enviar:hover {
    background-color: var(--red-light);
}