.social-media-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 30px;
    background-color: transparent;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(26, 95, 122, 0.2);
    position: relative;
    overflow: hidden;
}

.social-button svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    transition: all 0.4s ease;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(26, 95, 122, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: 1;
}

.social-button:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 95, 122, 0.4);
}

.social-button:hover svg {
    stroke: white;
}

.social-button:hover::before {
    left: 100%;
}

.social-facebook {
    border-color: #1877F2;
}

.social-instagram {
    border-color: #E1306C;
}

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

.social-instagram:hover {
    background-color: #E1306C;
}

@media (max-width: 768px) {
    .social-media-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-button {
        width: 80%;
        max-width: 300px;
    }
}

