/* Estilos para os botões de compartilhamento */
.social-share-container {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* .social-share-title {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--verde-ifmg);
} */

.social-share-buttons {
    display: flex;
    gap: 10px;
}

.social-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.social-share-button:hover {
    transform: scale(1.1);
}

.social-share-button.whatsapp {
    background-color: #25D366;
}

.social-share-button.facebook {
    background-color: #1877F2;
}

.social-share-button.twitter {
    background-color: #1DA1F2;
}

.social-share-button.copy {
    background-color: var(--cinza-escuro);
}

.social-share-button.whatsapp:hover {
    background-color: #128C7E;
}

.social-share-button.facebook:hover {
    background-color: #0D5AA7;
}

.social-share-button.twitter:hover {
    background-color: #0C85D0;
}

.social-share-button.copy:hover {
    background-color: #555;
}

.copy-success {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--verde-ifmg);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

/* Estilos para lazy loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

.placeholder {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.placeholder::before {
    content: "";
    display: block;
    position: absolute;
    left: -150px;
    top: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(to right, transparent 0%, #e0e0e0 50%, transparent 100%);
    animation: load 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes load {
    from {
        left: -150px;
    }
    to {
        left: 100%;
    }
}
