﻿.paso {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px; /* Más pegadito aún en móvil */
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.numero {
    background-color: #003366;
    color: white;
    border-radius: 50%;
    width: 30px; /* Más pequeño en móvil */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.texto {
    font-size: 14px; /* Más pequeño para móvil */
    line-height: 1.4;
    text-align: left;
}

/* Para pantallas medianas o más grandes */
@media (min-width: 768px) {
    .paso {
        display: flex;
        align-items: center; /* Alinea verticalmente número y texto */
        justify-content: center; /* Centra horizontalmente el grupo */
        gap: 12px;
        margin-bottom: 20px;
    }

    .numero {
        width: 40px;
        height: 40px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #003366; /* Opcional */
    }

    .texto {
        font-size: 16px;
        text-align: left;
    }
}


