/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 20 2026 | 12:53:21 */
.rrss-lateral {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
    opacity: 0;
    animation: rrss-fade-in 0.6s ease forwards;
}

.rrss-lateral svg {
    width: 40px;
    height: 40px;
}

.rrss-lateral a {
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.rrss-lateral a:hover {
    opacity: 0.6;
}

@keyframes rrss-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}