.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0c29,rgb(54, 128, 33), #24243e);
    color: white;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: semibold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.section-title span {
    color:rgb(0, 255, 38);
    text-shadow: 0 0 4px #00ff88;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    max-width: 60%;
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 5px;
    color: rgb(40, 238, 0);
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.contact-method i {
    font-size: 24px;
}

.contact-method:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.qr-code-container {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

.qr-code p {
    margin-top: 10px;
    font-size: 16px;
    color:rgb(0, 255, 94);
    text-align: center;
}

/* Cores específicas para cada botão */
.whatsapp { background: #25D366; }
.linkedin { background: #0077B5; }
.github { background:rgb(247, 167, 7); }
.email { background: #EA4335; }
.telegram { background: #0088CC; }

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-info, .qr-code-container {
        max-width: 100%;
        text-align: center;
    }
    .contact-methods {
        justify-content: center;
    }
}