.methodology-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}

/* 1. PILL */
.pill-metodologia {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--color-primary);
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 48px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.pill-text {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* 2. HEADLINE */
.headline {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    max-width: 1100px;
    margin-bottom: 80px;
    color: var(--color-white);
}

.headline span {
    color: var(--color-primary);
    font-weight: 400;
}

/* 3. TIMELINE */
.timeline-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.timeline-track {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-primary);
    z-index: 2;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nodes-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.node {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f0d; /* Fundo do seu body para cortar a linha */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.node-inner {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* 4. CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
}

.step-block {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.step-label {
    display: block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.step-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-white);
}

.step-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* --- ESTADOS DE ATIVAÇÃO (VIA JS) --- */
#axel-metodologia.is-active .timeline-progress { width: 100%; }

#axel-metodologia.is-active .node { opacity: 1; transform: scale(1); }
#axel-metodologia.is-active .node:nth-child(1) { transition-delay: 0.2s; }
#axel-metodologia.is-active .node:nth-child(2) { transition-delay: 1s; }
#axel-metodologia.is-active .node:nth-child(3) { transition-delay: 1.8s; }

#axel-metodologia.is-active .step-block { opacity: 1; transform: translateY(0); }
#axel-metodologia.is-active .step-block:nth-child(1) { transition-delay: 0.4s; }
#axel-metodologia.is-active .step-block:nth-child(2) { transition-delay: 1.2s; }
#axel-metodologia.is-active .step-block:nth-child(3) { transition-delay: 2s; }

/* Mobile */
@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .timeline-wrapper { display: none; }
}

@media (max-width: 768px) {
    .headline {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 80px;
}