/* Metodología Interactiva - Kadence Theme - ACTUALIZADO */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.methodology-container {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    min-height: 100vh;
    width: 100%;
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.methodology-header .subtitle {
    color: #c8ff00;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.methodology-header p {
    color: #ccc;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Progress Bar */
.methodology-progress {
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.step-number:hover {
    background: #3a3a3a;
}

.step-number.active {
    background: linear-gradient(135deg, #c8ff00, #7b5ef8);
    color: #1a1a1a;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.5);
}

.step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    display: none;
}

@media (min-width: 768px) {
    .step-label {
        display: block;
    }
}

/* Progress Line */
.progress-line {
    height: 4px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8ff00, #7b5ef8);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Content Area */
.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.methodology-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .methodology-left {
        align-items: center;
        text-align: center;
    }
}

.methodology-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8ff00, #7b5ef8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 40px;
}

.methodology-left h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffffff;
}

.methodology-left .step-subtitle {
    color: #c8ff00;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.methodology-left p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.methodology-quote {
    border-left: 4px solid #c8ff00;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #999;
    font-size: 14px;
}

/* Details List */
.methodology-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #2a2a2a;
    border-left: 4px solid #7b5ef8;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.detail-item:hover {
    border-left-color: #c8ff00;
    background: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-item:nth-child(1) { animation-delay: 0ms; }
.detail-item:nth-child(2) { animation-delay: 100ms; }
.detail-item:nth-child(3) { animation-delay: 200ms; }
.detail-item:nth-child(4) { animation-delay: 300ms; }
.detail-item:nth-child(5) { animation-delay: 400ms; }

.detail-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c8ff00;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 12px;
}

.detail-text {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Button */
.methodology-cta {
    margin-top: 50px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-cta button {
    background: #c8ff00;
    color: #1a1a1a;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.3);
}

.methodology-cta button:hover {
    background: #b8ef00;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(200, 255, 0, 0.5);
}

.methodology-cta button:active {
    background: #a8df00;
    transform: scale(0.98);
}