/* Dark Mode Transitions */
body, .header, .card, .btn, .service-card {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle */
#theme-toggle {
    position: relative;
    padding: 10px;
}

.theme-icon-light,
.theme-icon-dark {
    transition: opacity 0.3s;
}

[data-theme="dark"] .theme-icon-light {
    display: none;
}

[data-theme="dark"] .theme-icon-dark {
    display: block !important;
}

[data-theme="light"] .theme-icon-dark {
    display: none;
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    color: var(--brand); /* Cambiado de muted a brand para visibilidad */
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    transform: translateY(-2px);
}
