/* 
 * Stili semplificati per la sezione "Come funziona"
 * Codice Amico - Versione 3.0
 */

/* Indicatore di progresso semplice */
.progress-bar-container {
    width: 100%;
    margin-bottom: 1.5rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6c757d;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

/* Stili base per gli step */
.step-item {
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item .step-circle {
    border-color: #343a40;
}

.step-item .step-content {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-item:hover .step-circle {
    border-color: #495057;
    box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.2);
}

/* Messaggio finale semplificato */
.completion-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    text-align: center;
}

.check-icon {
    width: 40px;
    height: 40px;
    background-color: #343a40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.completion-message p {
    font-weight: 500;
    color: #495057;
}

/* Correzione colore link nelle card dei passaggi */
.step-item a,
.step-item a:hover,
.step-item a:focus,
.step-item a:active {
    color: inherit;
    text-decoration: none;
}

.step-link-wrapper {
    color: inherit;
    text-decoration: none;
    display: block;
}
