/* ============================================
   Estilos de Instalación
   ============================================ */

.installation-steps {
    margin-top: 3rem;
}

.step {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

[data-theme="dark"] .step {
    border-left-color: var(--secondary);
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    text-align: center;
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.35rem;
    color: var(--text);
    font-weight: var(--font-bold);
    margin: 0;
    line-height: 1.3;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.step code {
    background: var(--bg-light);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: var(--font-medium);
}

[data-theme="dark"] .step code {
    background: var(--bg);
    color: var(--accent);
}

.step a {
    color: var(--secondary);
    font-weight: var(--font-semibold);
    text-decoration: underline;
    transition: var(--transition);
}

.step a:hover {
    color: var(--primary);
}