@media screen and (max-width: 550px) {
    #header-logo img {
        height: 200px !important;
    }

    #header-logo h1 {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-top: 1rem !important;
    }

    #contacto-footer * {
        font-size: 1rem !important;
    }

    .cantidad_grupo {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columnas */
        grid-template-rows: repeat(2, 1fr);
        /* 2 filas */
        gap: .5rem;
        /* opcional, separa celdas */
    }

    .cantidad_grupo label {
        margin: 0 !important;
    }
}