/* Base igual ao anterior... só mudando o número */

.card-steps-container {
    padding: 20px;
}

.step-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 220px;
    position: relative;
    padding: clamp(16px, 3.2vw, 22px);
    margin-bottom: 30px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.step-title {
    font-size: 24px;
    margin: 70px 0 0px 0;
    text-align: center;
    color: white;
}

.step-card__overlay-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: clamp(48px, 8vw, 72px);
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.step-card__content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.step-card__title {
    line-height: 1;
    margin-bottom: 20px;
    text-align: start;
}

.step-card__text {
    text-align: start;
}

.step-card.show-number .step-card__overlay-number {
    opacity: 1;
}

.step-card.hide-number .step-card__overlay-number {
    opacity: 0;
}

.step-card.show-content .step-card__content {
    opacity: 1;
}