/* Estilos personalizados para la sección de contacto centralizada */
.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-bg);
    text-align: center;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    margin-top: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 300px;
}

.contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
}

@media (min-width: 768px) {
    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .contact-item {
        width: auto;
    }
}
