/* colors */
/* borders */
/* window width */
/* sizes */

/*# sourceMappingURL=config.css.map */

.social-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-button:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.signal-button {
    background-color: #3A76F0;
    color: white;
}

.social-button i {
    font-size: 32px;
}

@media (max-width: 768px) {
    .social-buttons {
        right: 10px;
    }
    
    .social-button {
        width: 50px;
        height: 50px;
    }
    
    .social-button i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .social-button {
        width: 45px;
        height: 45px;
    }
    
    .social-button i {
        font-size: 24px;
    }
}
