 .container {
        max-width: 600px;
        margin: 0 auto;
    }

    .step {
        display: none;
    }

    .boton {
        font-size: 16px;
        margin-top: 14px;
    }

    /* Estilos para la barra de progreso (rayitas) */
    .progress-bar-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .step-indicator {
        width: 30px;
        height: 10px;
        margin: 0 3px;
        background-color: #ccc;
        border-radius: 5px;
        display: inline-block;
        cursor: pointer;
    }

    /* Para el primer paso, hacer que el botón ocupe todo el espacio */
    .full-width {
        width: 100% !important;
    }

    /* ===== Transiciones entre pasos (ya incluidas) ===== */
    .step {
        will-change: transform, opacity;
    }
    .step-indicator.active {
        background-color: #3b3f5c;
    }

    /* Animaciones */
    @keyframes stepOutLeft {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(-24px);
        }
    }
    @keyframes stepOutRight {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(24px);
        }
    }
    @keyframes stepInLeft {
        from {
            opacity: 0;
            transform: translateX(-24px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes stepInRight {
        from {
            opacity: 0;
            transform: translateX(24px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Clases que disparan las animaciones */
    .step.anim-out-left {
        animation: stepOutLeft 0.4s ease forwards;
    }
    .step.anim-out-right {
        animation: stepOutRight 0.4s ease forwards;
    }
    .step.anim-in-left {
        animation: stepInLeft 0.45s ease forwards;
    }
    .step.anim-in-right {
        animation: stepInRight 0.45s ease forwards;
    }

    /* Accesibilidad: si el usuario pide menos movimiento, no animar */
    @media (prefers-reduced-motion: reduce) {
        .step {
            animation: none !important;
            transition: none !important;
        }
    }