.instagram-integration {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.dark-mode .instagram-integration {
    background-color: var(--dark-surface);
}

.instagram-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

.instagram-feed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 1rem;
    border: 2px solid var(--primary-color);
}

.dark-mode .instagram-feed-placeholder {
    background-color: var(--dark-background);
    border-color: var(--primary-color);
}

.instagram-feed-placeholder p {
    margin-bottom: 0;
}

.instagram-feed-placeholder a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--secondary-color);
    color: white;
}

.instagram-feed-placeholder a:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.instagram-feed-placeholder i {
    font-size: 1.2rem;
}

/* Ajuste para layout responsivo */
@media (max-width: 992px) {
    .social-integration-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}
