.card {
    height: 100vh;
    width: 100vw;
}

.section-firma {
    padding: 1rem;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    cursor: pointer;
}

.article-superior {
    height: 8rem;

    position: relative;
    padding: 0 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .25rem;

    background-color: var(--color-primary);
}

.article-superior::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    height: 100%;
    width: 3px;

    background-color: var(--color-background);
}

.article-inferior {
    height: 8rem;

    padding: .75rem 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;

    background-color: var(--color-text);
}

/* article-supeior */
.title {
    font-size: 35px;
    font-family: var(--font-primary);
    font-weight: bolder;
    color: var(--color-text);
}

.subtitle {
    font-size: 20px;
    font-family: var(--font-secondary);
    font-weight: lighter;
    color: var(--color-text);
}

/* article-inferior */
.text {
    text-decoration: none;
    font-size: 18px;
    font-family: var(--font-secondary);
    font-weight: lighter;
    color: var(--color-primary);
}

.span {
    margin: 0 .25rem;
    color: var(--color-background);
}

.link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.image-svg {
    color: var(--color-background);
}