/* --- Estilos específicos de Metodología --- */

.method-hero {
    padding: 150px 8% 60px;
    text-align: center;
}

.method-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.method-hero h1 b {
    color: var(--accent-orange);
}

.method-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
    position: relative;
}

/* Línea central */
.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-orange), var(--primary-blue));
    opacity: 0.3;
}

.method-step {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--surface);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-orange);
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-grow: 1;
}

.step-content:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step-content p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

/* Sub-elementos */
.sub-elements {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.sub-elements li {
    font-size: 0.9rem;
    color: var(--text-main);
    padding-left: 20px;
    position: relative;
}

.sub-elements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .timeline-line { left: 30px; }
    .step-number { width: 40px; height: 40px; font-size: 1rem; }
    .method-step { gap: 20px; }
    .method-hero h1 { font-size: 2.5rem; }
}

b {
    color: #f97316;
}