/* ==========================================================================
   MINISTÉRIO - CONTEÚDO PRINCIPAL
   ========================================================================== */
main section#redessociais-section {
    background-color: var(--background-primary);
    padding: 15px;
}

main section div#redessociais-section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;

    max-width: 1000px;
    width: 100%;
    margin: 0 auto;

    color: var(--text-color);
}

.redessociais-card {
    background: var(--background-primary-contrast);
}

.redessociais-card h3 {
    color: var(--text-color-contrast);
}

.redessociais-card p {
    color: var(--text-color-contrast);
}

.redessociais-card a button {
    background-color: transparent;
    color: var(--text-color-contrast);
    width: 50%;
    padding: 10px 20px;
    border: 2px solid var(--text-color-contrast);
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-time);
}

.redessociais-card a button:hover {
    background-color: var(--text-color-contrast);
    color: var(--text-color);
    width: 100%;
}

main section div#redessociais-content-embeds img {
    width: 100%;
    object-fit: contain;
    border-radius: 25px;
    transition: all .5s;
}

main section div#redessociais-content-embeds img:hover {
    box-shadow: 0px 0px 5px #000000;
}