.privacy-policy {
    width: 100%;
    padding: 120px 40px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: var(--primary-color-light);
    gap: 32px;
}

.privacy-policy h1 {
    color: var(--text-color-black);
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: 432px;
    margin-bottom: 16px;
}

.privacy-policy h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-color-secondary);
    margin: 0;
}

.privacy-policy svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--text-color-secondary);
}

.privacy-policy p {
    color: var(--text-color-black);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    max-width: 432px;
}

.privacy-policy div article p {
    font-weight: 500;
}

.privacy-policy > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.privacy-policy div article {
    max-width: 590px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        30deg,
        var(--primary-color-light-alt) 100%,
        var(--primary-color-lightest) 100%
    );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(21, 112, 239, 0.07);
    transition: background-size 1s ease-in-out,
        background-position 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-policy div article:hover,
.privacy-policy div article:focus-within {
    box-shadow: 0 8px 32px 0 rgba(21, 112, 239, 0.18),
        0 1.5px 8px 0 rgba(21, 112, 239, 0.08);
    background: linear-gradient(
        -30deg,
        var(--primary-color-light-alt) 90%,
        var(--primary-color-lightest) 100%
    );
    background-size: 400% 100%; /* O gradiente "avança" */
    transform: translateY(-6px) scale(1.05);
    outline: none;
}

.privacy-policy div article header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.privacy-policy div article span {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--text-color-tertiary);
}

.privacy-card-text-wrapper {
    position: relative;
}

.privacy-card-text {
    display: -webkit-box;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    margin-bottom: 0;
    max-height: 100px;
}

.see-more {
    color: var(--text-color-tertiary, #1570ef);
    font-weight: 600;
    cursor: pointer;
    padding: 0 8px 0 18px; /* padding maior à direita e um pouco à esquerda */
    border-radius: 4px;
    font-size: 15px;
    position: absolute;
    right: 0;
    bottom: 4px;
    z-index: 2;
    background: none; /* Remove o background sólido */
    /* Para garantir que o texto fique acima do gradiente */
    pointer-events: auto;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.see-more::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    z-index: -1;
    /* Gradiente do fundo do card para transparente */
    background: linear-gradient(
        to left,
        var(--primary-color-light-alt, #fff) 85%,
        rgba(255, 255, 255, 0.01) 100%
    );
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-card-text {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    box-shadow: none;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 12px 24px 120px;
    }

    .privacy-policy div article {
        padding: 24px;
    }
    .privacy-policy h1 {
        margin-bottom: 24px;
    }

    .privacy-policy div article:hover,
    .privacy-policy div article:focus-within {
        transform: translateY(-6px) scale(1.02);
    }
}
