.contact-header {
    text-align: center;
    margin: 4rem 0 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.card-container {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: #FBB039;
}

.card h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.list li {
    margin-bottom: 0.75rem;
}

.card a.color-white {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.card a.color-white:hover {
    color: #FBB039;
}

.btn.btn-yellow {
    background-color: #FBB039;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    margin-top: auto;
}

.btn.btn-yellow:hover {
    background-color: #fcc167;
    transform: translateY(-2px);
}

/* Social Media Section */
.social-section {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

.social-network {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-network a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #424242;
    color: #fff;
    transition: all 0.3s ease;
}

.social-network i {
    font-size: 1.5rem;
}

.social-network a.icoFacebook:hover {
    background-color: #3B5998;
    color: white;
    transform: translateY(-3px);
}

.social-network a.icoInstagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: white;
    transform: translateY(-3px);
}

.social-network a.icoYoutube:hover {
    background-color: #FF0000;
    color: white;
    transform: translateY(-3px);
}

.social-network a.icoTiktok:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .social-network {
        gap: 1rem;
    }
    
    .social-network a {
        width: 40px;
        height: 40px;
    }
    
    .social-network i {
        font-size: 1.25rem;
    }
}
