/* Estilos para os botões de redes sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    min-width: 140px;
    text-align: center;
}

.social-links a i {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

/* Estilo específico para o botão do WhatsApp */
.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E, #075E54);
    order: 1; /* Posiciona o WhatsApp primeiro */
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-size: 200% auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #128C7E, #25D366, #34B7F1);
    background-size: 200% auto;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background-position: right center;
}

.whatsapp-btn:hover::before {
    opacity: 1;
    background-position: right center;
}

.whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

/* Estilo específico para o botão do Instagram */
.instagram-btn {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45);
    order: 2;
    background-size: 200% auto;
    transition: 0.5s;
}

.instagram-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 42, 163, 0.3);
}

/* Estilo específico para o botão do GitHub */
.github-btn {
    background: linear-gradient(45deg, #24292e, #333333, #6e5494);
    order: 3; /* Posiciona o GitHub em terceiro */
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-size: 200% auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.github-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #6e5494, #333333, #24292e);
    background-size: 200% auto;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.github-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-position: right center;
}

.github-btn:hover::before {
    opacity: 1;
    background-position: right center;
}

.github-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.github-btn i {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Efeito de hover em todos os botões */
.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsividade */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links a {
        width: 100%;
        max-width: 280px;
    }
}
